package dicttls
const (
DHKEM_P256_HKDF_SHA256 uint16 = 0x0010
DHKEM_P384_HKDF_SHA384 uint16 = 0x0011
DHKEM_P521_HKDF_SHA512 uint16 = 0x0012
DHKEM_CP256_HKDF_SHA256 uint16 = 0x0013
DHKEM_CP384_HKDF_SHA384 uint16 = 0x0014
DHKEM_CP521_HKDF_SHA512 uint16 = 0x0015
DHKEM_SECP256K1_HKDF_SHA256 uint16 = 0x0016
DHKEM_X25519_HKDF_SHA256 uint16 = 0x0020
DHKEM_X448_HKDF_SHA512 uint16 = 0x0021
X25519_KYBER768_DRAFT00 uint16 = 0x0030
)
var DictKEMIdentifierValueIndexed = map[uint16]string{
0x0000: "Reserved",
0x0010: "DHKEM(P-256, HKDF-SHA256)",
0x0011: "DHKEM(P-384, HKDF-SHA384)",
0x0012: "DHKEM(P-521, HKDF-SHA512)",
0x0013: "DHKEM(CP-256, HKDF-SHA256)",
0x0014: "DHKEM(CP-384, HKDF-SHA384)",
0x0015: "DHKEM(CP-521, HKDF-SHA512)",
0x0016: "DHKEM(secp256k1, HKDF-SHA256)",
0x0020: "DHKEM(X25519, HKDF-SHA256)",
0x0021: "DHKEM(X448, HKDF-SHA512)",
0x0030: "X25519Kyber768Draft00",
}
var DictKEMIdentifierNameIndexed = map[string]uint16{
"Reserved": 0x0000,
"DHKEM(P-256, HKDF-SHA256)": 0x0010,
"DHKEM(P-384, HKDF-SHA384)": 0x0011,
"DHKEM(P-521, HKDF-SHA512)": 0x0012,
"DHKEM(CP-256, HKDF-SHA256)": 0x0013,
"DHKEM(CP-384, HKDF-SHA384)": 0x0014,
"DHKEM(CP-521, HKDF-SHA512)": 0x0015,
"DHKEM(secp256k1, HKDF-SHA256)": 0x0016,
"DHKEM(X25519, HKDF-SHA256)": 0x0020,
"DHKEM(X448, HKDF-SHA512)": 0x0021,
"X25519Kyber768Draft00": 0x0030,
}
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |