react-native-passkey
Version:
Passkey implementation for React Native
32 lines (31 loc) • 1.01 kB
JavaScript
"use strict";
/**
* The FIDO2 Attestation Request
* https://www.w3.org/TR/webauthn-3/#dictionary-makecredentialoptions
*/
/**
* The FIDO2 Attestation Result
* https://www.w3.org/TR/webauthn-3/#iface-pkcredential
*/
/**
* The FIDO2 Assertion Request
* https://www.w3.org/TR/webauthn-3/#dictionary-assertion-options
*/
/**
* The FIDO2 Assertion Result
* https://www.w3.org/TR/webauthn-3/#iface-pkcredential
*/
// https://www.w3.org/TR/webauthn-3/#dictionary-credential-descriptor
var AuthenticatorTransport = /*#__PURE__*/function (AuthenticatorTransport) {
AuthenticatorTransport["usb"] = "usb";
AuthenticatorTransport["nfc"] = "nfc";
AuthenticatorTransport["ble"] = "ble";
AuthenticatorTransport["smartCard"] = "smart-card";
AuthenticatorTransport["hybrid"] = "hybrid";
AuthenticatorTransport["internal"] = "internal";
return AuthenticatorTransport;
}(AuthenticatorTransport || {});
/**
* https://www.w3.org/TR/webauthn-3/#prf-extension
*/
//# sourceMappingURL=PasskeyTypes.js.map