ethers.js/lib.esm/crypto/index.js

36 lines
1.1 KiB
JavaScript
Raw Permalink Normal View History

2022-11-30 15:44:23 -05:00
/**
2022-12-02 21:27:06 -05:00
* A fundamental building block of Ethereum is the underlying
* cryptographic primitives.
2022-11-30 15:44:23 -05:00
*
2023-02-12 22:14:26 -05:00
* @_section: api/crypto:Cryptographic Functions [about-crypto]
2022-11-30 15:44:23 -05:00
*/
2022-12-02 21:27:06 -05:00
null;
2022-09-05 16:57:11 -04:00
// We import all these so we can export lock()
import { computeHmac } from "./hmac.js";
import { keccak256 } from "./keccak.js";
import { ripemd160 } from "./ripemd160.js";
import { pbkdf2 } from "./pbkdf2.js";
import { randomBytes } from "./random.js";
import { scrypt, scryptSync } from "./scrypt.js";
import { sha256, sha512 } from "./sha2.js";
export { computeHmac, randomBytes, keccak256, ripemd160, sha256, sha512, pbkdf2, scrypt, scryptSync };
export { SigningKey } from "./signing-key.js";
export { Signature } from "./signature.js";
2023-06-01 17:52:58 -04:00
/**
* Once called, prevents any future change to the underlying cryptographic
* primitives using the ``.register`` feature for hooks.
*/
2022-09-05 16:57:11 -04:00
function lock() {
computeHmac.lock();
keccak256.lock();
pbkdf2.lock();
randomBytes.lock();
ripemd160.lock();
scrypt.lock();
scryptSync.lock();
sha256.lock();
sha512.lock();
2022-10-01 01:34:06 -04:00
randomBytes.lock();
2022-09-05 16:57:11 -04:00
}
export { lock };
//# sourceMappingURL=index.js.map