deno.land / std@0.157.0 / hash / _sha3 / keccak.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
import { Sponge } from "./sponge.ts";import { keccakf } from "./keccakf.ts";
/** Keccak-224 hash */export class Keccak224 extends Sponge { constructor() { super({ bitsize: 224, rate: 144, dsbyte: 1, permutator: keccakf, }); }}
/** Keccak-256 hash */export class Keccak256 extends Sponge { constructor() { super({ bitsize: 256, rate: 136, dsbyte: 1, permutator: keccakf, }); }}
/** Keccak-384 hash */export class Keccak384 extends Sponge { constructor() { super({ bitsize: 384, rate: 104, dsbyte: 1, permutator: keccakf, }); }}
/** Keccak-512 hash */export class Keccak512 extends Sponge { constructor() { super({ bitsize: 512, rate: 72, dsbyte: 1, permutator: keccakf, }); }}
std

Version Info

Tagged at
a year ago