diff options
Diffstat (limited to 'ext/crypto/encrypt.rs')
-rw-r--r-- | ext/crypto/encrypt.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/crypto/encrypt.rs b/ext/crypto/encrypt.rs index 9420acdbd..f34e0cbc6 100644 --- a/ext/crypto/encrypt.rs +++ b/ext/crypto/encrypt.rs @@ -1,4 +1,4 @@ -use crate::shared::*; +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. use aes::cipher::block_padding::Pkcs7; use aes::cipher::BlockEncryptMut; @@ -31,6 +31,8 @@ use sha2::Sha256; use sha2::Sha384; use sha2::Sha512; +use crate::shared::*; + #[derive(Deserialize)] #[serde(rename_all = "camelCase")] pub struct EncryptOptions { |