PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/include/polarssl/error.h

https://github.com/arisec91/polarssl
C Header | 122 lines | 14 code | 7 blank | 101 comment | 0 complexity | 4dd2b0b468d697b89e26b0b4fcd0d418 MD5 | raw file
Possible License(s): GPL-2.0
  1. /**
  2. * \file error.h
  3. *
  4. * \brief Error to string translation
  5. *
  6. * Copyright (C) 2006-2013, Brainspark B.V.
  7. *
  8. * This file is part of PolarSSL (http://www.polarssl.org)
  9. * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
  10. *
  11. * All rights reserved.
  12. *
  13. * This program is free software; you can redistribute it and/or modify
  14. * it under the terms of the GNU General Public License as published by
  15. * the Free Software Foundation; either version 2 of the License, or
  16. * (at your option) any later version.
  17. *
  18. * This program is distributed in the hope that it will be useful,
  19. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  20. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  21. * GNU General Public License for more details.
  22. *
  23. * You should have received a copy of the GNU General Public License along
  24. * with this program; if not, write to the Free Software Foundation, Inc.,
  25. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  26. */
  27. #ifndef POLARSSL_ERROR_H
  28. #define POLARSSL_ERROR_H
  29. #include <string.h>
  30. /**
  31. * Error code layout.
  32. *
  33. * Currently we try to keep all error codes within the negative space of 16
  34. * bytes signed integers to support all platforms (-0x0000 - -0x8000). In
  35. * addition we'd like to give two layers of information on the error if
  36. * possible.
  37. *
  38. * For that purpose the error codes are segmented in the following manner:
  39. *
  40. * 16 bit error code bit-segmentation
  41. *
  42. * 1 bit - Sign bit
  43. * 3 bits - High level module ID
  44. * 5 bits - Module-dependent error code
  45. * 7 bits - Low level module errors
  46. *
  47. * For historical reasons, low-level error codes are divided in even and odd,
  48. * even codes were assigned first, and -1 is reserved for other errors.
  49. *
  50. * Low-level module errors (0x0002-0x007E, 0x0003-0x007F)
  51. *
  52. * Module Nr Codes assigned
  53. * MPI 7 0x0002-0x0010
  54. * GCM 2 0x0012-0x0014
  55. * BLOWFISH 2 0x0016-0x0018
  56. * THREADING 3 0x001A-0x001E
  57. * AES 2 0x0020-0x0022
  58. * CAMELLIA 2 0x0024-0x0026
  59. * XTEA 1 0x0028-0x0028
  60. * BASE64 2 0x002A-0x002C
  61. * OID 1 0x002E-0x002E 0x000B-0x000B
  62. * PADLOCK 1 0x0030-0x0030
  63. * DES 1 0x0032-0x0032
  64. * CTR_DBRG 4 0x0034-0x003A
  65. * ENTROPY 3 0x003C-0x0040
  66. * NET 11 0x0042-0x0056
  67. * ENTROPY 1 0x0058-0x0058
  68. * ASN1 7 0x0060-0x006C
  69. * MD2 1 0x0070-0x0070
  70. * MD4 1 0x0072-0x0072
  71. * MD5 1 0x0074-0x0074
  72. * SHA1 1 0x0076-0x0076
  73. * SHA256 1 0x0078-0x0078
  74. * SHA512 1 0x007A-0x007A
  75. * PBKDF2 1 0x007C-0x007C
  76. * RIPEMD160 1 0x007E-0x007E
  77. * HMAC_DRBG 4 0x0003-0x0009
  78. *
  79. * High-level module nr (3 bits - 0x0...-0x7...)
  80. * Name ID Nr of Errors
  81. * PEM 1 9
  82. * PKCS#12 1 4 (Started from top)
  83. * X509 2 18
  84. * PK 2 14 (Started from top, plus 0x2000)
  85. * DHM 3 9
  86. * PKCS5 3 4 (Started from top)
  87. * RSA 4 9
  88. * ECP 4 8 (Started from top)
  89. * MD 5 4
  90. * CIPHER 6 6
  91. * SSL 6 9 (Started from top)
  92. * SSL 7 31
  93. *
  94. * Module dependent error code (5 bits 0x.00.-0x.F8.)
  95. */
  96. #ifdef __cplusplus
  97. extern "C" {
  98. #endif
  99. /**
  100. * \brief Translate a PolarSSL error code into a string representation,
  101. * Result is truncated if necessary and always includes a terminating
  102. * null byte.
  103. *
  104. * \param errnum error code
  105. * \param buffer buffer to place representation in
  106. * \param buflen length of the buffer
  107. */
  108. void polarssl_strerror( int errnum, char *buffer, size_t buflen );
  109. #if defined(POLARSSL_ERROR_STRERROR_BC)
  110. void error_strerror( int errnum, char *buffer, size_t buflen );
  111. #endif
  112. #ifdef __cplusplus
  113. }
  114. #endif
  115. #endif /* error.h */