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

delete commented out code #960

Merged
Merged
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
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
Loading