@types/md5
TypeScript definitions for CybozuLabs.MD5
Last updated 8 years ago by types .
MIT · Original npm · Tarball · package.json
$ gnpm install @types/md5 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 2.3.2                                ...           latest (3 years ago)
  • 2.1.33                                ...           ts2.0 (6 years ago)
  • 2.1.33                                ...           ts2.1 (6 years ago)
  • 2.1.33                                ...           ts2.2 (6 years ago)
  • 2.1.33                                ...           ts2.3 (6 years ago)
  • 2.1.33                                ...           ts2.4 (6 years ago)
  • 2.1.33                                ...           ts2.5 (6 years ago)
  • 2.1.33                                ...           ts2.6 (6 years ago)
  • 2.1.33                                ...           ts2.7 (6 years ago)
  • 2.2.0                                ...           ts2.8 (4 years ago)
  • 2.2.0                                ...           ts2.9 (4 years ago)
  • 2.2.0                                ...           ts3.0 (4 years ago)
  • 2.2.0                                ...           ts3.1 (4 years ago)
  • 2.2.1                                ...           ts3.2 (4 years ago)
  • 2.2.1                                ...           ts3.3 (4 years ago)
  • 2.3.0                                ...           ts3.4 (4 years ago)
  • 2.3.0                                ...           ts3.5 (4 years ago)
  • 2.3.1                                ...           ts3.6 (3 years ago)
  • 2.3.1                                ...           ts3.7 (3 years ago)
  • 2.3.2                                ...           ts3.8 (3 years ago)
  • 2.3.2                                ...           ts3.9 (3 years ago)
  • 2.3.2                                ...           ts4.0 (3 years ago)
  • 2.3.2                                ...           ts4.1 (3 years ago)
  • 2.3.2                                ...           ts4.2 (3 years ago)
  • 2.3.2                                ...           ts4.3 (3 years ago)
  • 2.3.2                                ...           ts4.4 (3 years ago)
  • 2.3.2                                ...           ts4.5 (3 years ago)
  • 2.3.2                                ...           ts4.6 (3 years ago)
  • 2.3.2                                ...           ts4.7 (3 years ago)
  • 2.3.2                                ...           ts4.8 (3 years ago)
  • 2.3.2                                ...           ts4.9 (3 years ago)
  • 2.3.2                                ...           ts5.0 (3 years ago)
  • 2.3.2                                ...           ts5.1 (3 years ago)

21 Versions

  • 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                                ...           4 years ago
  • 2.1.33                                ...           6 years ago
  • 2.1.32                                ...           7 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                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None

Copyright 2013 - present © cnpmjs.org | Home |