fido2-server
Version:
A FIDO 2.0 / W3C WebAuthn server
26 lines (19 loc) • 484 B
JavaScript
module.exports = FidoExtension;
/**
* Support for various FIDO2 / Webauthn Extensions
* See Sections 5 & 6 of the Webauthn specification (May 8, 2016)
*/
function FidoExtension(opt) {
}
FidoExtension.prototype.init = function(server) {
return Promise.resolve (null);
};
FidoExtension.prototype.shutdown = function() {
return Promise.resolve (null);
};
FidoExtension.prototype.send = function() {
return {};
};
FidoExtension.prototype.receive = function() {
return {};
};