remove debug statement accidentally committed
1 files changed, 0 insertions(+), 1 deletions(-) M src/crypto.rs
M src/crypto.rs => src/crypto.rs +0 -1
@@ 61,7 61,6 @@ fn tripledh( for i in 0..PRECOMPUTEDKEYBYTES { shared_key.0[i] = own_eph_their_eph.0[i] ^ own_id_their_eph.0[i] ^ own_eph_their_id.0[i]; } - println!("{:?}, {:?}, {:?}, {:?}", own_eph_their_eph.0, own_id_their_eph.0, own_eph_their_id.0, shared_key.0); shared_key }