@nexckycort/rijndael-nodejs
Version:
implementation of the rijndael encryption algorithm.
24 lines (23 loc) • 906 B
JavaScript
"use strict";
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const crypto_1 = __importDefault(require("crypto"));
class Rfc2898DeriveBytes {
constructor(password, Salt, iterations = 1000) {
this.password = password;
this.Salt = Salt;
this.iterations = iterations;
this.GetBytes = (cb) => {
const bufferSlice = this.pbkdf2.slice(this.fromIndex, cb + this.fromIndex);
this.fromIndex = cb;
return bufferSlice;
};
this.fromIndex = 0;
this.IterationCount = iterations;
this.HashAlgorithm = 'sha1';
this.pbkdf2 = crypto_1.default.pbkdf2Sync(password, this.Salt, iterations, 48, this.HashAlgorithm);
}
}
exports.default = Rfc2898DeriveBytes;