diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2021-01-10 21:59:07 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-10 21:59:07 -0500 |
| commit | 2b75a1155906613df16bad9d1eb84f3dc0ba571b (patch) | |
| tree | fb6fdea18d774994d902b27c9bc841d2169a0420 /std/hash/_sha3 | |
| parent | b0821fe9ce017ea1fdec191622f27c31af9c4f0f (diff) | |
update copyright to 2021 (#9081)
Diffstat (limited to 'std/hash/_sha3')
| -rw-r--r-- | std/hash/_sha3/keccak.ts | 2 | ||||
| -rw-r--r-- | std/hash/_sha3/keccakf.ts | 2 | ||||
| -rw-r--r-- | std/hash/_sha3/sha3.ts | 2 | ||||
| -rw-r--r-- | std/hash/_sha3/shake.ts | 2 | ||||
| -rw-r--r-- | std/hash/_sha3/sponge.ts | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/std/hash/_sha3/keccak.ts b/std/hash/_sha3/keccak.ts index 67cccca3c..403a2dcb0 100644 --- a/std/hash/_sha3/keccak.ts +++ b/std/hash/_sha3/keccak.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import { Sponge } from "./sponge.ts"; import { keccakf } from "./keccakf.ts"; diff --git a/std/hash/_sha3/keccakf.ts b/std/hash/_sha3/keccakf.ts index 8db90b1a4..0ba2b870c 100644 --- a/std/hash/_sha3/keccakf.ts +++ b/std/hash/_sha3/keccakf.ts @@ -2,7 +2,7 @@ // https://github.com/golang/crypto/blob/master/sha3/keccakf.go // Copyright 2011 The Go Authors. All rights reserved. BSD license. // https://github.com/golang/go/blob/master/LICENSE -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. const KECCAK_ROUNDS = 24; const KECCAK_RC: number[] = [ diff --git a/std/hash/_sha3/sha3.ts b/std/hash/_sha3/sha3.ts index 4aa50b900..2966ce2a4 100644 --- a/std/hash/_sha3/sha3.ts +++ b/std/hash/_sha3/sha3.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import { Sponge } from "./sponge.ts"; import { keccakf } from "./keccakf.ts"; diff --git a/std/hash/_sha3/shake.ts b/std/hash/_sha3/shake.ts index 05c699ea5..4fe24d7cf 100644 --- a/std/hash/_sha3/shake.ts +++ b/std/hash/_sha3/shake.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import { Sponge } from "./sponge.ts"; import { keccakf } from "./keccakf.ts"; diff --git a/std/hash/_sha3/sponge.ts b/std/hash/_sha3/sponge.ts index a5705e13e..9ad67ca07 100644 --- a/std/hash/_sha3/sponge.ts +++ b/std/hash/_sha3/sponge.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license. import * as hex from "../../encoding/hex.ts"; |
