diff options
Diffstat (limited to 'std/hash/sha3.ts')
-rw-r--r-- | std/hash/sha3.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/std/hash/sha3.ts b/std/hash/sha3.ts new file mode 100644 index 000000000..b5154fbdf --- /dev/null +++ b/std/hash/sha3.ts @@ -0,0 +1,6 @@ +// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. + +/* eslint-disable-next-line @typescript-eslint/camelcase */ +export { Sha3_224, Sha3_256, Sha3_384, Sha3_512 } from "./_sha3/sha3.ts"; +export { Keccak224, Keccak256, Keccak384, Keccak512 } from "./_sha3/keccak.ts"; +export { Shake128, Shake256 } from "./_sha3/shake.ts"; |