Skip to content
Merged
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: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cas-lib"
version = "0.2.55"
version = "0.2.56"
edition = "2021"
description = "Core lib for CAS"
license = "Apache-2.0"
Expand All @@ -22,7 +22,7 @@ rsa = "0.9.6"
scrypt = "0.11.0"
sha3 = "0.10.8"
x25519-dalek = {version = "2.0.0", features = ["static_secrets"]}
ascon-aead = "0.4.2"
ascon-aead = "0.5.1"
rayon = "1.10.0"
hmac = "0.12.1"
sha2 = "0.10.8"
Expand Down
2 changes: 1 addition & 1 deletion src/sponges/ascon_aead.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
use std::sync::mpsc;

use aes_gcm::AeadCore;
use ascon_aead::{aead::{generic_array::GenericArray, Aead, KeyInit, OsRng}, Ascon128};
use ascon_aead::{aead::{generic_array::GenericArray, Aead, KeyInit, OsRng}, AsconAead128 as Ascon128};

use super::cas_ascon_aead::{CASAsconAead};
pub struct AsconAead;
Expand Down
Loading