projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7bf7944
)
Update from head.
author
Dr. Stephen Henson
<steve@openssl.org>
Mon, 6 Jun 2005 22:42:35 +0000
(22:42 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 6 Jun 2005 22:42:35 +0000
(22:42 +0000)
crypto/rsa/rsa_x931.c
patch
|
blob
|
history
diff --git
a/crypto/rsa/rsa_x931.c
b/crypto/rsa/rsa_x931.c
index ac3fde2a84e08446404f19b48af62a37d7b3cdae..df3c45f802e19d60c7125581df81179f1c5b24ed 100644
(file)
--- a/
crypto/rsa/rsa_x931.c
+++ b/
crypto/rsa/rsa_x931.c
@@
-115,9
+115,9
@@
int RSA_padding_check_X931(unsigned char *to, int tlen,
return -1;
}
- j=flen-3;
if (*p++ == 0x6B)
{
+ j=flen-3;
for (i = 0; i < j; i++)
{
unsigned char c = *p++;
@@
-130,15
+130,17
@@
int RSA_padding_check_X931(unsigned char *to, int tlen,
return -1;
}
}
- }
- j -= i;
+ j -= i;
+
+ if (i == 0)
+ {
+ RSAerr(RSA_F_RSA_PADDING_CHECK_X931, RSA_R_INVALID_PADDING);
+ return -1;
+ }
- if (i == 0)
- {
- RSAerr(RSA_F_RSA_PADDING_CHECK_X931, RSA_R_INVALID_PADDING);
- return -1;
}
+ else j = flen - 2;
if (p[j] != 0xCC)
{