2020-06-16 17:12:50 -04:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
|
|
|
|
import { Hash } from "./_wasm/hash.ts";
|
2020-07-08 05:26:39 -04:00
|
|
|
import type { Hasher } from "./hasher.ts";
|
2020-06-16 17:12:50 -04:00
|
|
|
|
2020-07-08 05:26:39 -04:00
|
|
|
export type { Hasher } from "./hasher.ts";
|
2020-06-16 17:12:50 -04:00
|
|
|
export type SupportedAlgorithm =
|
|
|
|
| "md2"
|
|
|
|
| "md4"
|
|
|
|
| "md5"
|
|
|
|
| "ripemd160"
|
|
|
|
| "ripemd320"
|
|
|
|
| "sha1"
|
|
|
|
| "sha224"
|
|
|
|
| "sha256"
|
|
|
|
| "sha384"
|
|
|
|
| "sha512"
|
|
|
|
| "sha3-224"
|
|
|
|
| "sha3-256"
|
|
|
|
| "sha3-384"
|
|
|
|
| "sha3-512"
|
|
|
|
| "keccak224"
|
|
|
|
| "keccak256"
|
|
|
|
| "keccak384"
|
|
|
|
| "keccak512";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a new `Hash` instance.
|
|
|
|
*
|
|
|
|
* @param algorithm name of hash algorithm to use
|
|
|
|
*/
|
|
|
|
export function createHash(algorithm: SupportedAlgorithm): Hasher {
|
|
|
|
return new Hash(algorithm as string);
|
|
|
|
}
|