- --log_color actually works
- new ls option: -d (print dates as seconds after the epoch)
- update to gengetopt 2.22.2
+ - support for RSA keys of size > 512 bits
-----------------------------------------
0.3.4 (2009-05-07) "elliptic inheritance"
t->error = client_recv_buffer(ct);
if (t->error < 0)
return;
- if (t->error != 64) {
+ if (t->error < 64) {
t->error = -E_INVALID_CHALLENGE;
PARA_ERROR_LOG("received the following: %s\n", ct->buf);
return;
}
- PARA_INFO_LOG("<-- [challenge]\n");
+ PARA_INFO_LOG("<-- [challenge] (%d bytes)\n", t->error);
/* decrypt challenge number */
t->error = para_decrypt_challenge(ct->key_file, &ct->challenge_nr,
- (unsigned char *) ct->buf, 64);
+ (unsigned char *) ct->buf, t->error);
if (t->error > 0)
ct->status = CL_RECEIVED_CHALLENGE;
return;