1
#pragma GCC system_header
5
* \brief Error to string translation
8
* Copyright The Mbed TLS Contributors
9
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
11
* This file is provided under the Apache License 2.0, or the
12
* GNU General Public License v2.0 or later.
17
* Licensed under the Apache License, Version 2.0 (the "License"); you may
18
* not use this file except in compliance with the License.
19
* You may obtain a copy of the License at
21
* http://www.apache.org/licenses/LICENSE-2.0
23
* Unless required by applicable law or agreed to in writing, software
24
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
25
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
26
* See the License for the specific language governing permissions and
27
* limitations under the License.
32
* GNU General Public License v2.0 or later:
34
* This program is free software; you can redistribute it and/or modify
35
* it under the terms of the GNU General Public License as published by
36
* the Free Software Foundation; either version 2 of the License, or
37
* (at your option) any later version.
39
* This program is distributed in the hope that it will be useful,
40
* but WITHOUT ANY WARRANTY; without even the implied warranty of
41
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
42
* GNU General Public License for more details.
44
* You should have received a copy of the GNU General Public License along
45
* with this program; if not, write to the Free Software Foundation, Inc.,
46
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
50
#ifndef MBEDTLS_ERROR_H
51
#define MBEDTLS_ERROR_H
53
#if !defined(MBEDTLS_CONFIG_FILE)
56
#include MBEDTLS_CONFIG_FILE
64
* Currently we try to keep all error codes within the negative space of 16
65
* bits signed integers to support all platforms (-0x0001 - -0x7FFF). In
66
* addition we'd like to give two layers of information on the error if
69
* For that purpose the error codes are segmented in the following manner:
71
* 16 bit error code bit-segmentation
73
* 1 bit - Unused (sign bit)
74
* 3 bits - High level module ID
75
* 5 bits - Module-dependent error code
76
* 7 bits - Low level module errors
78
* For historical reasons, low-level error codes are divided in even and odd,
79
* even codes were assigned first, and -1 is reserved for other errors.
81
* Low-level module errors (0x0002-0x007E, 0x0003-0x007F)
83
* Module Nr Codes assigned
85
* GCM 3 0x0012-0x0014 0x0013-0x0013
86
* BLOWFISH 3 0x0016-0x0018 0x0017-0x0017
87
* THREADING 3 0x001A-0x001E
88
* AES 5 0x0020-0x0022 0x0021-0x0025
89
* CAMELLIA 3 0x0024-0x0026 0x0027-0x0027
90
* XTEA 2 0x0028-0x0028 0x0029-0x0029
91
* BASE64 2 0x002A-0x002C
92
* OID 1 0x002E-0x002E 0x000B-0x000B
93
* PADLOCK 1 0x0030-0x0030
94
* DES 2 0x0032-0x0032 0x0033-0x0033
95
* CTR_DBRG 4 0x0034-0x003A
96
* ENTROPY 3 0x003C-0x0040 0x003D-0x003F
97
* NET 13 0x0042-0x0052 0x0043-0x0049
98
* ARIA 4 0x0058-0x005E
99
* ASN1 7 0x0060-0x006C
100
* CMAC 1 0x007A-0x007A
101
* PBKDF2 1 0x007C-0x007C
102
* HMAC_DRBG 4 0x0003-0x0009
103
* CCM 3 0x000D-0x0011
104
* ARC4 1 0x0019-0x0019
105
* MD2 1 0x002B-0x002B
106
* MD4 1 0x002D-0x002D
107
* MD5 1 0x002F-0x002F
108
* RIPEMD160 1 0x0031-0x0031
109
* SHA1 1 0x0035-0x0035 0x0073-0x0073
110
* SHA256 1 0x0037-0x0037 0x0074-0x0074
111
* SHA512 1 0x0039-0x0039 0x0075-0x0075
112
* CHACHA20 3 0x0051-0x0055
113
* POLY1305 3 0x0057-0x005B
114
* CHACHAPOLY 2 0x0054-0x0056
115
* PLATFORM 1 0x0070-0x0072
117
* High-level module nr (3 bits - 0x0...-0x7...)
118
* Name ID Nr of Errors
120
* PKCS#12 1 4 (Started from top)
122
* PKCS5 2 4 (Started from top)
124
* PK 3 15 (Started from top)
126
* ECP 4 10 (Started from top)
128
* HKDF 5 1 (Started from top)
129
* SSL 5 1 (Started from 0x5E80)
131
* SSL 6 23 (Started from top)
134
* Module dependent error code (5 bits 0x.00.-0x.F8.)
142
* \brief Translate a mbed TLS error code into a string representation,
143
* Result is truncated if necessary and always includes a terminating
146
* \param errnum error code
147
* \param buffer buffer to place representation in
148
* \param buflen length of the buffer
150
void mbedtls_strerror( int errnum, char *buffer, size_t buflen );