Derive Clone for AeCiphertext (#23293)
This commit is contained in:
@ -97,7 +97,7 @@ pub type Nonce = [u8; 12];
|
||||
pub type Ciphertext = [u8; 24];
|
||||
|
||||
/// Authenticated encryption nonce and ciphertext
|
||||
#[derive(Debug, Default)]
|
||||
#[derive(Debug, Default, Clone)]
|
||||
pub struct AeCiphertext {
|
||||
pub nonce: Nonce,
|
||||
pub ciphertext: Ciphertext,
|
||||
|
Reference in New Issue
Block a user