UNPKG

@proton/ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges

19 lines (18 loc) 464 B
import { Hash, Input } from './utils.js'; declare class MD5 extends Hash<MD5> { blockLen: number; outputLen: number; protected _buffer: Uint8Array; digest(): Uint8Array; digestInto(buf: Uint8Array): void; _cloneInto(to: MD5 | undefined): MD5; destroy(): void; update(buf: Input): this; } export declare let md5: { (message: Input): Uint8Array; outputLen: number; blockLen: number; create(): Hash<MD5>; }; export {};