Skip to content

Commit

Permalink
delete commented out code (#960)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmasny authored Feb 23, 2024
1 parent 9e5a4d4 commit 5293492
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ipa-core/src/report.rs
Original file line number Diff line number Diff line change
Expand Up @@ -332,11 +332,9 @@ where

let mut ct_mk: GenericArray<u8, CTMKLength> =
*GenericArray::from_slice(self.mk_ciphertext());
// let mut ct_mk = self.mk_ciphertext().to_vec();
let plaintext_mk = open_in_place(key_registry, self.encap_key_mk(), &mut ct_mk, &info)?;
let mut ct_btt: GenericArray<u8, CTBTTLength<BK, TV, TS>> =
GenericArray::from_slice(self.btt_ciphertext()).clone();
// let mut ct_btt = self.btt_ciphertext().to_vec();
let plaintext_btt = open_in_place(key_registry, self.encap_key_btt(), &mut ct_btt, &info)?;

Ok(OprfReport::<BK, TV, TS> {
Expand Down

0 comments on commit 5293492

Please sign in to comment.