diff options
author | Dr. Stephen Henson <steve@openssl.org> | 1999-09-19 00:37:44 +0200 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 1999-09-19 00:37:44 +0200 |
commit | 1c80019a2c8f59410552197723829fd72ab45a5e (patch) | |
tree | e78f00fb8637de56d6dc390c9d5a239b494ab830 /crypto/rsa/rsa_err.c | |
parent | Various CRL enhancements tidies and workaround for broken CRLs. (diff) | |
download | openssl-1c80019a2c8f59410552197723829fd72ab45a5e.tar.xz openssl-1c80019a2c8f59410552197723829fd72ab45a5e.zip |
Add new sign and verify members to RSA_METHOD and change SSL code to use sign
and verify rather than direct encrypt/decrypt.
Diffstat (limited to 'crypto/rsa/rsa_err.c')
-rw-r--r-- | crypto/rsa/rsa_err.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/rsa/rsa_err.c b/crypto/rsa/rsa_err.c index 7762bd54b0..5cfbea2b03 100644 --- a/crypto/rsa/rsa_err.c +++ b/crypto/rsa/rsa_err.c @@ -111,6 +111,7 @@ static ERR_STRING_DATA RSA_str_reasons[]= {RSA_R_DMP1_NOT_CONGRUENT_TO_D ,"dmp1 not congruent to d"}, {RSA_R_DMQ1_NOT_CONGRUENT_TO_D ,"dmq1 not congruent to d"}, {RSA_R_D_E_NOT_CONGRUENT_TO_1 ,"d e not congruent to 1"}, +{RSA_R_INVALID_MESSAGE_LENGTH ,"invalid message length"}, {RSA_R_IQMP_NOT_INVERSE_OF_Q ,"iqmp not inverse of q"}, {RSA_R_KEY_SIZE_TOO_SMALL ,"key size too small"}, {RSA_R_NULL_BEFORE_BLOCK_MISSING ,"null before block missing"}, |