Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AEAD_AES_128_CCM support #1501

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/aead.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ use core::{

pub use self::{
aes_gcm::{AES_128_GCM, AES_256_GCM},
aes_ccm::AES_128_CCM,
chacha20_poly1305::CHACHA20_POLY1305,
less_safe_key::LessSafeKey,
nonce::{Nonce, NONCE_LEN},
Expand Down Expand Up @@ -122,6 +123,7 @@ impl<A> Eq for Aad<A> where A: Eq {}
#[allow(clippy::large_enum_variant, variant_size_differences)]
#[derive(Clone)]
enum KeyInner {
AesCcm(aes::Key),
AesGcm(aes_gcm::Key),
ChaCha20Poly1305(chacha20_poly1305::Key),
}
Expand Down Expand Up @@ -190,6 +192,7 @@ enum AlgorithmID {
AES_128_GCM,
AES_256_GCM,
CHACHA20_POLY1305,
AES_128_CCM,
}

impl PartialEq for Algorithm {
Expand Down Expand Up @@ -242,6 +245,7 @@ mod block;
mod chacha;
mod chacha20_poly1305;
pub mod chacha20_poly1305_openssh;
mod aes_ccm;
mod gcm;
mod less_safe_key;
mod nonce;
Expand Down
Loading