forked from TrueCloudLab/lego
Fix typo in the constant for the P384 curve.
This commit is contained in:
parent
d46b0db199
commit
a61e41c90e
1 changed files with 2 additions and 1 deletions
|
@ -29,9 +29,10 @@ import (
|
||||||
type KeyType string
|
type KeyType string
|
||||||
type derCertificateBytes []byte
|
type derCertificateBytes []byte
|
||||||
|
|
||||||
|
// Constants for all key types we support.
|
||||||
const (
|
const (
|
||||||
EC256 = KeyType("P256")
|
EC256 = KeyType("P256")
|
||||||
EC384 = KeyType("P348")
|
EC384 = KeyType("P384")
|
||||||
RSA2048 = KeyType("2048")
|
RSA2048 = KeyType("2048")
|
||||||
RSA4096 = KeyType("4096")
|
RSA4096 = KeyType("4096")
|
||||||
RSA8192 = KeyType("8192")
|
RSA8192 = KeyType("8192")
|
||||||
|
|
Loading…
Reference in a new issue