We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3cecced + 5280f0f commit 58c23a5Copy full SHA for 58c23a5
ca/certificates.go
@@ -37,13 +37,14 @@ import (
37
const (
38
// Security Strength Equivalence
39
//-----------------------------------
40
- //| Key-type | ECC | DH/DSA/RSA |
41
- //| Node | 256 | 3072 |
42
- //| Root | 384 | 7680 |
+ //| ECC | DH/DSA/RSA |
+ //| 256 | 3072 |
+ //| 384 | 7680 |
43
44
45
// RootKeySize is the default size of the root CA key
46
- RootKeySize = 384
+ // It would be ideal for the root key to use P-384, but in P-384 is not optimized in go yet :(
47
+ RootKeySize = 256
48
// RootKeyAlgo defines the default algorithm for the root CA Key
49
RootKeyAlgo = "ecdsa"
50
// PassphraseENVVar defines the environment variable to look for the
0 commit comments