Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 | 1x 1x 1x 1x 1x 1x 1x 1x 16x 16x 24x 24x 24x 4x 4x 20x 24x 16x 16x 1x 1x 1x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 4x 1x 1x 3x 3x 1x 1x 24x 24x 17x 17x 24x 24x 24x 1x 1x 14x 14x 14x 5x 5x 5x 2x 2x 2x 2x 2x 5x 5x 14x 13x 13x 13x 13x 14x 1x 1x 10x 10x 10x 10x 10x 1x 1x 1x 7x 7x 7x 4x 1x 1x 3x 4x 7x 7x 7x 7x 7x 6x 6x 6x 23x 23x 6x 6x 6x 6x 6x 6x 6x 6x 5x 5x 5x 5x 6x 5x 5x 5x 6x 5x 2x 2x 5x 9x 9x 9x 5x 5x 5x 5x 5x 1x 1x 1x 4x 4x 5x 5x 6x 6x 6x 6x 6x 6x 6x 5x 1x 1x 5x 1x 1x 4x 6x 6x 6x 5x 5x 5x 7x 2x 2x 7x 1x 1x 1x 1x 708x 708x 89x 89x 89x 708x 708x 1x 1x | /*eslint-env node */
'use strict';
const fs = require('fs');
const path = require('path');
const events = require('events');
const crypto = require('crypto');
const { promisify } = require('util');
function argify(f) {
return promisify((...args) => {
const cb = args[args.length - 1];
f(...args.slice(0, args.length - 1), (err, ...r) => {
if (err) {
return cb(new Error(err));
}
cb(null, r);
});
});
}
class WebAuthn4JS extends events.EventEmitter {
init(methods, checked_exit) {
this.methods = methods;
this.checked_exit = checked_exit;
this.beginRegistration = this._begin.bind(this,
argify(methods.beginRegistration.bind(methods)));
this.finishRegistration = this._finish.bind(this,
argify(methods.finishRegistration.bind(methods)));
this.beginLogin = this._begin.bind(this,
argify(methods.beginLogin.bind(methods)));
this.finishLogin = this._finish.bind(this,
argify(methods.finishLogin.bind(methods)));
}
exit(code) {
this.checked_exit(code);
}
_user(user) {
user = Object.assign({}, user);
if (!Buffer.isBuffer(user.id)) {
user.id = Buffer.from(user.id);
}
user.id = user.id.toString('base64');
return user;
}
async _begin(method, user, ...args) {
const [options, sessionData] = await method(
JSON.stringify(this._user(user)),
...args.map(f => cxo => {
const cxo2 = f(JSON.parse(cxo));
if (cxo2 && cxo2.excludeCredentials) {
for (const c of cxo2.excludeCredentials) {
c.id = c.id
.replace(/\+/g, "-")
.replace(/\//g, "_")
.replace(/=/g, "");
}
}
return JSON.stringify(cxo2);
}));
return {
options: JSON.parse(options),
sessionData: JSON.parse(sessionData)
};
}
async _finish(method, user, sessionData, response) {
return JSON.parse(await method(
JSON.stringify(this._user(user)),
JSON.stringify(sessionData),
JSON.stringify(response)));
}
}
module.exports = promisify((config, cb) => {
const webauthn = new WebAuthn4JS();
function error(err) {
if (webauthn.methods) {
return webauthn.emit('error', err);
}
cb(err);
}
(async () => {
try {
let init_err;
const uid = (await promisify(crypto.randomBytes)(64)).toString('hex');
const gt = {
crypto: {
getRandomValues(b) {
crypto.randomFillSync(b);
}
},
performance: require('perf_hooks').performance,
TextEncoder,
TextDecoder,
Uint8Array,
Object,
Array,
[uid]: methods => {
delete global[uid];
let exit_called = false;
function checked_exit(n) {
if (!exit_called) {
exited();
methods.exit(n || 0);
}
}
function before_exit() {
checked_exit();
}
function exited() {
exit_called = true;
process.removeListener('beforeExit', before_exit);
}
webauthn.on('exit', exited);
process.on('beforeExit', before_exit);
methods.init(JSON.stringify(config), err => {
if (err) {
init_err = new Error(err);
return process.nextTick(checked_exit);
}
webauthn.init(methods, checked_exit);
cb(null, webauthn);
});
}
};
const wasm_file = path.join(__dirname, 'webauthn4js.wasm');
require('./wasm_exec.js')(gt);
const go = new gt.Go();
go.argv = [ wasm_file, uid ];
go.exit = n => {
if (init_err) {
return error(init_err);
}
if ((n !== 0) || !webauthn.methods) {
error(new Error(`wasm_exec exit with code ${n}`));
}
webauthn.emit('exit', n);
};
const data = await fs.promises.readFile(wasm_file);
const result = await WebAssembly.instantiate(data, go.importObject);
go.run(result.instance);
} catch (ex) {
error(ex);
}
})();
});
const schemas = require('./schemas/schemas.json');
function reviver(k, v) {
if (v.$ref) {
Object.assign(v, schemas.$defs[v.$ref]);
delete v.$ref;
}
return v;
}
module.exports.schemas = JSON.parse(JSON.stringify(schemas), reviver);
|