feistel-cipher
Advanced tools
Comparing version 1.5.0 to 1.5.1
export * from './feistel'; | ||
export * from './fpe'; | ||
export * from './custom'; | ||
export { BLAKE2b, KECCAK, SHA_256, SHA_3 } from './utils/hash'; | ||
export { BLAKE2b, KECCAK, SHA_256, SHA_3, isAvailableEngine } from './utils/hash'; | ||
export * from './utils/base256'; | ||
//# sourceMappingURL=index.d.ts.map |
@@ -38,3 +38,3 @@ "use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.SHA_3 = exports.SHA_256 = exports.KECCAK = exports.BLAKE2b = void 0; | ||
exports.isAvailableEngine = exports.SHA_3 = exports.SHA_256 = exports.KECCAK = exports.BLAKE2b = void 0; | ||
if (typeof window !== 'undefined') { | ||
@@ -52,2 +52,3 @@ // eslint-disable-next-line @typescript-eslint/strict-boolean-expressions,@typescript-eslint/no-unsafe-member-access,@typescript-eslint/no-var-requires | ||
Object.defineProperty(exports, "SHA_3", { enumerable: true, get: function () { return hash_1.SHA_3; } }); | ||
Object.defineProperty(exports, "isAvailableEngine", { enumerable: true, get: function () { return hash_1.isAvailableEngine; } }); | ||
__exportStar(require("./utils/base256"), exports); |
{ | ||
"name": "feistel-cipher", | ||
"version": "1.5.0", | ||
"version": "1.5.1", | ||
"description": "Feistel cipher implementation for format-preserving encryption", | ||
@@ -40,3 +40,3 @@ "main": "dist/lib/src/typescript/index.js", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^18.14.6", | ||
"@types/node": "^18.15.0", | ||
"@typescript-eslint/eslint-plugin": "^5.54.1", | ||
@@ -43,0 +43,0 @@ "@typescript-eslint/parser": "^5.54.1", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
57523
1035