
Migrate from U2F to Webauthn Co-authored-by: Andrew Thornton <art27@cantab.net> Co-authored-by: 6543 <6543@obermui.de> Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
12 lines
196 B
Go
Vendored
12 lines
196 B
Go
Vendored
// +build go1.13
|
|
|
|
package webauthncose
|
|
|
|
import (
|
|
"crypto/ed25519"
|
|
"crypto/x509"
|
|
)
|
|
|
|
func marshalEd25519PublicKey(pub ed25519.PublicKey) ([]byte, error) {
|
|
return x509.MarshalPKIXPublicKey(pub)
|
|
}
|