Revert "Fixed incorrect return code handling in ssl3_final_finish_mac"
This reverts commit 728bd41a159ea16a60111e7c1120ec2a005507b3. Missing attribution.
This commit is contained in:
parent
3cc8a3f234
commit
7f133c357b
12
ssl/s3_enc.c
12
ssl/s3_enc.c
@ -663,18 +663,10 @@ int ssl3_cert_verify_mac(SSL *s, int md_nid, unsigned char *p)
|
|||||||
int ssl3_final_finish_mac(SSL *s,
|
int ssl3_final_finish_mac(SSL *s,
|
||||||
const char *sender, int len, unsigned char *p)
|
const char *sender, int len, unsigned char *p)
|
||||||
{
|
{
|
||||||
int ret, sha1len;
|
int ret;
|
||||||
ret=ssl3_handshake_mac(s,NID_md5,sender,len,p);
|
ret=ssl3_handshake_mac(s,NID_md5,sender,len,p);
|
||||||
if(ret == 0)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
p+=ret;
|
p+=ret;
|
||||||
|
ret+=ssl3_handshake_mac(s,NID_sha1,sender,len,p);
|
||||||
sha1len=ssl3_handshake_mac(s,NID_sha1,sender,len,p);
|
|
||||||
if(sha1len == 0)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
ret+=sha1len;
|
|
||||||
return(ret);
|
return(ret);
|
||||||
}
|
}
|
||||||
static int ssl3_handshake_mac(SSL *s, int md_nid,
|
static int ssl3_handshake_mac(SSL *s, int md_nid,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user