~yujiri/libsufec

1aa84cb136720ef2e69b581f794c1e57d4ba874a — Yujiri 2 years ago 31f8438
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
}