From a61e41c90e4f062c39647784908661c4b631f2b4 Mon Sep 17 00:00:00 2001 From: xenolf Date: Sun, 14 Feb 2016 22:31:17 +0100 Subject: [PATCH] Fix typo in the constant for the P384 curve. --- acme/crypto.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/acme/crypto.go b/acme/crypto.go index 78a87847..c46310f1 100644 --- a/acme/crypto.go +++ b/acme/crypto.go @@ -29,9 +29,10 @@ import ( type KeyType string type derCertificateBytes []byte +// Constants for all key types we support. const ( EC256 = KeyType("P256") - EC384 = KeyType("P348") + EC384 = KeyType("P384") RSA2048 = KeyType("2048") RSA4096 = KeyType("4096") RSA8192 = KeyType("8192")