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-09-05 23:57:11 +03:00
|
|
|
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
|
|
|
declare function lock(): void;
|
|
|
|
export { lock };
|
|
|
|
export type { ProgressCallback } from "./scrypt.js";
|
|
|
|
export type { SignatureLike } from "./signature.js";
|
|
|
|
//# sourceMappingURL=index.d.ts.map
|