mirror of
https://github.com/tlsnotary/PageSigner.git
synced 2026-01-08 22:27:57 -05:00
- implement garbled row reduction GRR3 for 25% bandwidth saving - implement KOS15 OT extension - linting
19 lines
499 B
JavaScript
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};
|