UNPKG

tweetnacl-ts

Version:

Port of TweetNaCl cryptographic library to TypeScript (and ES6)

26 lines 1.12 kB
"use strict"; // Ported in 2014 by Dmitry Chestnykh and Devi Mandiri. // Public domain. // // Implementation derived from TweetNaCl version 20140427. // See for details: http://tweetnacl.cr.yp.to/ // // Ported to TypeScript in 2018 by K. <kayo@illumium.org> // Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); tslib_1.__exportStar(require("./array"), exports); tslib_1.__exportStar(require("./validate"), exports); tslib_1.__exportStar(require("./convert"), exports); tslib_1.__exportStar(require("./verify"), exports); tslib_1.__exportStar(require("./random"), exports); tslib_1.__exportStar(require("./scalarmult"), exports); tslib_1.__exportStar(require("./secretbox"), exports); tslib_1.__exportStar(require("./box"), exports); tslib_1.__exportStar(require("./sign"), exports); tslib_1.__exportStar(require("./hash"), exports); tslib_1.__exportStar(require("./auth"), exports); tslib_1.__exportStar(require("./blake2s"), exports); tslib_1.__exportStar(require("./blake2b"), exports); tslib_1.__exportStar(require("./sealedbox"), exports); //# sourceMappingURL=nacl.js.map