diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2023-01-02 16:00:42 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 21:00:42 +0000 |
commit | 10e4b2e14046b74469f7310c599579a6611513fe (patch) | |
tree | f6e446cb97d1df8b7413f3bf3a9c897ff487b275 /ext/crypto | |
parent | f729576b2db2aa6ce000a598ad2e45533f686213 (diff) |
chore: update copyright year to 2023 (#17247)
Yearly tradition of creating extra noise in git.
Diffstat (limited to 'ext/crypto')
-rw-r--r-- | ext/crypto/00_crypto.js | 2 | ||||
-rw-r--r-- | ext/crypto/01_webidl.js | 2 | ||||
-rw-r--r-- | ext/crypto/Cargo.toml | 2 | ||||
-rw-r--r-- | ext/crypto/key.rs | 2 | ||||
-rw-r--r-- | ext/crypto/lib.deno_crypto.d.ts | 2 | ||||
-rw-r--r-- | ext/crypto/lib.rs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/crypto/00_crypto.js b/ext/crypto/00_crypto.js index 044cc1f26..9487652f2 100644 --- a/ext/crypto/00_crypto.js +++ b/ext/crypto/00_crypto.js @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../../core/internal.d.ts" /> diff --git a/ext/crypto/01_webidl.js b/ext/crypto/01_webidl.js index 35c16d913..d381672fd 100644 --- a/ext/crypto/01_webidl.js +++ b/ext/crypto/01_webidl.js @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // @ts-check /// <reference path="../../core/lib.deno_core.d.ts" /> diff --git a/ext/crypto/Cargo.toml b/ext/crypto/Cargo.toml index 2a13ad17e..622a32a09 100644 --- a/ext/crypto/Cargo.toml +++ b/ext/crypto/Cargo.toml @@ -1,4 +1,4 @@ -# Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. [package] name = "deno_crypto" diff --git a/ext/crypto/key.rs b/ext/crypto/key.rs index b8f87189e..3153913bb 100644 --- a/ext/crypto/key.rs +++ b/ext/crypto/key.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use ring::agreement::Algorithm as RingAlgorithm; use ring::digest; diff --git a/ext/crypto/lib.deno_crypto.d.ts b/ext/crypto/lib.deno_crypto.d.ts index d83be6b24..6ff7b72b0 100644 --- a/ext/crypto/lib.deno_crypto.d.ts +++ b/ext/crypto/lib.deno_crypto.d.ts @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // deno-lint-ignore-file no-var diff --git a/ext/crypto/lib.rs b/ext/crypto/lib.rs index cea5f08a8..d5a83b5ec 100644 --- a/ext/crypto/lib.rs +++ b/ext/crypto/lib.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use aes_kw::KekAes128; use aes_kw::KekAes192; |