error-crypt.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. /* error-crypt.h
  2. *
  3. * Copyright (C) 2006-2014 wolfSSL Inc.
  4. *
  5. * This file is part of CyaSSL.
  6. *
  7. * CyaSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * CyaSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
  20. */
  21. #ifndef CTAO_CRYPT_ERROR_H
  22. #define CTAO_CRYPT_ERROR_H
  23. /* error codes */
  24. enum {
  25. MAX_CODE_E = -100, /* errors -101 - -299 */
  26. OPEN_RAN_E = -101, /* opening random device error */
  27. READ_RAN_E = -102, /* reading random device error */
  28. WINCRYPT_E = -103, /* windows crypt init error */
  29. CRYPTGEN_E = -104, /* windows crypt generation error */
  30. RAN_BLOCK_E = -105, /* reading random device would block */
  31. BAD_MUTEX_E = -106, /* Bad mutex operation */
  32. MP_INIT_E = -110, /* mp_init error state */
  33. MP_READ_E = -111, /* mp_read error state */
  34. MP_EXPTMOD_E = -112, /* mp_exptmod error state */
  35. MP_TO_E = -113, /* mp_to_xxx error state, can't convert */
  36. MP_SUB_E = -114, /* mp_sub error state, can't subtract */
  37. MP_ADD_E = -115, /* mp_add error state, can't add */
  38. MP_MUL_E = -116, /* mp_mul error state, can't multiply */
  39. MP_MULMOD_E = -117, /* mp_mulmod error state, can't multiply mod */
  40. MP_MOD_E = -118, /* mp_mod error state, can't mod */
  41. MP_INVMOD_E = -119, /* mp_invmod error state, can't inv mod */
  42. MP_CMP_E = -120, /* mp_cmp error state */
  43. MP_ZERO_E = -121, /* got a mp zero result, not expected */
  44. MEMORY_E = -125, /* out of memory error */
  45. RSA_WRONG_TYPE_E = -130, /* RSA wrong block type for RSA function */
  46. RSA_BUFFER_E = -131, /* RSA buffer error, output too small or
  47. input too large */
  48. BUFFER_E = -132, /* output buffer too small or input too large */
  49. ALGO_ID_E = -133, /* setting algo id error */
  50. PUBLIC_KEY_E = -134, /* setting public key error */
  51. DATE_E = -135, /* setting date validity error */
  52. SUBJECT_E = -136, /* setting subject name error */
  53. ISSUER_E = -137, /* setting issuer name error */
  54. CA_TRUE_E = -138, /* setting CA basic constraint true error */
  55. EXTENSIONS_E = -139, /* setting extensions error */
  56. ASN_PARSE_E = -140, /* ASN parsing error, invalid input */
  57. ASN_VERSION_E = -141, /* ASN version error, invalid number */
  58. ASN_GETINT_E = -142, /* ASN get big int error, invalid data */
  59. ASN_RSA_KEY_E = -143, /* ASN key init error, invalid input */
  60. ASN_OBJECT_ID_E = -144, /* ASN object id error, invalid id */
  61. ASN_TAG_NULL_E = -145, /* ASN tag error, not null */
  62. ASN_EXPECT_0_E = -146, /* ASN expect error, not zero */
  63. ASN_BITSTR_E = -147, /* ASN bit string error, wrong id */
  64. ASN_UNKNOWN_OID_E = -148, /* ASN oid error, unknown sum id */
  65. ASN_DATE_SZ_E = -149, /* ASN date error, bad size */
  66. ASN_BEFORE_DATE_E = -150, /* ASN date error, current date before */
  67. ASN_AFTER_DATE_E = -151, /* ASN date error, current date after */
  68. ASN_SIG_OID_E = -152, /* ASN signature error, mismatched oid */
  69. ASN_TIME_E = -153, /* ASN time error, unknown time type */
  70. ASN_INPUT_E = -154, /* ASN input error, not enough data */
  71. ASN_SIG_CONFIRM_E = -155, /* ASN sig error, confirm failure */
  72. ASN_SIG_HASH_E = -156, /* ASN sig error, unsupported hash type */
  73. ASN_SIG_KEY_E = -157, /* ASN sig error, unsupported key type */
  74. ASN_DH_KEY_E = -158, /* ASN key init error, invalid input */
  75. ASN_NTRU_KEY_E = -159, /* ASN ntru key decode error, invalid input */
  76. ASN_CRIT_EXT_E = -160, /* ASN unsupported critical extension */
  77. ECC_BAD_ARG_E = -170, /* ECC input argument of wrong type */
  78. ASN_ECC_KEY_E = -171, /* ASN ECC bad input */
  79. ECC_CURVE_OID_E = -172, /* Unsupported ECC OID curve type */
  80. BAD_FUNC_ARG = -173, /* Bad function argument provided */
  81. NOT_COMPILED_IN = -174, /* Feature not compiled in */
  82. UNICODE_SIZE_E = -175, /* Unicode password too big */
  83. NO_PASSWORD = -176, /* no password provided by user */
  84. ALT_NAME_E = -177, /* alt name size problem, too big */
  85. AES_GCM_AUTH_E = -180, /* AES-GCM Authentication check failure */
  86. AES_CCM_AUTH_E = -181, /* AES-CCM Authentication check failure */
  87. CAVIUM_INIT_E = -182, /* Cavium Init type error */
  88. COMPRESS_INIT_E = -183, /* Compress init error */
  89. COMPRESS_E = -184, /* Compress error */
  90. DECOMPRESS_INIT_E = -185, /* DeCompress init error */
  91. DECOMPRESS_E = -186, /* DeCompress error */
  92. BAD_ALIGN_E = -187, /* Bad alignment for operation, no alloc */
  93. ASN_NO_SIGNER_E = -188, /* ASN no signer to confirm failure */
  94. ASN_CRL_CONFIRM_E = -189, /* ASN CRL signature confirm failure */
  95. ASN_CRL_NO_SIGNER_E = -190, /* ASN CRL no signer to confirm failure */
  96. ASN_OCSP_CONFIRM_E = -191, /* ASN OCSP signature confirm failure */
  97. BAD_ENC_STATE_E = -192, /* Bad ecc enc state operation */
  98. BAD_PADDING_E = -193, /* Bad padding, msg not correct length */
  99. REQ_ATTRIBUTE_E = -194, /* setting cert request attributes error */
  100. PKCS7_OID_E = -195, /* PKCS#7, mismatched OID error */
  101. PKCS7_RECIP_E = -196, /* PKCS#7, recipient error */
  102. FIPS_NOT_ALLOWED_E = -197, /* FIPS not allowed error */
  103. ASN_NAME_INVALID_E = -198, /* ASN name constraint error */
  104. RNG_FAILURE_E = -199, /* RNG Failed, Reinitialize */
  105. HMAC_MIN_KEYLEN_E = -200, /* FIPS Mode HMAC Minimum Key Length error */
  106. RSA_PAD_E = -201, /* RSA Padding Error */
  107. LENGTH_ONLY_E = -202, /* Returning output length only */
  108. IN_CORE_FIPS_E = -203, /* In Core Integrity check failure */
  109. AES_KAT_FIPS_E = -204, /* AES KAT failure */
  110. DES3_KAT_FIPS_E = -205, /* DES3 KAT failure */
  111. HMAC_KAT_FIPS_E = -206, /* HMAC KAT failure */
  112. RSA_KAT_FIPS_E = -207, /* RSA KAT failure */
  113. DRBG_KAT_FIPS_E = -208, /* HASH DRBG KAT failure */
  114. DRBG_CONT_FIPS_E = -209, /* HASH DRBG Continious test failure */
  115. AESGCM_KAT_FIPS_E = -210, /* AESGCM KAT failure */
  116. MIN_CODE_E = -300 /* errors -101 - -299 */
  117. };
  118. #endif /* CTAO_CRYPT_ERROR_H */