packet: Reformat ssh_packet_hmac_verify()
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com> (cherry picked from commit 4a7791b78405f1f0e084f10c0928329181a38b57)
Этот коммит содержится в:
родитель
cffa103378
Коммит
46e0703c6e
@ -272,28 +272,45 @@ int ssh_packet_hmac_verify(ssh_session session,
|
||||
return SSH_OK;
|
||||
}
|
||||
|
||||
crypto = ssh_packet_get_current_crypto(session, SSH_DIRECTION_IN);
|
||||
crypto = ssh_packet_get_current_crypto(session,
|
||||
SSH_DIRECTION_IN);
|
||||
if (crypto == NULL) {
|
||||
return SSH_ERROR;
|
||||
}
|
||||
|
||||
ctx = hmac_init(crypto->decryptMAC, hmac_digest_len(type), type);
|
||||
ctx = hmac_init(crypto->decryptMAC,
|
||||
hmac_digest_len(type),
|
||||
type);
|
||||
if (ctx == NULL) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
seq = htonl(session->recv_seq);
|
||||
|
||||
hmac_update(ctx, (unsigned char *) &seq, sizeof(uint32_t));
|
||||
hmac_update(ctx, data, len);
|
||||
hmac_final(ctx, hmacbuf, &hmaclen);
|
||||
hmac_update(ctx,
|
||||
(unsigned char *)&seq,
|
||||
sizeof(uint32_t));
|
||||
hmac_update(ctx,
|
||||
data,
|
||||
len);
|
||||
hmac_final(ctx,
|
||||
hmacbuf,
|
||||
&hmaclen);
|
||||
|
||||
#ifdef DEBUG_CRYPTO
|
||||
ssh_log_hexdump("received mac",mac,hmaclen);
|
||||
ssh_log_hexdump("Computed mac",hmacbuf,hmaclen);
|
||||
ssh_log_hexdump("seq",(unsigned char *)&seq,sizeof(uint32_t));
|
||||
ssh_log_hexdump("received mac",
|
||||
mac,
|
||||
hmaclen);
|
||||
ssh_log_hexdump("Computed mac",
|
||||
hmacbuf,
|
||||
hmaclen);
|
||||
ssh_log_hexdump("seq",
|
||||
(unsigned char *)&seq,
|
||||
sizeof(uint32_t));
|
||||
#endif
|
||||
if (secure_memcmp(mac, hmacbuf, hmaclen) == 0) {
|
||||
if (secure_memcmp(mac,
|
||||
hmacbuf,
|
||||
hmaclen) == 0) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user