crypto-es
Version:
A cryptography algorithms library compatible with ES6 and TypeScript
42 lines (40 loc) • 948 B
text/typescript
import { HMACHashFn, HashFn, Hasher32, WordArray } from "./core.mjs";
//#region src/sha256.d.ts
/**
* SHA-256 hash algorithm.
*/
declare class SHA256Algo extends Hasher32 {
_doReset(): void;
_doProcessBlock(M: number[], offset: number): void;
_doFinalize(): WordArray;
clone(): this;
}
/**
* Shortcut function to the hasher's object interface.
*
* @param message - The message to hash.
* @returns The hash.
*
* @example
* ```js
* const hash = CryptoJS.SHA256('message');
* const hash = CryptoJS.SHA256(wordArray);
* ```
*/
declare const SHA256: HashFn;
/**
* Shortcut function to the HMAC's object interface.
*
* @param message - The message to hash.
* @param key - The secret key.
* @returns The HMAC.
*
* @example
* ```js
* const hmac = CryptoJS.HmacSHA256(message, key);
* ```
*/
declare const HmacSHA256: HMACHashFn;
//#endregion
export { HmacSHA256, SHA256, SHA256Algo };
//# sourceMappingURL=sha256.d.mts.map