npm.io
2.3.6 • Published 11 months ago

@types/md5

Licence
MIT
Version
2.3.6
Deps
0
Size
4 kB
Vulns
0
Weekly
0
Stars
51.4K

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

/**
 * 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: Wed, 15 Oct 2025 1828 GMT
  • Dependencies: none

Credits

These definitions were written by Bill Sourour, Piotr Błażejewicz, and Ruslan Arkhipau.