aws-crt
Version:
NodeJS/browser bindings to the aws-c-* libraries
15 lines (14 loc) • 328 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 declare type Hashable = string | ArrayBuffer | DataView | Buffer;