From 15fc7e068dd579b9c130a9702b02cd55eacfe91a Mon Sep 17 00:00:00 2001 From: Herman Date: Tue, 18 May 2021 13:49:37 +0200 Subject: [PATCH] cleanup(dh): remove debug printlines --- rtc_tenclave/src/dh/mod.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/rtc_tenclave/src/dh/mod.rs b/rtc_tenclave/src/dh/mod.rs index 5c2f74c3..c4b7e89f 100644 --- a/rtc_tenclave/src/dh/mod.rs +++ b/rtc_tenclave/src/dh/mod.rs @@ -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) } @@ -162,7 +159,6 @@ impl DhSessions { self.set_in_progress(src_enclave_id, responder)?; - println!("msg1 {:?}", dh_msg1); Ok(dh_msg1) } @@ -184,9 +180,6 @@ impl DhSessions { // TODO: Verify initiator_identity - // TODO: REMOVE - println!("{:?}", aek); - self.set_active(src_enclave_id, aek.key)?; Ok(msg3)