@ideem/zsm-client-sdk
Version:
ZSM makes 2FA easy and invisible for everyone, all the time, using advanced cryptography like MPC to establish cryptographic proof of the origin of any transaction or login attempt, while eliminating opportunities for social engineering. ZSM has no relian
16 lines (13 loc) • 486 B
JavaScript
import eventCoordinator from './EventCoordinator.js';
import FIDO2ClientBase from './FIDO2ClientBase.js';
class FIDO2Client extends FIDO2ClientBase {
/**
* Constructs a FIDO2Client object by extending the FIDO2ClientBase class.
* @param {Object} config - The configuration for ZSM initialization (ref: ./zsm_app_config.json)
*/
constructor(config) {
super(config);
eventCoordinator.update('FIDO2Client', 'READY');
}
}
export {FIDO2Client};