summaryrefslogtreecommitdiff
path: root/std/hash/_sha3/sha3.ts
blob: 4aa50b900b726ad9bd129a2dd14fc476e2d9db2d (plain)
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
55
56
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.

import { Sponge } from "./sponge.ts";
import { keccakf } from "./keccakf.ts";

/** Sha3-224 hash */
// deno-lint-ignore camelcase
export class Sha3_224 extends Sponge {
  constructor() {
    super({
      bitsize: 224,
      rate: 144,
      dsbyte: 6,
      permutator: keccakf,
    });
  }
}

/** Sha3-256 hash */
// deno-lint-ignore camelcase
export class Sha3_256 extends Sponge {
  constructor() {
    super({
      bitsize: 256,
      rate: 136,
      dsbyte: 6,
      permutator: keccakf,
    });
  }
}

/** Sha3-384 hash */
// deno-lint-ignore camelcase
export class Sha3_384 extends Sponge {
  constructor() {
    super({
      bitsize: 384,
      rate: 104,
      dsbyte: 6,
      permutator: keccakf,
    });
  }
}

/** Sha3-512 hash */
// deno-lint-ignore camelcase
export class Sha3_512 extends Sponge {
  constructor() {
    super({
      bitsize: 512,
      rate: 72,
      dsbyte: 6,
      permutator: keccakf,
    });
  }
}