2022-11-30 23:44:23 +03:00
|
|
|
/**
|
2022-12-03 05:27:06 +03:00
|
|
|
* A fundamental building block of Ethereum is the underlying
|
|
|
|
* cryptographic primitives.
|
2022-11-30 23:44:23 +03:00
|
|
|
*
|
2023-02-13 06:14:26 +03:00
|
|
|
* @_section: api/crypto:Cryptographic Functions [about-crypto]
|
2022-11-30 23:44:23 +03:00
|
|
|
*/
|
2022-12-03 05:27:06 +03:00
|
|
|
null;
|
2022-09-05 23:57:11 +03: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-02 00:52:58 +03:00
|
|
|
/**
|
|
|
|
* Once called, prevents any future change to the underlying cryptographic
|
|
|
|
* primitives using the ``.register`` feature for hooks.
|
|
|
|
*/
|
2022-09-05 23:57:11 +03:00
|
|
|
function lock() {
|
|
|
|
computeHmac.lock();
|
|
|
|
keccak256.lock();
|
|
|
|
pbkdf2.lock();
|
|
|
|
randomBytes.lock();
|
|
|
|
ripemd160.lock();
|
|
|
|
scrypt.lock();
|
|
|
|
scryptSync.lock();
|
|
|
|
sha256.lock();
|
|
|
|
sha512.lock();
|
2022-10-01 08:34:06 +03:00
|
|
|
randomBytes.lock();
|
2022-09-05 23:57:11 +03:00
|
|
|
}
|
|
|
|
export { lock };
|
|
|
|
//# sourceMappingURL=index.js.map
|