PHP WebShell
Текущая директория: /opt/BitGoJS/node_modules/asmcrypto.js/src/pbkdf2
Просмотр файла: exports-pbkdf2-hmac-sha1.js
/**
* PBKDF2-HMAC-SHA1 exports
*/
import { bytes_to_base64, bytes_to_hex } from '../utils';
import { get_pbkdf2_hmac_sha1_instance } from './pbkdf2-hmac-sha1';
function pbkdf2_hmac_sha1_bytes(password, salt, iterations, dklen) {
if (password === undefined) throw new SyntaxError('password required');
if (salt === undefined) throw new SyntaxError('salt required');
return get_pbkdf2_hmac_sha1_instance()
.reset({ password: password })
.generate(salt, iterations, dklen).result;
}
function pbkdf2_hmac_sha1_hex(password, salt, iterations, dklen) {
var result = pbkdf2_hmac_sha1_bytes(password, salt, iterations, dklen);
return bytes_to_hex(result);
}
function pbkdf2_hmac_sha1_base64(password, salt, iterations, dklen) {
var result = pbkdf2_hmac_sha1_bytes(password, salt, iterations, dklen);
return bytes_to_base64(result);
}
export var PBKDF2 = {
bytes: pbkdf2_hmac_sha1_bytes,
hex: pbkdf2_hmac_sha1_hex,
base64: pbkdf2_hmac_sha1_base64,
};
export var PBKDF2_HMAC_SHA1 = {
bytes: pbkdf2_hmac_sha1_bytes,
hex: pbkdf2_hmac_sha1_hex,
base64: pbkdf2_hmac_sha1_base64,
};
Выполнить команду
Для локальной разработки. Не используйте в интернете!