blob: 29f1496693316f62c933726b09dad2a6e97112f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/* Error codes for the RSA functions. */
/* Function codes. */
#define RSA_F_RSA_EAY_PRIVATE_DECRYPT 100
#define RSA_F_RSA_EAY_PRIVATE_ENCRYPT 101
#define RSA_F_RSA_EAY_PUBLIC_DECRYPT 102
#define RSA_F_RSA_EAY_PUBLIC_ENCRYPT 103
#define RSA_F_RSA_GENERATE_KEY 104
#define RSA_F_RSA_NEW_METHOD 105
#define RSA_F_RSA_PRINT 106
#define RSA_F_RSA_PRINT_FP 107
#define RSA_F_RSA_SIGN 108
#define RSA_F_RSA_SIGN_ASN1_OCTET_STRING 109
#define RSA_F_RSA_VERIFY 110
#define RSA_F_RSA_VERIFY_ASN1_OCTET_STRING 111
/* Reason codes. */
#define RSA_R_ALGORITHM_MISMATCH 100
#define RSA_R_BAD_E_VALUE 101
#define RSA_R_BAD_FIXED_HEADER_DECRYPT 102
#define RSA_R_BAD_PAD_BYTE_COUNT 103
#define RSA_R_BAD_SIGNATURE 104
#define RSA_R_BLOCK_TYPE_IS_NOT_01 105
#define RSA_R_BLOCK_TYPE_IS_NOT_02 106
#define RSA_R_DATA_GREATER_THAN_MOD_LEN 107
#define RSA_R_DATA_TOO_LARGE_FOR_KEY_SIZE 108
#define RSA_R_DIGEST_TOO_BIG_FOR_RSA_KEY 109
#define RSA_R_NULL_BEFORE_BLOCK_MISSING 110
#define RSA_R_SSLV3_ROLLBACK_ATTACK 111
#define RSA_R_THE_ASN1_OBJECT_IDENTIFIER_IS_NOT_KNOWN_FOR_THIS_MD 112
#define RSA_R_UNKNOWN_ALGORITHM_TYPE 113
#define RSA_R_UNKNOWN_PADDING_TYPE 114
#define RSA_R_WRONG_SIGNATURE_LENGTH 115
|