1
0
mirror of https://github.com/go-acme/lego.git synced 2025-02-09 12:13:58 +02:00

Fix typo in the constant for the P384 curve.

This commit is contained in:
xenolf 2016-02-14 22:31:17 +01:00
parent d46b0db199
commit a61e41c90e

View File

@ -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")