2.3.5 • Published 1 year ago
@types/md5 v2.3.5
Installation
npm install --save @types/md5
Summary
This package contains type definitions for md5 (https://github.com/pvorb/node-md5).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/md5.
index.d.ts
// Type definitions for md5 2.3
// Project: https://github.com/pvorb/node-md5
// Definitions by: Bill Sourour <https://github.com/arcdev1>
// Cameron Crothers <https://github.com/jprogrammer>
// Piotr Błażejewicz <https://github.com/peterblazejewicz>
// Ruslan Arkhipau <https://github.com/DethAriel>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/**
* Calculate the MD5 hash of a message.
*
* @param message - Message to hash.
* @param options - Input and output options.
* @returns MD5 hash.
*/
declare function md5(message: string | number[] | Uint8Array, options: md5.Options & { asBytes: true }): number[];
declare function md5(message: string | number[] | Uint8Array, options?: Pick<md5.Options, 'asString' | 'encoding'>): string;
declare function md5(message: string | number[] | Uint8Array, options?: md5.Options): string | number[];
declare namespace md5 {
interface Options {
asBytes?: boolean | undefined;
asString?: boolean | undefined;
encoding?: 'binary' | string | undefined;
}
}
export = md5;
Additional Details
- Last updated: Tue, 08 Feb 2022 12:01:31 GMT
- Dependencies: none
- Global values: none
Credits
These definitions were written by Bill Sourour, Cameron Crothers, Piotr Błażejewicz, and Ruslan Arkhipau.
2.3.4
1 year ago
2.3.3
1 year ago
2.3.5
1 year ago
2.3.2
3 years ago
2.3.1
3 years ago
2.3.0
4 years ago
2.2.1
4 years ago
2.2.0
5 years ago
2.1.33
6 years ago
2.1.32
8 years ago
2.1.31
8 years ago
0.0.30
8 years ago
0.0.29
8 years ago
0.0.28
8 years ago
0.0.27
8 years ago
0.0.26-alpha
8 years ago
0.0.25-alpha
8 years ago
0.0.24-alpha
8 years ago
0.0.23-alpha
8 years ago
0.0.22-alpha
8 years ago
0.0.21-alpha
8 years ago
0.0.20-alpha
8 years ago
0.0.15-alpha
8 years ago
0.0.14-alpha
9 years ago