mirror of
https://github.com/str4d/rage.git
synced 2025-04-05 03:47:46 +03:00
age: Add test that X25519 and scrypt recipients are incompatible
This commit is contained in:
parent
d2c2e895bf
commit
8091015514
1 changed files with 16 additions and 1 deletions
|
@ -301,7 +301,7 @@ mod tests {
|
||||||
use super::{Decryptor, Encryptor};
|
use super::{Decryptor, Encryptor};
|
||||||
use crate::{
|
use crate::{
|
||||||
identity::{IdentityFile, IdentityFileEntry},
|
identity::{IdentityFile, IdentityFileEntry},
|
||||||
scrypt, x25519, Identity, Recipient,
|
scrypt, x25519, EncryptError, Identity, Recipient,
|
||||||
};
|
};
|
||||||
|
|
||||||
#[cfg(feature = "async")]
|
#[cfg(feature = "async")]
|
||||||
|
@ -510,4 +510,19 @@ mod tests {
|
||||||
.unwrap();
|
.unwrap();
|
||||||
recipient_async_round_trip(vec![Box::new(pk)], iter::once(&sk as &dyn Identity));
|
recipient_async_round_trip(vec![Box::new(pk)], iter::once(&sk as &dyn Identity));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn mixed_recipient_and_passphrase() {
|
||||||
|
let pk: x25519::Recipient = crate::x25519::tests::TEST_PK.parse().unwrap();
|
||||||
|
let passphrase = crate::scrypt::Recipient::new(SecretString::new("passphrase".to_string()));
|
||||||
|
|
||||||
|
let recipients = vec![Box::new(pk) as _, Box::new(passphrase) as _];
|
||||||
|
|
||||||
|
let mut encrypted = vec![];
|
||||||
|
let e = Encryptor::with_recipients(recipients).unwrap();
|
||||||
|
assert!(matches!(
|
||||||
|
e.wrap_output(&mut encrypted),
|
||||||
|
Err(EncryptError::MixedRecipientAndPassphrase),
|
||||||
|
));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue