mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
12 lines
411 B
TypeScript
12 lines
411 B
TypeScript
// Type definitions for CybozuLabs.MD5
|
|
// Project: http://labs.cybozu.co.jp/blog/mitsunari/2007/07/md5js_1.html
|
|
// Definitions by: MIZUNE Pine <https://github.com/pine613>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare namespace CybozuLabs.MD5 {
|
|
var VERSION: string;
|
|
var BY_ASCII: number;
|
|
var BY_UTF16: number;
|
|
function calc(str: string, option?: number): string;
|
|
}
|