diff options
author | Andy Polyakov <appro@openssl.org> | 2005-06-02 20:25:36 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-06-02 20:25:36 +0200 |
commit | d51204f1b1fed976bc3f5f37a466973b9f851328 (patch) | |
tree | 259bd9e31ec8a6f2cf2b95cc7d7ee79c17fd5551 /crypto/rsa/rsa_err.c | |
parent | check return value (diff) | |
download | openssl-d51204f1b1fed976bc3f5f37a466973b9f851328.tar.xz openssl-d51204f1b1fed976bc3f5f37a466973b9f851328.zip |
PSS update [from 0.9.7].
Diffstat (limited to 'crypto/rsa/rsa_err.c')
-rw-r--r-- | crypto/rsa/rsa_err.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rsa/rsa_err.c b/crypto/rsa/rsa_err.c index 48e8f39314..cfb1e908aa 100644 --- a/crypto/rsa/rsa_err.c +++ b/crypto/rsa/rsa_err.c @@ -141,7 +141,7 @@ static ERR_STRING_DATA RSA_str_reasons[]= {ERR_REASON(RSA_R_NULL_BEFORE_BLOCK_MISSING),"null before block missing"}, {ERR_REASON(RSA_R_N_DOES_NOT_EQUAL_P_Q) ,"n does not equal p q"}, {ERR_REASON(RSA_R_OAEP_DECODING_ERROR) ,"oaep decoding error"}, -{ERR_REASON(RSA_R_ONE_CHECK_FAILED) ,"one check failed"}, +{ERR_REASON(RSA_R_SLEN_RECOVERY_FAILED) ,"salt length recovery failed"}, {ERR_REASON(RSA_R_PADDING_CHECK_FAILED) ,"padding check failed"}, {ERR_REASON(RSA_R_P_NOT_PRIME) ,"p not prime"}, {ERR_REASON(RSA_R_Q_NOT_PRIME) ,"q not prime"}, @@ -151,7 +151,7 @@ static ERR_STRING_DATA RSA_str_reasons[]= {ERR_REASON(RSA_R_UNKNOWN_ALGORITHM_TYPE),"unknown algorithm type"}, {ERR_REASON(RSA_R_UNKNOWN_PADDING_TYPE) ,"unknown padding type"}, {ERR_REASON(RSA_R_WRONG_SIGNATURE_LENGTH),"wrong signature length"}, -{ERR_REASON(RSA_R_ZERO_CHECK_FAILED) ,"zero check failed"}, +{ERR_REASON(RSA_R_SLEN_CHECK_FAILED) ,"salt length check failed"}, {0,NULL} }; |