mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 10:21:40 +00:00
@@ -0,0 +1,19 @@
|
||||
package webauthn
|
||||
|
||||
const (
|
||||
stmtX5C = "x5c"
|
||||
stmtSignature = "sig"
|
||||
stmtAlgorithm = "alg"
|
||||
stmtVersion = "ver"
|
||||
stmtECDAAKID = "ecdaaKeyId"
|
||||
stmtCertInfo = "certInfo"
|
||||
stmtPubArea = "pubArea"
|
||||
)
|
||||
|
||||
// internalRemappedAuthenticatorTransport handles remapping of AuthenticatorTransport values. Specifically it is
|
||||
// intentional on remapping only transports that never made recommendation but are being used in the wild. It
|
||||
// should not be used to handle transports that were ratified.
|
||||
var internalRemappedAuthenticatorTransport = map[string]AuthenticatorTransport{
|
||||
// The Authenticator Transport 'hybrid' was previously named 'cable'; even if it was for a short period.
|
||||
"cable": Hybrid,
|
||||
}
|
||||
Reference in New Issue
Block a user