UNPKG

@ton/crypto

Version:

[![Version npm](https://img.shields.io/npm/v/@ton/crypto.svg?logo=npm)](https://www.npmjs.com/package/@ton/crypto)

16 lines (15 loc) 542 B
"use strict"; /** * Copyright (c) Whales Corp. * All Rights Reserved. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ Object.defineProperty(exports, "__esModule", { value: true }); exports.pbkdf2_sha512 = void 0; const crypto_primitives_1 = require("@ton/crypto-primitives"); function pbkdf2_sha512(key, salt, iterations, keyLen) { return (0, crypto_primitives_1.pbkdf2_sha512)(key, salt, iterations, keyLen); } exports.pbkdf2_sha512 = pbkdf2_sha512;