#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
#: src/core/gnunet-service-core_kx.c:1054
#, c-format
msgid ""
-"EPHERMAL_KEY from peer `%s' rejected as its validity range does not match "
+"EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match "
"our system time (%llu not in [%llu,%llu]).\n"
msgstr ""
/**
- * Am I Alice or Bob, or talking to myself?
+ * Am I Alice or Betty (some call her Bob), or talking to myself?
*
* @param other the other peer
- * @return #GNUNET_YES for Alice, #GNUNET_NO for Bob, #GNUNET_SYSERR if talking to myself
+ * @return #GNUNET_YES for Alice, #GNUNET_NO for Betty, #GNUNET_SYSERR if talking to myself
*/
static int
-alice_or_bob (const struct GNUNET_PeerIdentity *other)
+alice_or_betty (const struct GNUNET_PeerIdentity *other)
{
if (0 > GNUNET_CRYPTO_cmp_peer_identity (&my_full_id,
other))
struct GNUNET_CADET_TunnelKeyExchangeMessage *msg;
enum GNUNET_CADET_KX_Flags flags;
- if (GNUNET_YES != alice_or_bob (GCP_get_id (t->destination)))
+ if (GNUNET_YES != alice_or_betty (GCP_get_id (t->destination)))
return; /* only Alice may send KX */
if ( (NULL == ct) ||
(GNUNET_NO == ct->is_ready) )
const char salt[] = "CADET Axolotl salt";
int am_I_alice;
- if (GNUNET_SYSERR == (am_I_alice = alice_or_bob (pid)))
+ if (GNUNET_SYSERR == (am_I_alice = alice_or_betty (pid)))
{
GNUNET_break_op (0);
return GNUNET_SYSERR;
1,
GNUNET_NO);
if (GNUNET_YES ==
- alice_or_bob (GCP_get_id (t->destination)))
+ alice_or_betty (GCP_get_id (t->destination)))
{
/* Bob is not allowed to send KX! */
GNUNET_break_op (0);
(start_t.abs_value_us > GNUNET_TIME_absolute_add (now, REKEY_TOLERANCE).abs_value_us) )
{
GNUNET_log (GNUNET_ERROR_TYPE_WARNING,
- _("EPHERMAL_KEY from peer `%s' rejected as its validity range does not match our system time (%llu not in [%llu,%llu]).\n"),
+ _("EPHEMERAL_KEY from peer `%s' rejected as its validity range does not match our system time (%llu not in [%llu,%llu]).\n"),
GNUNET_i2s (kx->peer),
(unsigned long long) now.abs_value_us,
(unsigned long long) start_t.abs_value_us,
sizeof (current_ekm.ephemeral_key),
&hc);
GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
- "Sending EPHERMERAL_KEY %s to `%s' (my status: %d)\n",
+ "Sending EPHEMERAL_KEY %s to `%s' (my status: %d)\n",
GNUNET_h2s (&hc),
GNUNET_i2s (kx->peer),
kx->status);