2018-03-17 18:26:18 +05:30
|
|
|
/* eslint-disable prefer-rest-params, wrap-iife,
|
|
|
|
no-unused-expressions, no-return-assign, no-param-reassign*/
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
export default class MockU2FDevice {
|
|
|
|
constructor() {
|
|
|
|
this.respondToAuthenticateRequest = this.respondToAuthenticateRequest.bind(this);
|
|
|
|
this.respondToRegisterRequest = this.respondToRegisterRequest.bind(this);
|
|
|
|
window.u2f || (window.u2f = {});
|
|
|
|
window.u2f.register = (function (_this) {
|
|
|
|
return function (appId, registerRequests, signRequests, callback) {
|
|
|
|
return _this.registerCallback = callback;
|
|
|
|
};
|
|
|
|
})(this);
|
|
|
|
window.u2f.sign = (function (_this) {
|
|
|
|
return function (appId, challenges, signRequests, callback) {
|
|
|
|
return _this.authenticateCallback = callback;
|
|
|
|
};
|
|
|
|
})(this);
|
|
|
|
}
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
respondToRegisterRequest(params) {
|
|
|
|
return this.registerCallback(params);
|
|
|
|
}
|
2016-09-13 17:45:13 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
respondToAuthenticateRequest(params) {
|
|
|
|
return this.authenticateCallback(params);
|
|
|
|
}
|
|
|
|
}
|