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:
47b0f48
)
more error codes fixed
author
Ulf Möller
<ulf@openssl.org>
Fri, 8 Jun 2001 14:16:39 +0000
(14:16 +0000)
committer
Ulf Möller
<ulf@openssl.org>
Fri, 8 Jun 2001 14:16:39 +0000
(14:16 +0000)
crypto/rsa/rsa_oaep.c
patch
|
blob
|
history
diff --git
a/crypto/rsa/rsa_oaep.c
b/crypto/rsa/rsa_oaep.c
index a893142fdb316eef9b39e71871043ac83ab3a33f..a4896392599e8375ac45d7c18865ad50c6f8ed00 100644
(file)
--- a/
crypto/rsa/rsa_oaep.c
+++ b/
crypto/rsa/rsa_oaep.c
@@
-130,14
+130,13
@@
int RSA_padding_check_PKCS1_OAEP(unsigned char *to, int tlen,
if (db[i] != 0x00)
break;
if (db[i] != 0x01 || i++ >= dblen)
- RSAerr(RSA_F_RSA_PADDING_CHECK_PKCS1_OAEP,
- RSA_R_OAEP_DECODING_ERROR);
+ goto decoding_err;
else
{
mlen = dblen - i;
if (tlen < mlen)
{
- RSAerr(RSA_F_RSA_PADDING_
ADD
_PKCS1_OAEP, RSA_R_DATA_TOO_LARGE);
+ RSAerr(RSA_F_RSA_PADDING_
CHECK
_PKCS1_OAEP, RSA_R_DATA_TOO_LARGE);
mlen = -1;
}
else