diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-01-01 14:58:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 19:58:21 +0000 |
commit | 7e72f3af6152d4b62c2ea94d025dfa297a6b0cb4 (patch) | |
tree | 76753f501bbede065efca7a0b62b823d64a2d9de /ext/node/ops/crypto | |
parent | 8ba828b41e2609c91d993aec464035d62320fdad (diff) |
chore: update copyright to 2024 (#21753)
Diffstat (limited to 'ext/node/ops/crypto')
-rw-r--r-- | ext/node/ops/crypto/cipher.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/dh.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/digest.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/mod.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/primes.rs | 2 | ||||
-rw-r--r-- | ext/node/ops/crypto/x509.rs | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/ext/node/ops/crypto/cipher.rs b/ext/node/ops/crypto/cipher.rs index 26fb55125..ce741ef01 100644 --- a/ext/node/ops/crypto/cipher.rs +++ b/ext/node/ops/crypto/cipher.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use aes::cipher::block_padding::Pkcs7; use aes::cipher::BlockDecryptMut; diff --git a/ext/node/ops/crypto/dh.rs b/ext/node/ops/crypto/dh.rs index 8b756d9a2..f60f84277 100644 --- a/ext/node/ops/crypto/dh.rs +++ b/ext/node/ops/crypto/dh.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use super::primes::Prime; use num_bigint_dig::BigUint; diff --git a/ext/node/ops/crypto/digest.rs b/ext/node/ops/crypto/digest.rs index 685fc32d0..25bb0ab98 100644 --- a/ext/node/ops/crypto/digest.rs +++ b/ext/node/ops/crypto/digest.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::type_error; use deno_core::error::AnyError; use deno_core::Resource; diff --git a/ext/node/ops/crypto/mod.rs b/ext/node/ops/crypto/mod.rs index 97c3d76aa..486c34147 100644 --- a/ext/node/ops/crypto/mod.rs +++ b/ext/node/ops/crypto/mod.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::generic_error; use deno_core::error::type_error; use deno_core::error::AnyError; diff --git a/ext/node/ops/crypto/primes.rs b/ext/node/ops/crypto/primes.rs index 15aa643ad..5c9f4c768 100644 --- a/ext/node/ops/crypto/primes.rs +++ b/ext/node/ops/crypto/primes.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use num_bigint::BigInt; use num_bigint_dig::RandPrime; diff --git a/ext/node/ops/crypto/x509.rs b/ext/node/ops/crypto/x509.rs index 8966666a1..b5779ffa9 100644 --- a/ext/node/ops/crypto/x509.rs +++ b/ext/node/ops/crypto/x509.rs @@ -1,4 +1,4 @@ -// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. use deno_core::error::bad_resource_id; use deno_core::error::AnyError; |