Skip to content

Commit

Permalink
remove debug println!s
Browse files Browse the repository at this point in the history
  • Loading branch information
keks committed Aug 22, 2024
1 parent 3acd7fe commit f0bd932
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/dh_kem.rs
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ pub(super) fn auth_decaps<Crypto: HpkeCrypto>(
suite_id: &[u8],
) -> Result<Vec<u8>, Error> {
let pk_e = deserialize(enc);
std::println!("alg: {alg:?}");
std::println!("pk_e: {pk_e:?}");
std::println!("pk_s: {pk_s:?}");
let dh_pk = concat(&[
&Crypto::kem_derive(alg, &pk_e, sk_r).unwrap(),
&Crypto::kem_derive(alg, pk_s, sk_r).unwrap(),
Expand Down

0 comments on commit f0bd932

Please sign in to comment.