Skip to content
This repository has been archived by the owner on May 9, 2022. It is now read-only.

Commit

Permalink
cleanup(dh): remove debug printlines
Browse files Browse the repository at this point in the history
  • Loading branch information
longtomjr committed May 25, 2021
1 parent 608f78a commit 15fc7e0
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions rtc_tenclave/src/dh/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,6 @@ impl DhSessions {
// TODO: Verify identity
initiator.proc_msg3(&dh_msg3, &mut aek.key, &mut responder_identity)?;

// TODO: REMOVE
println!("{:?}", aek);

self.set_active(dest_enclave_id, aek.key)
}

Expand All @@ -162,7 +159,6 @@ impl DhSessions {

self.set_in_progress(src_enclave_id, responder)?;

println!("msg1 {:?}", dh_msg1);
Ok(dh_msg1)
}

Expand All @@ -184,9 +180,6 @@ impl DhSessions {

// TODO: Verify initiator_identity

// TODO: REMOVE
println!("{:?}", aek);

self.set_active(src_enclave_id, aek.key)?;

Ok(msg3)
Expand Down

0 comments on commit 15fc7e0

Please sign in to comment.