diff options
Diffstat (limited to 'std/hash/_sha3/sha3.ts')
-rw-r--r-- | std/hash/_sha3/sha3.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/std/hash/_sha3/sha3.ts b/std/hash/_sha3/sha3.ts index 05b9d82e3..4aa50b900 100644 --- a/std/hash/_sha3/sha3.ts +++ b/std/hash/_sha3/sha3.ts @@ -4,6 +4,7 @@ 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({ @@ -16,6 +17,7 @@ export class Sha3_224 extends Sponge { } /** Sha3-256 hash */ +// deno-lint-ignore camelcase export class Sha3_256 extends Sponge { constructor() { super({ @@ -28,6 +30,7 @@ export class Sha3_256 extends Sponge { } /** Sha3-384 hash */ +// deno-lint-ignore camelcase export class Sha3_384 extends Sponge { constructor() { super({ @@ -40,6 +43,7 @@ export class Sha3_384 extends Sponge { } /** Sha3-512 hash */ +// deno-lint-ignore camelcase export class Sha3_512 extends Sponge { constructor() { super({ |