├── .github ├── FUNDING.yml └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── README.md ├── cmd └── fido2 │ └── fido2.go ├── darwin ├── amd64 │ └── lib │ │ ├── README.md │ │ └── libcbor.a └── arm64 │ └── lib │ ├── README.md │ └── libcbor.a ├── examples_test.go ├── fido2.go ├── fido2_dynamic.go ├── fido2_other.go ├── fido2_static_amd64.go ├── fido2_static_arm64.go ├── fido2_test.go ├── go.mod ├── go.sum ├── log.go └── windows ├── include ├── cbor.h ├── cbor │ ├── arrays.h │ ├── bytestrings.h │ ├── callbacks.h │ ├── common.h │ ├── configuration.h │ ├── data.h │ ├── encoding.h │ ├── floats_ctrls.h │ ├── internal │ │ ├── builder_callbacks.h │ │ ├── encoders.h │ │ ├── loaders.h │ │ ├── memory_utils.h │ │ ├── stack.h │ │ └── unicode.h │ ├── ints.h │ ├── maps.h │ ├── serialization.h │ ├── streaming.h │ ├── strings.h │ └── tags.h ├── fido.h ├── fido │ ├── bio.h │ ├── credman.h │ ├── eddsa.h │ ├── err.h │ ├── es256.h │ ├── param.h │ ├── rs256.h │ └── types.h ├── openssl │ ├── aes.h │ ├── asn1.h │ ├── asn1t.h │ ├── bio.h │ ├── blowfish.h │ ├── bn.h │ ├── buffer.h │ ├── camellia.h │ ├── cast.h │ ├── chacha.h │ ├── cmac.h │ ├── cms.h │ ├── comp.h │ ├── conf.h │ ├── conf_api.h │ ├── crypto.h │ ├── curve25519.h │ ├── des.h │ ├── dh.h │ ├── dsa.h │ ├── dso.h │ ├── dtls1.h │ ├── ec.h │ ├── ecdh.h │ ├── ecdsa.h │ ├── engine.h │ ├── err.h │ ├── evp.h │ ├── gost.h │ ├── hkdf.h │ ├── hmac.h │ ├── idea.h │ ├── lhash.h │ ├── md4.h │ ├── md5.h │ ├── modes.h │ ├── obj_mac.h │ ├── objects.h │ ├── ocsp.h │ ├── opensslconf.h │ ├── opensslfeatures.h │ ├── opensslv.h │ ├── ossl_typ.h │ ├── pem.h │ ├── pem2.h │ ├── pkcs12.h │ ├── pkcs7.h │ ├── poly1305.h │ ├── rand.h │ ├── rc2.h │ ├── rc4.h │ ├── ripemd.h │ ├── rsa.h │ ├── safestack.h │ ├── sha.h │ ├── sm3.h │ ├── sm4.h │ ├── srtp.h │ ├── ssl.h │ ├── ssl2.h │ ├── ssl23.h │ ├── ssl3.h │ ├── stack.h │ ├── tls1.h │ ├── ts.h │ ├── txt_db.h │ ├── ui.h │ ├── ui_compat.h │ ├── whrlpool.h │ ├── x509.h │ ├── x509_vfy.h │ └── x509v3.h └── tls.h └── lib ├── cbor.dll ├── cbor.lib ├── cbor.pdb ├── crypto-45.dll ├── crypto-45.lib ├── crypto-45.pdb ├── fido2-assert.exe ├── fido2-cred.exe ├── fido2-token.exe ├── fido2.dll ├── fido2.lib └── fido2.pdb /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | libfido2 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/README.md -------------------------------------------------------------------------------- /cmd/fido2/fido2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/cmd/fido2/fido2.go -------------------------------------------------------------------------------- /darwin/amd64/lib/README.md: -------------------------------------------------------------------------------- 1 | # Depedencies 2 | 3 | libcbor build from c78f437182 (0.7.0) 4 | -------------------------------------------------------------------------------- /darwin/amd64/lib/libcbor.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/darwin/amd64/lib/libcbor.a -------------------------------------------------------------------------------- /darwin/arm64/lib/README.md: -------------------------------------------------------------------------------- 1 | # Depedencies 2 | 3 | libcbor build from 7b806b (0.9.0) 4 | -------------------------------------------------------------------------------- /darwin/arm64/lib/libcbor.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/darwin/arm64/lib/libcbor.a -------------------------------------------------------------------------------- /examples_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/examples_test.go -------------------------------------------------------------------------------- /fido2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2.go -------------------------------------------------------------------------------- /fido2_dynamic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2_dynamic.go -------------------------------------------------------------------------------- /fido2_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2_other.go -------------------------------------------------------------------------------- /fido2_static_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2_static_amd64.go -------------------------------------------------------------------------------- /fido2_static_arm64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2_static_arm64.go -------------------------------------------------------------------------------- /fido2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/fido2_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/go.sum -------------------------------------------------------------------------------- /log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/log.go -------------------------------------------------------------------------------- /windows/include/cbor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor.h -------------------------------------------------------------------------------- /windows/include/cbor/arrays.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/arrays.h -------------------------------------------------------------------------------- /windows/include/cbor/bytestrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/bytestrings.h -------------------------------------------------------------------------------- /windows/include/cbor/callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/callbacks.h -------------------------------------------------------------------------------- /windows/include/cbor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/common.h -------------------------------------------------------------------------------- /windows/include/cbor/configuration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/configuration.h -------------------------------------------------------------------------------- /windows/include/cbor/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/data.h -------------------------------------------------------------------------------- /windows/include/cbor/encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/encoding.h -------------------------------------------------------------------------------- /windows/include/cbor/floats_ctrls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/floats_ctrls.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/builder_callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/builder_callbacks.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/encoders.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/loaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/loaders.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/memory_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/memory_utils.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/stack.h -------------------------------------------------------------------------------- /windows/include/cbor/internal/unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/internal/unicode.h -------------------------------------------------------------------------------- /windows/include/cbor/ints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/ints.h -------------------------------------------------------------------------------- /windows/include/cbor/maps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/maps.h -------------------------------------------------------------------------------- /windows/include/cbor/serialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/serialization.h -------------------------------------------------------------------------------- /windows/include/cbor/streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/streaming.h -------------------------------------------------------------------------------- /windows/include/cbor/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/strings.h -------------------------------------------------------------------------------- /windows/include/cbor/tags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/cbor/tags.h -------------------------------------------------------------------------------- /windows/include/fido.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido.h -------------------------------------------------------------------------------- /windows/include/fido/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/bio.h -------------------------------------------------------------------------------- /windows/include/fido/credman.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/credman.h -------------------------------------------------------------------------------- /windows/include/fido/eddsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/eddsa.h -------------------------------------------------------------------------------- /windows/include/fido/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/err.h -------------------------------------------------------------------------------- /windows/include/fido/es256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/es256.h -------------------------------------------------------------------------------- /windows/include/fido/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/param.h -------------------------------------------------------------------------------- /windows/include/fido/rs256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/rs256.h -------------------------------------------------------------------------------- /windows/include/fido/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/fido/types.h -------------------------------------------------------------------------------- /windows/include/openssl/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/aes.h -------------------------------------------------------------------------------- /windows/include/openssl/asn1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/asn1.h -------------------------------------------------------------------------------- /windows/include/openssl/asn1t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/asn1t.h -------------------------------------------------------------------------------- /windows/include/openssl/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/bio.h -------------------------------------------------------------------------------- /windows/include/openssl/blowfish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/blowfish.h -------------------------------------------------------------------------------- /windows/include/openssl/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/bn.h -------------------------------------------------------------------------------- /windows/include/openssl/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/buffer.h -------------------------------------------------------------------------------- /windows/include/openssl/camellia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/camellia.h -------------------------------------------------------------------------------- /windows/include/openssl/cast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/cast.h -------------------------------------------------------------------------------- /windows/include/openssl/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/chacha.h -------------------------------------------------------------------------------- /windows/include/openssl/cmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/cmac.h -------------------------------------------------------------------------------- /windows/include/openssl/cms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/cms.h -------------------------------------------------------------------------------- /windows/include/openssl/comp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/comp.h -------------------------------------------------------------------------------- /windows/include/openssl/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/conf.h -------------------------------------------------------------------------------- /windows/include/openssl/conf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/conf_api.h -------------------------------------------------------------------------------- /windows/include/openssl/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/crypto.h -------------------------------------------------------------------------------- /windows/include/openssl/curve25519.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/curve25519.h -------------------------------------------------------------------------------- /windows/include/openssl/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/des.h -------------------------------------------------------------------------------- /windows/include/openssl/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/dh.h -------------------------------------------------------------------------------- /windows/include/openssl/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/dsa.h -------------------------------------------------------------------------------- /windows/include/openssl/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/dso.h -------------------------------------------------------------------------------- /windows/include/openssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/dtls1.h -------------------------------------------------------------------------------- /windows/include/openssl/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ec.h -------------------------------------------------------------------------------- /windows/include/openssl/ecdh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ecdh.h -------------------------------------------------------------------------------- /windows/include/openssl/ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ecdsa.h -------------------------------------------------------------------------------- /windows/include/openssl/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/engine.h -------------------------------------------------------------------------------- /windows/include/openssl/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/err.h -------------------------------------------------------------------------------- /windows/include/openssl/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/evp.h -------------------------------------------------------------------------------- /windows/include/openssl/gost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/gost.h -------------------------------------------------------------------------------- /windows/include/openssl/hkdf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/hkdf.h -------------------------------------------------------------------------------- /windows/include/openssl/hmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/hmac.h -------------------------------------------------------------------------------- /windows/include/openssl/idea.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/idea.h -------------------------------------------------------------------------------- /windows/include/openssl/lhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/lhash.h -------------------------------------------------------------------------------- /windows/include/openssl/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/md4.h -------------------------------------------------------------------------------- /windows/include/openssl/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/md5.h -------------------------------------------------------------------------------- /windows/include/openssl/modes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/modes.h -------------------------------------------------------------------------------- /windows/include/openssl/obj_mac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/obj_mac.h -------------------------------------------------------------------------------- /windows/include/openssl/objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/objects.h -------------------------------------------------------------------------------- /windows/include/openssl/ocsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ocsp.h -------------------------------------------------------------------------------- /windows/include/openssl/opensslconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/opensslconf.h -------------------------------------------------------------------------------- /windows/include/openssl/opensslfeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/opensslfeatures.h -------------------------------------------------------------------------------- /windows/include/openssl/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/opensslv.h -------------------------------------------------------------------------------- /windows/include/openssl/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ossl_typ.h -------------------------------------------------------------------------------- /windows/include/openssl/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/pem.h -------------------------------------------------------------------------------- /windows/include/openssl/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/pem2.h -------------------------------------------------------------------------------- /windows/include/openssl/pkcs12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/pkcs12.h -------------------------------------------------------------------------------- /windows/include/openssl/pkcs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/pkcs7.h -------------------------------------------------------------------------------- /windows/include/openssl/poly1305.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/poly1305.h -------------------------------------------------------------------------------- /windows/include/openssl/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/rand.h -------------------------------------------------------------------------------- /windows/include/openssl/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/rc2.h -------------------------------------------------------------------------------- /windows/include/openssl/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/rc4.h -------------------------------------------------------------------------------- /windows/include/openssl/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ripemd.h -------------------------------------------------------------------------------- /windows/include/openssl/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/rsa.h -------------------------------------------------------------------------------- /windows/include/openssl/safestack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/safestack.h -------------------------------------------------------------------------------- /windows/include/openssl/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/sha.h -------------------------------------------------------------------------------- /windows/include/openssl/sm3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/sm3.h -------------------------------------------------------------------------------- /windows/include/openssl/sm4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/sm4.h -------------------------------------------------------------------------------- /windows/include/openssl/srtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/srtp.h -------------------------------------------------------------------------------- /windows/include/openssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ssl.h -------------------------------------------------------------------------------- /windows/include/openssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ssl2.h -------------------------------------------------------------------------------- /windows/include/openssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ssl23.h -------------------------------------------------------------------------------- /windows/include/openssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ssl3.h -------------------------------------------------------------------------------- /windows/include/openssl/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/stack.h -------------------------------------------------------------------------------- /windows/include/openssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/tls1.h -------------------------------------------------------------------------------- /windows/include/openssl/ts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ts.h -------------------------------------------------------------------------------- /windows/include/openssl/txt_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/txt_db.h -------------------------------------------------------------------------------- /windows/include/openssl/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ui.h -------------------------------------------------------------------------------- /windows/include/openssl/ui_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/ui_compat.h -------------------------------------------------------------------------------- /windows/include/openssl/whrlpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/whrlpool.h -------------------------------------------------------------------------------- /windows/include/openssl/x509.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/x509.h -------------------------------------------------------------------------------- /windows/include/openssl/x509_vfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/x509_vfy.h -------------------------------------------------------------------------------- /windows/include/openssl/x509v3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/openssl/x509v3.h -------------------------------------------------------------------------------- /windows/include/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/include/tls.h -------------------------------------------------------------------------------- /windows/lib/cbor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/cbor.dll -------------------------------------------------------------------------------- /windows/lib/cbor.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/cbor.lib -------------------------------------------------------------------------------- /windows/lib/cbor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/cbor.pdb -------------------------------------------------------------------------------- /windows/lib/crypto-45.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/crypto-45.dll -------------------------------------------------------------------------------- /windows/lib/crypto-45.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/crypto-45.lib -------------------------------------------------------------------------------- /windows/lib/crypto-45.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/crypto-45.pdb -------------------------------------------------------------------------------- /windows/lib/fido2-assert.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2-assert.exe -------------------------------------------------------------------------------- /windows/lib/fido2-cred.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2-cred.exe -------------------------------------------------------------------------------- /windows/lib/fido2-token.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2-token.exe -------------------------------------------------------------------------------- /windows/lib/fido2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2.dll -------------------------------------------------------------------------------- /windows/lib/fido2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2.lib -------------------------------------------------------------------------------- /windows/lib/fido2.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keys-pub/go-libfido2/HEAD/windows/lib/fido2.pdb --------------------------------------------------------------------------------