UNPKG

nitlix-crypto

Version:

😍 Another starting collection of hashing, salting and other encryption tools 🚀 for the back-end side of the web.

23 lines (22 loc) 1.38 kB
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.saltCompareNative = exports.saltStringNative = exports.keyDecrypt = exports.keyEncrypt = exports.saltString = exports.saltCompare = exports.hashStringNative = exports.hashString = void 0; const hashString_1 = __importDefault(require("./hash/hashString")); exports.hashString = hashString_1.default; const hashStringNative_1 = __importDefault(require("./hash/hashStringNative")); exports.hashStringNative = hashStringNative_1.default; const saltCompare_1 = __importDefault(require("./salt/saltCompare")); exports.saltCompare = saltCompare_1.default; const saltString_1 = __importDefault(require("./salt/saltString")); exports.saltString = saltString_1.default; const keyEncrypt_1 = __importDefault(require("./key/keyEncrypt")); exports.keyEncrypt = keyEncrypt_1.default; const keyDecrypt_1 = __importDefault(require("./key/keyDecrypt")); exports.keyDecrypt = keyDecrypt_1.default; const saltStringNative_1 = __importDefault(require("./salt/saltStringNative")); exports.saltStringNative = saltStringNative_1.default; const saltCompareNative_1 = __importDefault(require("./salt/saltCompareNative")); exports.saltCompareNative = saltCompareNative_1.default;