mirror of
https://github.com/kemko/nomad.git
synced 2026-01-02 00:15:43 +03:00
add comments
This commit is contained in:
@@ -43,11 +43,14 @@ var supportedTLSCiphers = map[string]uint16{
|
||||
"TLS_RSA_WITH_AES_256_CBC_SHA": tls.TLS_RSA_WITH_AES_256_CBC_SHA,
|
||||
}
|
||||
|
||||
// algorithmStringRepr is the string representation of a signing algorithm
|
||||
type algorithmStringRepr string
|
||||
|
||||
var rsaStringRepr algorithmStringRepr = "RSA"
|
||||
var ecdsaStringRepr algorithmStringRepr = "ECDSA"
|
||||
|
||||
// supportedCipherSignatures is the supported cipher suites with their
|
||||
// corresponding signature algorithm
|
||||
var supportedCipherSignatures = map[string]algorithmStringRepr{
|
||||
"TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305": rsaStringRepr,
|
||||
"TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305": ecdsaStringRepr,
|
||||
|
||||
Reference in New Issue
Block a user