X-Git-Url: https://www.tinc-vpn.org/git/browse?a=blobdiff_plain;f=src%2Fsptps.c;h=03a1e9aac468fd638d28cea2d4582c42060c8f18;hb=d03dc91e27b31851f87351c03cfc9a43c1b06458;hp=1699b97f2758d00f6444c40d223de0e0afc1bbf3;hpb=9b9230a0a79c670b86f54fadd2807b864ff9d91f;p=tinc diff --git a/src/sptps.c b/src/sptps.c index 1699b97f..03a1e9aa 100644 --- a/src/sptps.c +++ b/src/sptps.c @@ -98,7 +98,9 @@ static bool send_record_priv_datagram(sptps_t *s, uint8_t type, const char *data if(s->outstate) { // If first handshake has finished, encrypt and HMAC - cipher_set_counter(s->outcipher, &seqno, sizeof seqno); + if(!cipher_set_counter(s->outcipher, &seqno, sizeof seqno)) + return false; + if(!cipher_counter_xor(s->outcipher, buffer + 6, len + 1UL, buffer + 6)) return false; @@ -317,6 +319,7 @@ static bool receive_sig(sptps_t *s, const char *data, uint16_t len) { char shared[ECDH_SHARED_SIZE]; if(!ecdh_compute_shared(s->ecdh, s->hiskex + 1 + 32, shared)) return false; + s->ecdh = NULL; // Generate key material from shared secret. if(!generate_key_material(s, shared, sizeof shared)) @@ -490,7 +493,8 @@ static bool sptps_receive_data_datagram(sptps_t *s, const char *data, size_t len // Decrypt. memcpy(&seqno, buffer + 2, 4); - cipher_set_counter(s->incipher, &seqno, sizeof seqno); + if(!cipher_set_counter(s->incipher, &seqno, sizeof seqno)) + return false; if(!cipher_counter_xor(s->incipher, buffer + 6, len - 4, buffer + 6)) return false;