15 lines
320 B
TypeScript
15 lines
320 B
TypeScript
/// <reference types="node" />
|
|
/**
|
|
*
|
|
* A module containing support for a variety of cryptographic operations.
|
|
*
|
|
* @packageDocumentation
|
|
* @module crypto
|
|
*/
|
|
/**
|
|
* The types that are acceptable to use as input for hashing.
|
|
*
|
|
* @category Crypto
|
|
*/
|
|
export type Hashable = string | ArrayBuffer | DataView | Buffer;
|