- moved timeout handling responsibility from for nat tests from caller to the library
[oweals/gnunet.git] / src / cadet / gnunet-service-cadet_tunnel.c
index 3328b8a92f44c37accc7320a8aeedad56e469416..6c4d949e3cf9e6f7c2f0661328cd91174daa2b55 100644 (file)
@@ -808,11 +808,8 @@ create_keys (struct CadetTunnel *t)
   struct GNUNET_HashCode km;
 
   derive_key_material (&km, &t->peers_ephemeral_key);
-  LOG (GNUNET_ERROR_TYPE_INFO, "km %s\n", GNUNET_h2s_full (&km));
   derive_symmertic (&t->e_key, &my_full_id, GCP_get_id (t->peer), &km);
-  LOG (GNUNET_ERROR_TYPE_INFO, "ek %s\n", GNUNET_h2s_full (&t->e_key));
   derive_symmertic (&t->d_key, GCP_get_id (t->peer), &my_full_id, &km);
-  LOG (GNUNET_ERROR_TYPE_INFO, "dk %s\n", GNUNET_h2s_full (&t->d_key));
 }