UNPKG

@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) 478 B
import eventCoordinator from './EventCoordinator.js'; import UMFAClientBase from './UMFAClientBase.js'; class UMFAClient extends UMFAClientBase { /** * Constructs a UMFAClient object by extending the UMFAClientBase class. * @param {Object} config - The configuration for ZSM initialization (ref: ./zsm_app_config.json) */ constructor(config) { super(config); eventCoordinator.update('UMFAClient', 'READY'); } } export {UMFAClient};