Where Online Learning is simpler!
The C and C++ Include Header Files
cat -n /usr/include/openssl/dsaerr.h
1 /* 2 * Generated by util/mkerr.pl DO NOT EDIT 3 * Copyright 1995-2023 The OpenSSL Project Authors. All Rights Reserved. 4 * 5 * Licensed under the Apache License 2.0 (the "License"). You may not use 6 * this file except in compliance with the License. You can obtain a copy 7 * in the file LICENSE in the source distribution or at 8 * https://www.openssl.org/source/license.html 9 */ 10 11 #ifndef OPENSSL_DSAERR_H 12 #define OPENSSL_DSAERR_H 13 #pragma once 14 15 #include <openssl/opensslconf.h> 16 #include <openssl/symhacks.h> 17 #include <openssl/cryptoerr_legacy.h> 18 19 #ifndef OPENSSL_NO_DSA 20 21 /* 22 * DSA reason codes. 23 */ 24 #define DSA_R_BAD_FFC_PARAMETERS 114 25 #define DSA_R_BAD_Q_VALUE 102 26 #define DSA_R_BN_DECODE_ERROR 108 27 #define DSA_R_BN_ERROR 109 28 #define DSA_R_DECODE_ERROR 104 29 #define DSA_R_INVALID_DIGEST_TYPE 106 30 #define DSA_R_INVALID_PARAMETERS 112 31 #define DSA_R_MISSING_PARAMETERS 101 32 #define DSA_R_MISSING_PRIVATE_KEY 111 33 #define DSA_R_MODULUS_TOO_LARGE 103 34 #define DSA_R_NO_PARAMETERS_SET 107 35 #define DSA_R_PARAMETER_ENCODING_ERROR 105 36 #define DSA_R_P_NOT_PRIME 115 37 #define DSA_R_Q_NOT_PRIME 113 38 #define DSA_R_SEED_LEN_SMALL 110 39 #define DSA_R_TOO_MANY_RETRIES 116 40 41 #endif 42 #endif