Files
PageSigner/core/internal.js
themighty1 79173c511e - use Salsa20 instead of tweetnacl-js's secretbox for a 30% garbling speedup in the browser.
- implement garbled row reduction GRR3 for 25% bandwidth saving
- implement KOS15 OT extension
- linting
2022-01-17 10:18:04 +03:00

19 lines
499 B
JavaScript

// allows to access PageSigner's internal classes by exposing them to the
// extension's window global
import * as utils from './utils.js';
import * as indexeddb from './indexeddb.js';
import * as globals from './globals.js';
import * as Main from './Main.js';
import {OTSender} from './twopc/OTSender.js';
import {OTReceiver} from './twopc/OTReceiver.js';
window.PageSigner = {
Main:Main,
globals:globals,
utils:utils,
indexeddb:indexeddb,
OTSender:OTSender,
OTReceiver:OTReceiver};