Skip to content

Commit 91b014c

Browse files
committed
went too fast ^^
1 parent 9eed863 commit 91b014c

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/rust/src/pkcs12.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use crate::backend::{ciphers, hashes, hmac, kdf, keys};
66
use crate::buf::CffiBuf;
77
use crate::error::{CryptographyError, CryptographyResult};
8-
use crate::padding::{PKCS7PaddingContext, PKCS7UnpaddingContext};
8+
use crate::padding::PKCS7PaddingContext;
99
use crate::x509::certificate::Certificate;
1010
use crate::{types, x509};
1111
use cryptography_x509::common::Utf8StoredBMPString;

src/rust/src/pkcs7.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@ use pyo3::types::{PyAnyMethods, PyBytesMethods, PyListMethods};
1818
use pyo3::IntoPy;
1919

2020
use crate::asn1::encode_der_data;
21+
use crate::backend::ciphers;
2122
use crate::buf::CffiBuf;
2223
use crate::error::{CryptographyError, CryptographyResult};
24+
use crate::padding::PKCS7UnpaddingContext;
2325
use crate::pkcs12::symmetric_encrypt;
2426
#[cfg(not(CRYPTOGRAPHY_IS_BORINGSSL))]
2527
use crate::x509::certificate::load_der_x509_certificate;

0 commit comments

Comments
 (0)