summaryrefslogtreecommitdiff
path: root/std/hash/_sha3
diff options
context:
space:
mode:
Diffstat (limited to 'std/hash/_sha3')
-rw-r--r--std/hash/_sha3/keccak.ts2
-rw-r--r--std/hash/_sha3/keccakf.ts2
-rw-r--r--std/hash/_sha3/sha3.ts2
-rw-r--r--std/hash/_sha3/shake.ts2
-rw-r--r--std/hash/_sha3/sponge.ts2
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";