dsa_err.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. #include <openssl/err.h>
  11. #include <openssl/dsaerr.h>
  12. #include "crypto/dsaerr.h"
  13. #ifndef OPENSSL_NO_DSA
  14. # ifndef OPENSSL_NO_ERR
  15. static const ERR_STRING_DATA DSA_str_reasons[] = {
  16. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BAD_FFC_PARAMETERS), "bad ffc parameters"},
  17. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BAD_Q_VALUE), "bad q value"},
  18. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BN_DECODE_ERROR), "bn decode error"},
  19. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_BN_ERROR), "bn error"},
  20. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_DECODE_ERROR), "decode error"},
  21. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_INVALID_DIGEST_TYPE),
  22. "invalid digest type"},
  23. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_INVALID_PARAMETERS), "invalid parameters"},
  24. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MISSING_PARAMETERS), "missing parameters"},
  25. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MISSING_PRIVATE_KEY),
  26. "missing private key"},
  27. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_MODULUS_TOO_LARGE), "modulus too large"},
  28. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_NO_PARAMETERS_SET), "no parameters set"},
  29. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_PARAMETER_ENCODING_ERROR),
  30. "parameter encoding error"},
  31. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_P_NOT_PRIME), "p not prime"},
  32. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_Q_NOT_PRIME), "q not prime"},
  33. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_SEED_LEN_SMALL),
  34. "seed_len is less than the length of q"},
  35. {ERR_PACK(ERR_LIB_DSA, 0, DSA_R_TOO_MANY_RETRIES), "too many retries"},
  36. {0, NULL}
  37. };
  38. # endif
  39. int ossl_err_load_DSA_strings(void)
  40. {
  41. # ifndef OPENSSL_NO_ERR
  42. if (ERR_reason_error_string(DSA_str_reasons[0].error) == NULL)
  43. ERR_load_strings_const(DSA_str_reasons);
  44. # endif
  45. return 1;
  46. }
  47. #else
  48. NON_EMPTY_TRANSLATION_UNIT
  49. #endif