| /external/rust/beto-rust/nearby/crypto/crypto_provider/src/aes/ |
| D | cbc.rs | 60 ) -> Result<Vec<u8>, DecryptionError>; in decrypt() argument 69 ) -> Result<(), DecryptionError>; in decrypt_in_place() argument 82 pub enum DecryptionError { enum 99 use super::{AesCbcIv, AesCbcPkcs7Padded, DecryptionError, EncryptionError}; 137 ) -> Result<Vec<u8>, DecryptionError> { in decrypt() argument 145 ) -> Result<(), DecryptionError> { in decrypt_in_place() argument
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_rustcrypto/src/aes_cp/ |
| D | cbc.rs | 24 cbc::{AesCbcIv, DecryptionError, EncryptionError}, 66 ) -> Result<Vec<u8>, DecryptionError> { in decrypt() argument 69 .map_err(|_| DecryptionError::BadPadding) in decrypt() 76 ) -> Result<(), DecryptionError> { in decrypt_in_place() argument 87 DecryptionError::BadPadding in decrypt_in_place()
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_boringssl/src/aes/ |
| D | cbc.rs | 21 cbc::{AesCbcIv, DecryptionError, EncryptionError}, 54 ) -> Result<Vec<u8>, DecryptionError> { in decrypt() argument 56 decryptor.decrypt_padded(ciphertext).map_err(|_| DecryptionError::BadPadding) in decrypt() 63 ) -> Result<(), DecryptionError> { in decrypt_in_place() argument
|
| /external/python/rsa/tests/ |
| D | test_pkcs1.py | 53 self.assertRaises(pkcs1.DecryptionError, pkcs1.decrypt, encrypted, 85 with self.assertRaises(rsa.DecryptionError): 90 with self.assertRaises(rsa.DecryptionError): 204 with self.assertRaises(rsa.DecryptionError):
|
| D | test_cli.py | 225 self.assertRaises(rsa.DecryptionError, rsa.cli.decrypt)
|
| /external/rust/beto-rust/nearby/connections/ukey2/ukey2_connections/src/ |
| D | crypto_utils.rs | 17 use crypto_provider::aes::cbc::DecryptionError; 38 ) -> Result<Vec<u8>, DecryptionError> { in decrypt_cbc() argument
|
| D | tests.rs | 82 Err(crypto_provider::aes::cbc::DecryptionError::BadPadding) => (), in decrypt_test_wrong_key()
|
| /external/python/rsa/rsa/ |
| D | pkcs1.py | 76 class DecryptionError(CryptoError): class 257 raise DecryptionError('Decryption failed') 274 raise DecryptionError('Decryption failed')
|
| D | __init__.py | 25 from rsa.pkcs1 import encrypt, decrypt, sign, verify, DecryptionError, \
|
| /external/rust/beto-rust/nearby/crypto/crypto_provider_stubs/src/ |
| D | lib.rs | 27 cbc::{AesCbcIv, AesCbcPkcs7Padded, DecryptionError, EncryptionError}, 190 ) -> Result<Vec<u8>, DecryptionError> { in decrypt() argument 198 ) -> Result<(), DecryptionError> { in decrypt_in_place() argument
|
| /external/python/rsa/doc/ |
| D | reference.rst | 47 .. autoclass:: rsa.pkcs1.DecryptionError(CryptoError)
|
| D | usage.rst | 139 :py:class:`rsa.pkcs1.DecryptionError`. If you want to be *sure*, use 147 rsa.pkcs1.DecryptionError: Decryption failed 153 :py:class:`rsa.pkcs1.DecryptionError` exception. It shows where
|