Avnet / WNCInterface

Dependencies:   WncControllerK64F

Dependents:   WNCProximityMqtt Pubnub_ATT_IoT_SK_WNC_sync BluemixDemo BluemixQS ... more

See the WNCInterface README in the Wiki tab for detailed information on this library.

Committer:
JMF
Date:
Fri Dec 02 16:53:14 2016 +0000
Revision:
21:552b630becf2
Parent:
12:0071cb144c7a
Adding HTTPS support

Who changed what in which revision?

UserRevisionLine numberNew contents of line
JMF 12:0071cb144c7a 1 /**
JMF 12:0071cb144c7a 2 * \file compat-1.3.h
JMF 12:0071cb144c7a 3 *
JMF 12:0071cb144c7a 4 * \brief Compatibility definitions for using mbed TLS with client code written
JMF 12:0071cb144c7a 5 * for the PolarSSL naming conventions.
JMF 12:0071cb144c7a 6 *
JMF 12:0071cb144c7a 7 * \deprecated Use the new names directly instead
JMF 12:0071cb144c7a 8 *
JMF 12:0071cb144c7a 9 * Copyright (C) 2006-2015, ARM Limited, All Rights Reserved
JMF 12:0071cb144c7a 10 * SPDX-License-Identifier: Apache-2.0
JMF 12:0071cb144c7a 11 *
JMF 12:0071cb144c7a 12 * Licensed under the Apache License, Version 2.0 (the "License"); you may
JMF 12:0071cb144c7a 13 * not use this file except in compliance with the License.
JMF 12:0071cb144c7a 14 * You may obtain a copy of the License at
JMF 12:0071cb144c7a 15 *
JMF 12:0071cb144c7a 16 * http://www.apache.org/licenses/LICENSE-2.0
JMF 12:0071cb144c7a 17 *
JMF 12:0071cb144c7a 18 * Unless required by applicable law or agreed to in writing, software
JMF 12:0071cb144c7a 19 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
JMF 12:0071cb144c7a 20 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
JMF 12:0071cb144c7a 21 * See the License for the specific language governing permissions and
JMF 12:0071cb144c7a 22 * limitations under the License.
JMF 12:0071cb144c7a 23 *
JMF 12:0071cb144c7a 24 * This file is part of mbed TLS (https://tls.mbed.org)
JMF 12:0071cb144c7a 25 */
JMF 12:0071cb144c7a 26
JMF 12:0071cb144c7a 27 #if ! defined(MBEDTLS_DEPRECATED_REMOVED)
JMF 12:0071cb144c7a 28
JMF 12:0071cb144c7a 29 #if defined(MBEDTLS_DEPRECATED_WARNING)
JMF 12:0071cb144c7a 30 #warning "Including compat-1.3.h is deprecated"
JMF 12:0071cb144c7a 31 #endif
JMF 12:0071cb144c7a 32
JMF 12:0071cb144c7a 33 #ifndef MBEDTLS_COMPAT13_H
JMF 12:0071cb144c7a 34 #define MBEDTLS_COMPAT13_H
JMF 12:0071cb144c7a 35
JMF 12:0071cb144c7a 36 /*
JMF 12:0071cb144c7a 37 * config.h options
JMF 12:0071cb144c7a 38 */
JMF 12:0071cb144c7a 39 #if defined MBEDTLS_AESNI_C
JMF 12:0071cb144c7a 40 #define POLARSSL_AESNI_C MBEDTLS_AESNI_C
JMF 12:0071cb144c7a 41 #endif
JMF 12:0071cb144c7a 42 #if defined MBEDTLS_AES_ALT
JMF 12:0071cb144c7a 43 #define POLARSSL_AES_ALT MBEDTLS_AES_ALT
JMF 12:0071cb144c7a 44 #endif
JMF 12:0071cb144c7a 45 #if defined MBEDTLS_AES_C
JMF 12:0071cb144c7a 46 #define POLARSSL_AES_C MBEDTLS_AES_C
JMF 12:0071cb144c7a 47 #endif
JMF 12:0071cb144c7a 48 #if defined MBEDTLS_AES_ROM_TABLES
JMF 12:0071cb144c7a 49 #define POLARSSL_AES_ROM_TABLES MBEDTLS_AES_ROM_TABLES
JMF 12:0071cb144c7a 50 #endif
JMF 12:0071cb144c7a 51 #if defined MBEDTLS_ARC4_ALT
JMF 12:0071cb144c7a 52 #define POLARSSL_ARC4_ALT MBEDTLS_ARC4_ALT
JMF 12:0071cb144c7a 53 #endif
JMF 12:0071cb144c7a 54 #if defined MBEDTLS_ARC4_C
JMF 12:0071cb144c7a 55 #define POLARSSL_ARC4_C MBEDTLS_ARC4_C
JMF 12:0071cb144c7a 56 #endif
JMF 12:0071cb144c7a 57 #if defined MBEDTLS_ASN1_PARSE_C
JMF 12:0071cb144c7a 58 #define POLARSSL_ASN1_PARSE_C MBEDTLS_ASN1_PARSE_C
JMF 12:0071cb144c7a 59 #endif
JMF 12:0071cb144c7a 60 #if defined MBEDTLS_ASN1_WRITE_C
JMF 12:0071cb144c7a 61 #define POLARSSL_ASN1_WRITE_C MBEDTLS_ASN1_WRITE_C
JMF 12:0071cb144c7a 62 #endif
JMF 12:0071cb144c7a 63 #if defined MBEDTLS_BASE64_C
JMF 12:0071cb144c7a 64 #define POLARSSL_BASE64_C MBEDTLS_BASE64_C
JMF 12:0071cb144c7a 65 #endif
JMF 12:0071cb144c7a 66 #if defined MBEDTLS_BIGNUM_C
JMF 12:0071cb144c7a 67 #define POLARSSL_BIGNUM_C MBEDTLS_BIGNUM_C
JMF 12:0071cb144c7a 68 #endif
JMF 12:0071cb144c7a 69 #if defined MBEDTLS_BLOWFISH_ALT
JMF 12:0071cb144c7a 70 #define POLARSSL_BLOWFISH_ALT MBEDTLS_BLOWFISH_ALT
JMF 12:0071cb144c7a 71 #endif
JMF 12:0071cb144c7a 72 #if defined MBEDTLS_BLOWFISH_C
JMF 12:0071cb144c7a 73 #define POLARSSL_BLOWFISH_C MBEDTLS_BLOWFISH_C
JMF 12:0071cb144c7a 74 #endif
JMF 12:0071cb144c7a 75 #if defined MBEDTLS_CAMELLIA_ALT
JMF 12:0071cb144c7a 76 #define POLARSSL_CAMELLIA_ALT MBEDTLS_CAMELLIA_ALT
JMF 12:0071cb144c7a 77 #endif
JMF 12:0071cb144c7a 78 #if defined MBEDTLS_CAMELLIA_C
JMF 12:0071cb144c7a 79 #define POLARSSL_CAMELLIA_C MBEDTLS_CAMELLIA_C
JMF 12:0071cb144c7a 80 #endif
JMF 12:0071cb144c7a 81 #if defined MBEDTLS_CAMELLIA_SMALL_MEMORY
JMF 12:0071cb144c7a 82 #define POLARSSL_CAMELLIA_SMALL_MEMORY MBEDTLS_CAMELLIA_SMALL_MEMORY
JMF 12:0071cb144c7a 83 #endif
JMF 12:0071cb144c7a 84 #if defined MBEDTLS_CCM_C
JMF 12:0071cb144c7a 85 #define POLARSSL_CCM_C MBEDTLS_CCM_C
JMF 12:0071cb144c7a 86 #endif
JMF 12:0071cb144c7a 87 #if defined MBEDTLS_CERTS_C
JMF 12:0071cb144c7a 88 #define POLARSSL_CERTS_C MBEDTLS_CERTS_C
JMF 12:0071cb144c7a 89 #endif
JMF 12:0071cb144c7a 90 #if defined MBEDTLS_CIPHER_C
JMF 12:0071cb144c7a 91 #define POLARSSL_CIPHER_C MBEDTLS_CIPHER_C
JMF 12:0071cb144c7a 92 #endif
JMF 12:0071cb144c7a 93 #if defined MBEDTLS_CIPHER_MODE_CBC
JMF 12:0071cb144c7a 94 #define POLARSSL_CIPHER_MODE_CBC MBEDTLS_CIPHER_MODE_CBC
JMF 12:0071cb144c7a 95 #endif
JMF 12:0071cb144c7a 96 #if defined MBEDTLS_CIPHER_MODE_CFB
JMF 12:0071cb144c7a 97 #define POLARSSL_CIPHER_MODE_CFB MBEDTLS_CIPHER_MODE_CFB
JMF 12:0071cb144c7a 98 #endif
JMF 12:0071cb144c7a 99 #if defined MBEDTLS_CIPHER_MODE_CTR
JMF 12:0071cb144c7a 100 #define POLARSSL_CIPHER_MODE_CTR MBEDTLS_CIPHER_MODE_CTR
JMF 12:0071cb144c7a 101 #endif
JMF 12:0071cb144c7a 102 #if defined MBEDTLS_CIPHER_NULL_CIPHER
JMF 12:0071cb144c7a 103 #define POLARSSL_CIPHER_NULL_CIPHER MBEDTLS_CIPHER_NULL_CIPHER
JMF 12:0071cb144c7a 104 #endif
JMF 12:0071cb144c7a 105 #if defined MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS
JMF 12:0071cb144c7a 106 #define POLARSSL_CIPHER_PADDING_ONE_AND_ZEROS MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS
JMF 12:0071cb144c7a 107 #endif
JMF 12:0071cb144c7a 108 #if defined MBEDTLS_CIPHER_PADDING_PKCS7
JMF 12:0071cb144c7a 109 #define POLARSSL_CIPHER_PADDING_PKCS7 MBEDTLS_CIPHER_PADDING_PKCS7
JMF 12:0071cb144c7a 110 #endif
JMF 12:0071cb144c7a 111 #if defined MBEDTLS_CIPHER_PADDING_ZEROS
JMF 12:0071cb144c7a 112 #define POLARSSL_CIPHER_PADDING_ZEROS MBEDTLS_CIPHER_PADDING_ZEROS
JMF 12:0071cb144c7a 113 #endif
JMF 12:0071cb144c7a 114 #if defined MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN
JMF 12:0071cb144c7a 115 #define POLARSSL_CIPHER_PADDING_ZEROS_AND_LEN MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN
JMF 12:0071cb144c7a 116 #endif
JMF 12:0071cb144c7a 117 #if defined MBEDTLS_CTR_DRBG_C
JMF 12:0071cb144c7a 118 #define POLARSSL_CTR_DRBG_C MBEDTLS_CTR_DRBG_C
JMF 12:0071cb144c7a 119 #endif
JMF 12:0071cb144c7a 120 #if defined MBEDTLS_DEBUG_C
JMF 12:0071cb144c7a 121 #define POLARSSL_DEBUG_C MBEDTLS_DEBUG_C
JMF 12:0071cb144c7a 122 #endif
JMF 12:0071cb144c7a 123 #if defined MBEDTLS_DEPRECATED_REMOVED
JMF 12:0071cb144c7a 124 #define POLARSSL_DEPRECATED_REMOVED MBEDTLS_DEPRECATED_REMOVED
JMF 12:0071cb144c7a 125 #endif
JMF 12:0071cb144c7a 126 #if defined MBEDTLS_DEPRECATED_WARNING
JMF 12:0071cb144c7a 127 #define POLARSSL_DEPRECATED_WARNING MBEDTLS_DEPRECATED_WARNING
JMF 12:0071cb144c7a 128 #endif
JMF 12:0071cb144c7a 129 #if defined MBEDTLS_DES_ALT
JMF 12:0071cb144c7a 130 #define POLARSSL_DES_ALT MBEDTLS_DES_ALT
JMF 12:0071cb144c7a 131 #endif
JMF 12:0071cb144c7a 132 #if defined MBEDTLS_DES_C
JMF 12:0071cb144c7a 133 #define POLARSSL_DES_C MBEDTLS_DES_C
JMF 12:0071cb144c7a 134 #endif
JMF 12:0071cb144c7a 135 #if defined MBEDTLS_DHM_C
JMF 12:0071cb144c7a 136 #define POLARSSL_DHM_C MBEDTLS_DHM_C
JMF 12:0071cb144c7a 137 #endif
JMF 12:0071cb144c7a 138 #if defined MBEDTLS_ECDH_C
JMF 12:0071cb144c7a 139 #define POLARSSL_ECDH_C MBEDTLS_ECDH_C
JMF 12:0071cb144c7a 140 #endif
JMF 12:0071cb144c7a 141 #if defined MBEDTLS_ECDSA_C
JMF 12:0071cb144c7a 142 #define POLARSSL_ECDSA_C MBEDTLS_ECDSA_C
JMF 12:0071cb144c7a 143 #endif
JMF 12:0071cb144c7a 144 #if defined MBEDTLS_ECDSA_DETERMINISTIC
JMF 12:0071cb144c7a 145 #define POLARSSL_ECDSA_DETERMINISTIC MBEDTLS_ECDSA_DETERMINISTIC
JMF 12:0071cb144c7a 146 #endif
JMF 12:0071cb144c7a 147 #if defined MBEDTLS_ECP_C
JMF 12:0071cb144c7a 148 #define POLARSSL_ECP_C MBEDTLS_ECP_C
JMF 12:0071cb144c7a 149 #endif
JMF 12:0071cb144c7a 150 #if defined MBEDTLS_ECP_DP_BP256R1_ENABLED
JMF 12:0071cb144c7a 151 #define POLARSSL_ECP_DP_BP256R1_ENABLED MBEDTLS_ECP_DP_BP256R1_ENABLED
JMF 12:0071cb144c7a 152 #endif
JMF 12:0071cb144c7a 153 #if defined MBEDTLS_ECP_DP_BP384R1_ENABLED
JMF 12:0071cb144c7a 154 #define POLARSSL_ECP_DP_BP384R1_ENABLED MBEDTLS_ECP_DP_BP384R1_ENABLED
JMF 12:0071cb144c7a 155 #endif
JMF 12:0071cb144c7a 156 #if defined MBEDTLS_ECP_DP_BP512R1_ENABLED
JMF 12:0071cb144c7a 157 #define POLARSSL_ECP_DP_BP512R1_ENABLED MBEDTLS_ECP_DP_BP512R1_ENABLED
JMF 12:0071cb144c7a 158 #endif
JMF 12:0071cb144c7a 159 #if defined MBEDTLS_ECP_DP_CURVE25519_ENABLED
JMF 12:0071cb144c7a 160 #define POLARSSL_ECP_DP_M255_ENABLED MBEDTLS_ECP_DP_CURVE25519_ENABLED
JMF 12:0071cb144c7a 161 #endif
JMF 12:0071cb144c7a 162 #if defined MBEDTLS_ECP_DP_SECP192K1_ENABLED
JMF 12:0071cb144c7a 163 #define POLARSSL_ECP_DP_SECP192K1_ENABLED MBEDTLS_ECP_DP_SECP192K1_ENABLED
JMF 12:0071cb144c7a 164 #endif
JMF 12:0071cb144c7a 165 #if defined MBEDTLS_ECP_DP_SECP192R1_ENABLED
JMF 12:0071cb144c7a 166 #define POLARSSL_ECP_DP_SECP192R1_ENABLED MBEDTLS_ECP_DP_SECP192R1_ENABLED
JMF 12:0071cb144c7a 167 #endif
JMF 12:0071cb144c7a 168 #if defined MBEDTLS_ECP_DP_SECP224K1_ENABLED
JMF 12:0071cb144c7a 169 #define POLARSSL_ECP_DP_SECP224K1_ENABLED MBEDTLS_ECP_DP_SECP224K1_ENABLED
JMF 12:0071cb144c7a 170 #endif
JMF 12:0071cb144c7a 171 #if defined MBEDTLS_ECP_DP_SECP224R1_ENABLED
JMF 12:0071cb144c7a 172 #define POLARSSL_ECP_DP_SECP224R1_ENABLED MBEDTLS_ECP_DP_SECP224R1_ENABLED
JMF 12:0071cb144c7a 173 #endif
JMF 12:0071cb144c7a 174 #if defined MBEDTLS_ECP_DP_SECP256K1_ENABLED
JMF 12:0071cb144c7a 175 #define POLARSSL_ECP_DP_SECP256K1_ENABLED MBEDTLS_ECP_DP_SECP256K1_ENABLED
JMF 12:0071cb144c7a 176 #endif
JMF 12:0071cb144c7a 177 #if defined MBEDTLS_ECP_DP_SECP256R1_ENABLED
JMF 12:0071cb144c7a 178 #define POLARSSL_ECP_DP_SECP256R1_ENABLED MBEDTLS_ECP_DP_SECP256R1_ENABLED
JMF 12:0071cb144c7a 179 #endif
JMF 12:0071cb144c7a 180 #if defined MBEDTLS_ECP_DP_SECP384R1_ENABLED
JMF 12:0071cb144c7a 181 #define POLARSSL_ECP_DP_SECP384R1_ENABLED MBEDTLS_ECP_DP_SECP384R1_ENABLED
JMF 12:0071cb144c7a 182 #endif
JMF 12:0071cb144c7a 183 #if defined MBEDTLS_ECP_DP_SECP521R1_ENABLED
JMF 12:0071cb144c7a 184 #define POLARSSL_ECP_DP_SECP521R1_ENABLED MBEDTLS_ECP_DP_SECP521R1_ENABLED
JMF 12:0071cb144c7a 185 #endif
JMF 12:0071cb144c7a 186 #if defined MBEDTLS_ECP_FIXED_POINT_OPTIM
JMF 12:0071cb144c7a 187 #define POLARSSL_ECP_FIXED_POINT_OPTIM MBEDTLS_ECP_FIXED_POINT_OPTIM
JMF 12:0071cb144c7a 188 #endif
JMF 12:0071cb144c7a 189 #if defined MBEDTLS_ECP_MAX_BITS
JMF 12:0071cb144c7a 190 #define POLARSSL_ECP_MAX_BITS MBEDTLS_ECP_MAX_BITS
JMF 12:0071cb144c7a 191 #endif
JMF 12:0071cb144c7a 192 #if defined MBEDTLS_ECP_NIST_OPTIM
JMF 12:0071cb144c7a 193 #define POLARSSL_ECP_NIST_OPTIM MBEDTLS_ECP_NIST_OPTIM
JMF 12:0071cb144c7a 194 #endif
JMF 12:0071cb144c7a 195 #if defined MBEDTLS_ECP_WINDOW_SIZE
JMF 12:0071cb144c7a 196 #define POLARSSL_ECP_WINDOW_SIZE MBEDTLS_ECP_WINDOW_SIZE
JMF 12:0071cb144c7a 197 #endif
JMF 12:0071cb144c7a 198 #if defined MBEDTLS_ENABLE_WEAK_CIPHERSUITES
JMF 12:0071cb144c7a 199 #define POLARSSL_ENABLE_WEAK_CIPHERSUITES MBEDTLS_ENABLE_WEAK_CIPHERSUITES
JMF 12:0071cb144c7a 200 #endif
JMF 12:0071cb144c7a 201 #if defined MBEDTLS_ENTROPY_C
JMF 12:0071cb144c7a 202 #define POLARSSL_ENTROPY_C MBEDTLS_ENTROPY_C
JMF 12:0071cb144c7a 203 #endif
JMF 12:0071cb144c7a 204 #if defined MBEDTLS_ENTROPY_FORCE_SHA256
JMF 12:0071cb144c7a 205 #define POLARSSL_ENTROPY_FORCE_SHA256 MBEDTLS_ENTROPY_FORCE_SHA256
JMF 12:0071cb144c7a 206 #endif
JMF 12:0071cb144c7a 207 #if defined MBEDTLS_ERROR_C
JMF 12:0071cb144c7a 208 #define POLARSSL_ERROR_C MBEDTLS_ERROR_C
JMF 12:0071cb144c7a 209 #endif
JMF 12:0071cb144c7a 210 #if defined MBEDTLS_ERROR_STRERROR_BC
JMF 12:0071cb144c7a 211 #define POLARSSL_ERROR_STRERROR_BC MBEDTLS_ERROR_STRERROR_BC
JMF 12:0071cb144c7a 212 #endif
JMF 12:0071cb144c7a 213 #if defined MBEDTLS_ERROR_STRERROR_DUMMY
JMF 12:0071cb144c7a 214 #define POLARSSL_ERROR_STRERROR_DUMMY MBEDTLS_ERROR_STRERROR_DUMMY
JMF 12:0071cb144c7a 215 #endif
JMF 12:0071cb144c7a 216 #if defined MBEDTLS_FS_IO
JMF 12:0071cb144c7a 217 #define POLARSSL_FS_IO MBEDTLS_FS_IO
JMF 12:0071cb144c7a 218 #endif
JMF 12:0071cb144c7a 219 #if defined MBEDTLS_GCM_C
JMF 12:0071cb144c7a 220 #define POLARSSL_GCM_C MBEDTLS_GCM_C
JMF 12:0071cb144c7a 221 #endif
JMF 12:0071cb144c7a 222 #if defined MBEDTLS_GENPRIME
JMF 12:0071cb144c7a 223 #define POLARSSL_GENPRIME MBEDTLS_GENPRIME
JMF 12:0071cb144c7a 224 #endif
JMF 12:0071cb144c7a 225 #if defined MBEDTLS_HAVEGE_C
JMF 12:0071cb144c7a 226 #define POLARSSL_HAVEGE_C MBEDTLS_HAVEGE_C
JMF 12:0071cb144c7a 227 #endif
JMF 12:0071cb144c7a 228 #if defined MBEDTLS_HAVE_ASM
JMF 12:0071cb144c7a 229 #define POLARSSL_HAVE_ASM MBEDTLS_HAVE_ASM
JMF 12:0071cb144c7a 230 #endif
JMF 12:0071cb144c7a 231 #if defined MBEDTLS_HAVE_SSE2
JMF 12:0071cb144c7a 232 #define POLARSSL_HAVE_SSE2 MBEDTLS_HAVE_SSE2
JMF 12:0071cb144c7a 233 #endif
JMF 12:0071cb144c7a 234 #if defined MBEDTLS_HAVE_TIME
JMF 12:0071cb144c7a 235 #define POLARSSL_HAVE_TIME MBEDTLS_HAVE_TIME
JMF 12:0071cb144c7a 236 #endif
JMF 12:0071cb144c7a 237 #if defined MBEDTLS_HMAC_DRBG_C
JMF 12:0071cb144c7a 238 #define POLARSSL_HMAC_DRBG_C MBEDTLS_HMAC_DRBG_C
JMF 12:0071cb144c7a 239 #endif
JMF 12:0071cb144c7a 240 #if defined MBEDTLS_HMAC_DRBG_MAX_INPUT
JMF 12:0071cb144c7a 241 #define POLARSSL_HMAC_DRBG_MAX_INPUT MBEDTLS_HMAC_DRBG_MAX_INPUT
JMF 12:0071cb144c7a 242 #endif
JMF 12:0071cb144c7a 243 #if defined MBEDTLS_HMAC_DRBG_MAX_REQUEST
JMF 12:0071cb144c7a 244 #define POLARSSL_HMAC_DRBG_MAX_REQUEST MBEDTLS_HMAC_DRBG_MAX_REQUEST
JMF 12:0071cb144c7a 245 #endif
JMF 12:0071cb144c7a 246 #if defined MBEDTLS_HMAC_DRBG_MAX_SEED_INPUT
JMF 12:0071cb144c7a 247 #define POLARSSL_HMAC_DRBG_MAX_SEED_INPUT MBEDTLS_HMAC_DRBG_MAX_SEED_INPUT
JMF 12:0071cb144c7a 248 #endif
JMF 12:0071cb144c7a 249 #if defined MBEDTLS_HMAC_DRBG_RESEED_INTERVAL
JMF 12:0071cb144c7a 250 #define POLARSSL_HMAC_DRBG_RESEED_INTERVAL MBEDTLS_HMAC_DRBG_RESEED_INTERVAL
JMF 12:0071cb144c7a 251 #endif
JMF 12:0071cb144c7a 252 #if defined MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED
JMF 12:0071cb144c7a 253 #define POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED
JMF 12:0071cb144c7a 254 #endif
JMF 12:0071cb144c7a 255 #if defined MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
JMF 12:0071cb144c7a 256 #define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED
JMF 12:0071cb144c7a 257 #endif
JMF 12:0071cb144c7a 258 #if defined MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
JMF 12:0071cb144c7a 259 #define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
JMF 12:0071cb144c7a 260 #endif
JMF 12:0071cb144c7a 261 #if defined MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
JMF 12:0071cb144c7a 262 #define POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED
JMF 12:0071cb144c7a 263 #endif
JMF 12:0071cb144c7a 264 #if defined MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
JMF 12:0071cb144c7a 265 #define POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
JMF 12:0071cb144c7a 266 #endif
JMF 12:0071cb144c7a 267 #if defined MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
JMF 12:0071cb144c7a 268 #define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
JMF 12:0071cb144c7a 269 #endif
JMF 12:0071cb144c7a 270 #if defined MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
JMF 12:0071cb144c7a 271 #define POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED
JMF 12:0071cb144c7a 272 #endif
JMF 12:0071cb144c7a 273 #if defined MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
JMF 12:0071cb144c7a 274 #define POLARSSL_KEY_EXCHANGE_PSK_ENABLED MBEDTLS_KEY_EXCHANGE_PSK_ENABLED
JMF 12:0071cb144c7a 275 #endif
JMF 12:0071cb144c7a 276 #if defined MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
JMF 12:0071cb144c7a 277 #define POLARSSL_KEY_EXCHANGE_RSA_ENABLED MBEDTLS_KEY_EXCHANGE_RSA_ENABLED
JMF 12:0071cb144c7a 278 #endif
JMF 12:0071cb144c7a 279 #if defined MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
JMF 12:0071cb144c7a 280 #define POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED
JMF 12:0071cb144c7a 281 #endif
JMF 12:0071cb144c7a 282 #if defined MBEDTLS_MD2_ALT
JMF 12:0071cb144c7a 283 #define POLARSSL_MD2_ALT MBEDTLS_MD2_ALT
JMF 12:0071cb144c7a 284 #endif
JMF 12:0071cb144c7a 285 #if defined MBEDTLS_MD2_C
JMF 12:0071cb144c7a 286 #define POLARSSL_MD2_C MBEDTLS_MD2_C
JMF 12:0071cb144c7a 287 #endif
JMF 12:0071cb144c7a 288 #if defined MBEDTLS_MD2_PROCESS_ALT
JMF 12:0071cb144c7a 289 #define POLARSSL_MD2_PROCESS_ALT MBEDTLS_MD2_PROCESS_ALT
JMF 12:0071cb144c7a 290 #endif
JMF 12:0071cb144c7a 291 #if defined MBEDTLS_MD4_ALT
JMF 12:0071cb144c7a 292 #define POLARSSL_MD4_ALT MBEDTLS_MD4_ALT
JMF 12:0071cb144c7a 293 #endif
JMF 12:0071cb144c7a 294 #if defined MBEDTLS_MD4_C
JMF 12:0071cb144c7a 295 #define POLARSSL_MD4_C MBEDTLS_MD4_C
JMF 12:0071cb144c7a 296 #endif
JMF 12:0071cb144c7a 297 #if defined MBEDTLS_MD4_PROCESS_ALT
JMF 12:0071cb144c7a 298 #define POLARSSL_MD4_PROCESS_ALT MBEDTLS_MD4_PROCESS_ALT
JMF 12:0071cb144c7a 299 #endif
JMF 12:0071cb144c7a 300 #if defined MBEDTLS_MD5_ALT
JMF 12:0071cb144c7a 301 #define POLARSSL_MD5_ALT MBEDTLS_MD5_ALT
JMF 12:0071cb144c7a 302 #endif
JMF 12:0071cb144c7a 303 #if defined MBEDTLS_MD5_C
JMF 12:0071cb144c7a 304 #define POLARSSL_MD5_C MBEDTLS_MD5_C
JMF 12:0071cb144c7a 305 #endif
JMF 12:0071cb144c7a 306 #if defined MBEDTLS_MD5_PROCESS_ALT
JMF 12:0071cb144c7a 307 #define POLARSSL_MD5_PROCESS_ALT MBEDTLS_MD5_PROCESS_ALT
JMF 12:0071cb144c7a 308 #endif
JMF 12:0071cb144c7a 309 #if defined MBEDTLS_MD_C
JMF 12:0071cb144c7a 310 #define POLARSSL_MD_C MBEDTLS_MD_C
JMF 12:0071cb144c7a 311 #endif
JMF 12:0071cb144c7a 312 #if defined MBEDTLS_MEMORY_ALIGN_MULTIPLE
JMF 12:0071cb144c7a 313 #define POLARSSL_MEMORY_ALIGN_MULTIPLE MBEDTLS_MEMORY_ALIGN_MULTIPLE
JMF 12:0071cb144c7a 314 #endif
JMF 12:0071cb144c7a 315 #if defined MBEDTLS_MEMORY_BACKTRACE
JMF 12:0071cb144c7a 316 #define POLARSSL_MEMORY_BACKTRACE MBEDTLS_MEMORY_BACKTRACE
JMF 12:0071cb144c7a 317 #endif
JMF 12:0071cb144c7a 318 #if defined MBEDTLS_MEMORY_BUFFER_ALLOC_C
JMF 12:0071cb144c7a 319 #define POLARSSL_MEMORY_BUFFER_ALLOC_C MBEDTLS_MEMORY_BUFFER_ALLOC_C
JMF 12:0071cb144c7a 320 #endif
JMF 12:0071cb144c7a 321 #if defined MBEDTLS_MEMORY_C
JMF 12:0071cb144c7a 322 #define POLARSSL_MEMORY_C MBEDTLS_MEMORY_C
JMF 12:0071cb144c7a 323 #endif
JMF 12:0071cb144c7a 324 #if defined MBEDTLS_MEMORY_DEBUG
JMF 12:0071cb144c7a 325 #define POLARSSL_MEMORY_DEBUG MBEDTLS_MEMORY_DEBUG
JMF 12:0071cb144c7a 326 #endif
JMF 12:0071cb144c7a 327 #if defined MBEDTLS_MPI_MAX_SIZE
JMF 12:0071cb144c7a 328 #define POLARSSL_MPI_MAX_SIZE MBEDTLS_MPI_MAX_SIZE
JMF 12:0071cb144c7a 329 #endif
JMF 12:0071cb144c7a 330 #if defined MBEDTLS_MPI_WINDOW_SIZE
JMF 12:0071cb144c7a 331 #define POLARSSL_MPI_WINDOW_SIZE MBEDTLS_MPI_WINDOW_SIZE
JMF 12:0071cb144c7a 332 #endif
JMF 12:0071cb144c7a 333 #if defined MBEDTLS_NET_C
JMF 12:0071cb144c7a 334 #define POLARSSL_NET_C MBEDTLS_NET_C
JMF 12:0071cb144c7a 335 #endif
JMF 12:0071cb144c7a 336 #if defined MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
JMF 12:0071cb144c7a 337 #define POLARSSL_NO_DEFAULT_ENTROPY_SOURCES MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES
JMF 12:0071cb144c7a 338 #endif
JMF 12:0071cb144c7a 339 #if defined MBEDTLS_NO_PLATFORM_ENTROPY
JMF 12:0071cb144c7a 340 #define POLARSSL_NO_PLATFORM_ENTROPY MBEDTLS_NO_PLATFORM_ENTROPY
JMF 12:0071cb144c7a 341 #endif
JMF 12:0071cb144c7a 342 #if defined MBEDTLS_OID_C
JMF 12:0071cb144c7a 343 #define POLARSSL_OID_C MBEDTLS_OID_C
JMF 12:0071cb144c7a 344 #endif
JMF 12:0071cb144c7a 345 #if defined MBEDTLS_PADLOCK_C
JMF 12:0071cb144c7a 346 #define POLARSSL_PADLOCK_C MBEDTLS_PADLOCK_C
JMF 12:0071cb144c7a 347 #endif
JMF 12:0071cb144c7a 348 #if defined MBEDTLS_PBKDF2_C
JMF 12:0071cb144c7a 349 #define POLARSSL_PBKDF2_C MBEDTLS_PBKDF2_C
JMF 12:0071cb144c7a 350 #endif
JMF 12:0071cb144c7a 351 #if defined MBEDTLS_PEM_PARSE_C
JMF 12:0071cb144c7a 352 #define POLARSSL_PEM_PARSE_C MBEDTLS_PEM_PARSE_C
JMF 12:0071cb144c7a 353 #endif
JMF 12:0071cb144c7a 354 #if defined MBEDTLS_PEM_WRITE_C
JMF 12:0071cb144c7a 355 #define POLARSSL_PEM_WRITE_C MBEDTLS_PEM_WRITE_C
JMF 12:0071cb144c7a 356 #endif
JMF 12:0071cb144c7a 357 #if defined MBEDTLS_PKCS11_C
JMF 12:0071cb144c7a 358 #define POLARSSL_PKCS11_C MBEDTLS_PKCS11_C
JMF 12:0071cb144c7a 359 #endif
JMF 12:0071cb144c7a 360 #if defined MBEDTLS_PKCS12_C
JMF 12:0071cb144c7a 361 #define POLARSSL_PKCS12_C MBEDTLS_PKCS12_C
JMF 12:0071cb144c7a 362 #endif
JMF 12:0071cb144c7a 363 #if defined MBEDTLS_PKCS1_V15
JMF 12:0071cb144c7a 364 #define POLARSSL_PKCS1_V15 MBEDTLS_PKCS1_V15
JMF 12:0071cb144c7a 365 #endif
JMF 12:0071cb144c7a 366 #if defined MBEDTLS_PKCS1_V21
JMF 12:0071cb144c7a 367 #define POLARSSL_PKCS1_V21 MBEDTLS_PKCS1_V21
JMF 12:0071cb144c7a 368 #endif
JMF 12:0071cb144c7a 369 #if defined MBEDTLS_PKCS5_C
JMF 12:0071cb144c7a 370 #define POLARSSL_PKCS5_C MBEDTLS_PKCS5_C
JMF 12:0071cb144c7a 371 #endif
JMF 12:0071cb144c7a 372 #if defined MBEDTLS_PK_C
JMF 12:0071cb144c7a 373 #define POLARSSL_PK_C MBEDTLS_PK_C
JMF 12:0071cb144c7a 374 #endif
JMF 12:0071cb144c7a 375 #if defined MBEDTLS_PK_PARSE_C
JMF 12:0071cb144c7a 376 #define POLARSSL_PK_PARSE_C MBEDTLS_PK_PARSE_C
JMF 12:0071cb144c7a 377 #endif
JMF 12:0071cb144c7a 378 #if defined MBEDTLS_PK_PARSE_EC_EXTENDED
JMF 12:0071cb144c7a 379 #define POLARSSL_PK_PARSE_EC_EXTENDED MBEDTLS_PK_PARSE_EC_EXTENDED
JMF 12:0071cb144c7a 380 #endif
JMF 12:0071cb144c7a 381 #if defined MBEDTLS_PK_RSA_ALT_SUPPORT
JMF 12:0071cb144c7a 382 #define POLARSSL_PK_RSA_ALT_SUPPORT MBEDTLS_PK_RSA_ALT_SUPPORT
JMF 12:0071cb144c7a 383 #endif
JMF 12:0071cb144c7a 384 #if defined MBEDTLS_PK_WRITE_C
JMF 12:0071cb144c7a 385 #define POLARSSL_PK_WRITE_C MBEDTLS_PK_WRITE_C
JMF 12:0071cb144c7a 386 #endif
JMF 12:0071cb144c7a 387 #if defined MBEDTLS_PLATFORM_C
JMF 12:0071cb144c7a 388 #define POLARSSL_PLATFORM_C MBEDTLS_PLATFORM_C
JMF 12:0071cb144c7a 389 #endif
JMF 12:0071cb144c7a 390 #if defined MBEDTLS_PLATFORM_EXIT_ALT
JMF 12:0071cb144c7a 391 #define POLARSSL_PLATFORM_EXIT_ALT MBEDTLS_PLATFORM_EXIT_ALT
JMF 12:0071cb144c7a 392 #endif
JMF 12:0071cb144c7a 393 #if defined MBEDTLS_PLATFORM_EXIT_MACRO
JMF 12:0071cb144c7a 394 #define POLARSSL_PLATFORM_EXIT_MACRO MBEDTLS_PLATFORM_EXIT_MACRO
JMF 12:0071cb144c7a 395 #endif
JMF 12:0071cb144c7a 396 #if defined MBEDTLS_PLATFORM_FPRINTF_ALT
JMF 12:0071cb144c7a 397 #define POLARSSL_PLATFORM_FPRINTF_ALT MBEDTLS_PLATFORM_FPRINTF_ALT
JMF 12:0071cb144c7a 398 #endif
JMF 12:0071cb144c7a 399 #if defined MBEDTLS_PLATFORM_FPRINTF_MACRO
JMF 12:0071cb144c7a 400 #define POLARSSL_PLATFORM_FPRINTF_MACRO MBEDTLS_PLATFORM_FPRINTF_MACRO
JMF 12:0071cb144c7a 401 #endif
JMF 12:0071cb144c7a 402 #if defined MBEDTLS_PLATFORM_FREE_MACRO
JMF 12:0071cb144c7a 403 #define POLARSSL_PLATFORM_FREE_MACRO MBEDTLS_PLATFORM_FREE_MACRO
JMF 12:0071cb144c7a 404 #endif
JMF 12:0071cb144c7a 405 #if defined MBEDTLS_PLATFORM_MEMORY
JMF 12:0071cb144c7a 406 #define POLARSSL_PLATFORM_MEMORY MBEDTLS_PLATFORM_MEMORY
JMF 12:0071cb144c7a 407 #endif
JMF 12:0071cb144c7a 408 #if defined MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
JMF 12:0071cb144c7a 409 #define POLARSSL_PLATFORM_NO_STD_FUNCTIONS MBEDTLS_PLATFORM_NO_STD_FUNCTIONS
JMF 12:0071cb144c7a 410 #endif
JMF 12:0071cb144c7a 411 #if defined MBEDTLS_PLATFORM_PRINTF_ALT
JMF 12:0071cb144c7a 412 #define POLARSSL_PLATFORM_PRINTF_ALT MBEDTLS_PLATFORM_PRINTF_ALT
JMF 12:0071cb144c7a 413 #endif
JMF 12:0071cb144c7a 414 #if defined MBEDTLS_PLATFORM_PRINTF_MACRO
JMF 12:0071cb144c7a 415 #define POLARSSL_PLATFORM_PRINTF_MACRO MBEDTLS_PLATFORM_PRINTF_MACRO
JMF 12:0071cb144c7a 416 #endif
JMF 12:0071cb144c7a 417 #if defined MBEDTLS_PLATFORM_SNPRINTF_ALT
JMF 12:0071cb144c7a 418 #define POLARSSL_PLATFORM_SNPRINTF_ALT MBEDTLS_PLATFORM_SNPRINTF_ALT
JMF 12:0071cb144c7a 419 #endif
JMF 12:0071cb144c7a 420 #if defined MBEDTLS_PLATFORM_SNPRINTF_MACRO
JMF 12:0071cb144c7a 421 #define POLARSSL_PLATFORM_SNPRINTF_MACRO MBEDTLS_PLATFORM_SNPRINTF_MACRO
JMF 12:0071cb144c7a 422 #endif
JMF 12:0071cb144c7a 423 #if defined MBEDTLS_PLATFORM_STD_EXIT
JMF 12:0071cb144c7a 424 #define POLARSSL_PLATFORM_STD_EXIT MBEDTLS_PLATFORM_STD_EXIT
JMF 12:0071cb144c7a 425 #endif
JMF 12:0071cb144c7a 426 #if defined MBEDTLS_PLATFORM_STD_FPRINTF
JMF 12:0071cb144c7a 427 #define POLARSSL_PLATFORM_STD_FPRINTF MBEDTLS_PLATFORM_STD_FPRINTF
JMF 12:0071cb144c7a 428 #endif
JMF 12:0071cb144c7a 429 #if defined MBEDTLS_PLATFORM_STD_FREE
JMF 12:0071cb144c7a 430 #define POLARSSL_PLATFORM_STD_FREE MBEDTLS_PLATFORM_STD_FREE
JMF 12:0071cb144c7a 431 #endif
JMF 12:0071cb144c7a 432 #if defined MBEDTLS_PLATFORM_STD_MALLOC
JMF 12:0071cb144c7a 433 #define POLARSSL_PLATFORM_STD_MALLOC MBEDTLS_PLATFORM_STD_MALLOC
JMF 12:0071cb144c7a 434 #endif
JMF 12:0071cb144c7a 435 #if defined MBEDTLS_PLATFORM_STD_MEM_HDR
JMF 12:0071cb144c7a 436 #define POLARSSL_PLATFORM_STD_MEM_HDR MBEDTLS_PLATFORM_STD_MEM_HDR
JMF 12:0071cb144c7a 437 #endif
JMF 12:0071cb144c7a 438 #if defined MBEDTLS_PLATFORM_STD_PRINTF
JMF 12:0071cb144c7a 439 #define POLARSSL_PLATFORM_STD_PRINTF MBEDTLS_PLATFORM_STD_PRINTF
JMF 12:0071cb144c7a 440 #endif
JMF 12:0071cb144c7a 441 #if defined MBEDTLS_PLATFORM_STD_SNPRINTF
JMF 12:0071cb144c7a 442 #define POLARSSL_PLATFORM_STD_SNPRINTF MBEDTLS_PLATFORM_STD_SNPRINTF
JMF 12:0071cb144c7a 443 #endif
JMF 12:0071cb144c7a 444 #if defined MBEDTLS_PSK_MAX_LEN
JMF 12:0071cb144c7a 445 #define POLARSSL_PSK_MAX_LEN MBEDTLS_PSK_MAX_LEN
JMF 12:0071cb144c7a 446 #endif
JMF 12:0071cb144c7a 447 #if defined MBEDTLS_REMOVE_ARC4_CIPHERSUITES
JMF 12:0071cb144c7a 448 #define POLARSSL_REMOVE_ARC4_CIPHERSUITES MBEDTLS_REMOVE_ARC4_CIPHERSUITES
JMF 12:0071cb144c7a 449 #endif
JMF 12:0071cb144c7a 450 #if defined MBEDTLS_RIPEMD160_ALT
JMF 12:0071cb144c7a 451 #define POLARSSL_RIPEMD160_ALT MBEDTLS_RIPEMD160_ALT
JMF 12:0071cb144c7a 452 #endif
JMF 12:0071cb144c7a 453 #if defined MBEDTLS_RIPEMD160_C
JMF 12:0071cb144c7a 454 #define POLARSSL_RIPEMD160_C MBEDTLS_RIPEMD160_C
JMF 12:0071cb144c7a 455 #endif
JMF 12:0071cb144c7a 456 #if defined MBEDTLS_RIPEMD160_PROCESS_ALT
JMF 12:0071cb144c7a 457 #define POLARSSL_RIPEMD160_PROCESS_ALT MBEDTLS_RIPEMD160_PROCESS_ALT
JMF 12:0071cb144c7a 458 #endif
JMF 12:0071cb144c7a 459 #if defined MBEDTLS_RSA_C
JMF 12:0071cb144c7a 460 #define POLARSSL_RSA_C MBEDTLS_RSA_C
JMF 12:0071cb144c7a 461 #endif
JMF 12:0071cb144c7a 462 #if defined MBEDTLS_RSA_NO_CRT
JMF 12:0071cb144c7a 463 #define POLARSSL_RSA_NO_CRT MBEDTLS_RSA_NO_CRT
JMF 12:0071cb144c7a 464 #endif
JMF 12:0071cb144c7a 465 #if defined MBEDTLS_SELF_TEST
JMF 12:0071cb144c7a 466 #define POLARSSL_SELF_TEST MBEDTLS_SELF_TEST
JMF 12:0071cb144c7a 467 #endif
JMF 12:0071cb144c7a 468 #if defined MBEDTLS_SHA1_ALT
JMF 12:0071cb144c7a 469 #define POLARSSL_SHA1_ALT MBEDTLS_SHA1_ALT
JMF 12:0071cb144c7a 470 #endif
JMF 12:0071cb144c7a 471 #if defined MBEDTLS_SHA1_C
JMF 12:0071cb144c7a 472 #define POLARSSL_SHA1_C MBEDTLS_SHA1_C
JMF 12:0071cb144c7a 473 #endif
JMF 12:0071cb144c7a 474 #if defined MBEDTLS_SHA1_PROCESS_ALT
JMF 12:0071cb144c7a 475 #define POLARSSL_SHA1_PROCESS_ALT MBEDTLS_SHA1_PROCESS_ALT
JMF 12:0071cb144c7a 476 #endif
JMF 12:0071cb144c7a 477 #if defined MBEDTLS_SHA256_ALT
JMF 12:0071cb144c7a 478 #define POLARSSL_SHA256_ALT MBEDTLS_SHA256_ALT
JMF 12:0071cb144c7a 479 #endif
JMF 12:0071cb144c7a 480 #if defined MBEDTLS_SHA256_C
JMF 12:0071cb144c7a 481 #define POLARSSL_SHA256_C MBEDTLS_SHA256_C
JMF 12:0071cb144c7a 482 #endif
JMF 12:0071cb144c7a 483 #if defined MBEDTLS_SHA256_PROCESS_ALT
JMF 12:0071cb144c7a 484 #define POLARSSL_SHA256_PROCESS_ALT MBEDTLS_SHA256_PROCESS_ALT
JMF 12:0071cb144c7a 485 #endif
JMF 12:0071cb144c7a 486 #if defined MBEDTLS_SHA512_ALT
JMF 12:0071cb144c7a 487 #define POLARSSL_SHA512_ALT MBEDTLS_SHA512_ALT
JMF 12:0071cb144c7a 488 #endif
JMF 12:0071cb144c7a 489 #if defined MBEDTLS_SHA512_C
JMF 12:0071cb144c7a 490 #define POLARSSL_SHA512_C MBEDTLS_SHA512_C
JMF 12:0071cb144c7a 491 #endif
JMF 12:0071cb144c7a 492 #if defined MBEDTLS_SHA512_PROCESS_ALT
JMF 12:0071cb144c7a 493 #define POLARSSL_SHA512_PROCESS_ALT MBEDTLS_SHA512_PROCESS_ALT
JMF 12:0071cb144c7a 494 #endif
JMF 12:0071cb144c7a 495 #if defined MBEDTLS_SSL_AEAD_RANDOM_IV
JMF 12:0071cb144c7a 496 #define POLARSSL_SSL_AEAD_RANDOM_IV MBEDTLS_SSL_AEAD_RANDOM_IV
JMF 12:0071cb144c7a 497 #endif
JMF 12:0071cb144c7a 498 #if defined MBEDTLS_SSL_ALERT_MESSAGES
JMF 12:0071cb144c7a 499 #define POLARSSL_SSL_ALERT_MESSAGES MBEDTLS_SSL_ALERT_MESSAGES
JMF 12:0071cb144c7a 500 #endif
JMF 12:0071cb144c7a 501 #if defined MBEDTLS_SSL_ALL_ALERT_MESSAGES
JMF 12:0071cb144c7a 502 #define POLARSSL_SSL_ALL_ALERT_MESSAGES MBEDTLS_SSL_ALL_ALERT_MESSAGES
JMF 12:0071cb144c7a 503 #endif
JMF 12:0071cb144c7a 504 #if defined MBEDTLS_SSL_ALPN
JMF 12:0071cb144c7a 505 #define POLARSSL_SSL_ALPN MBEDTLS_SSL_ALPN
JMF 12:0071cb144c7a 506 #endif
JMF 12:0071cb144c7a 507 #if defined MBEDTLS_SSL_CACHE_C
JMF 12:0071cb144c7a 508 #define POLARSSL_SSL_CACHE_C MBEDTLS_SSL_CACHE_C
JMF 12:0071cb144c7a 509 #endif
JMF 12:0071cb144c7a 510 #if defined MBEDTLS_SSL_CBC_RECORD_SPLITTING
JMF 12:0071cb144c7a 511 #define POLARSSL_SSL_CBC_RECORD_SPLITTING MBEDTLS_SSL_CBC_RECORD_SPLITTING
JMF 12:0071cb144c7a 512 #endif
JMF 12:0071cb144c7a 513 #if defined MBEDTLS_SSL_CLI_C
JMF 12:0071cb144c7a 514 #define POLARSSL_SSL_CLI_C MBEDTLS_SSL_CLI_C
JMF 12:0071cb144c7a 515 #endif
JMF 12:0071cb144c7a 516 #if defined MBEDTLS_SSL_COOKIE_C
JMF 12:0071cb144c7a 517 #define POLARSSL_SSL_COOKIE_C MBEDTLS_SSL_COOKIE_C
JMF 12:0071cb144c7a 518 #endif
JMF 12:0071cb144c7a 519 #if defined MBEDTLS_SSL_COOKIE_TIMEOUT
JMF 12:0071cb144c7a 520 #define POLARSSL_SSL_COOKIE_TIMEOUT MBEDTLS_SSL_COOKIE_TIMEOUT
JMF 12:0071cb144c7a 521 #endif
JMF 12:0071cb144c7a 522 #if defined MBEDTLS_SSL_DEBUG_ALL
JMF 12:0071cb144c7a 523 #define POLARSSL_SSL_DEBUG_ALL MBEDTLS_SSL_DEBUG_ALL
JMF 12:0071cb144c7a 524 #endif
JMF 12:0071cb144c7a 525 #if defined MBEDTLS_SSL_DISABLE_RENEGOTIATION
JMF 12:0071cb144c7a 526 #define POLARSSL_SSL_DISABLE_RENEGOTIATION MBEDTLS_SSL_DISABLE_RENEGOTIATION
JMF 12:0071cb144c7a 527 #endif
JMF 12:0071cb144c7a 528 #if defined MBEDTLS_SSL_DTLS_ANTI_REPLAY
JMF 12:0071cb144c7a 529 #define POLARSSL_SSL_DTLS_ANTI_REPLAY MBEDTLS_SSL_DTLS_ANTI_REPLAY
JMF 12:0071cb144c7a 530 #endif
JMF 12:0071cb144c7a 531 #if defined MBEDTLS_SSL_DTLS_BADMAC_LIMIT
JMF 12:0071cb144c7a 532 #define POLARSSL_SSL_DTLS_BADMAC_LIMIT MBEDTLS_SSL_DTLS_BADMAC_LIMIT
JMF 12:0071cb144c7a 533 #endif
JMF 12:0071cb144c7a 534 #if defined MBEDTLS_SSL_DTLS_HELLO_VERIFY
JMF 12:0071cb144c7a 535 #define POLARSSL_SSL_DTLS_HELLO_VERIFY MBEDTLS_SSL_DTLS_HELLO_VERIFY
JMF 12:0071cb144c7a 536 #endif
JMF 12:0071cb144c7a 537 #if defined MBEDTLS_SSL_ENCRYPT_THEN_MAC
JMF 12:0071cb144c7a 538 #define POLARSSL_SSL_ENCRYPT_THEN_MAC MBEDTLS_SSL_ENCRYPT_THEN_MAC
JMF 12:0071cb144c7a 539 #endif
JMF 12:0071cb144c7a 540 #if defined MBEDTLS_SSL_EXTENDED_MASTER_SECRET
JMF 12:0071cb144c7a 541 #define POLARSSL_SSL_EXTENDED_MASTER_SECRET MBEDTLS_SSL_EXTENDED_MASTER_SECRET
JMF 12:0071cb144c7a 542 #endif
JMF 12:0071cb144c7a 543 #if defined MBEDTLS_SSL_FALLBACK_SCSV
JMF 12:0071cb144c7a 544 #define POLARSSL_SSL_FALLBACK_SCSV MBEDTLS_SSL_FALLBACK_SCSV
JMF 12:0071cb144c7a 545 #endif
JMF 12:0071cb144c7a 546 #if defined MBEDTLS_SSL_HW_RECORD_ACCEL
JMF 12:0071cb144c7a 547 #define POLARSSL_SSL_HW_RECORD_ACCEL MBEDTLS_SSL_HW_RECORD_ACCEL
JMF 12:0071cb144c7a 548 #endif
JMF 12:0071cb144c7a 549 #if defined MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
JMF 12:0071cb144c7a 550 #define POLARSSL_SSL_MAX_FRAGMENT_LENGTH MBEDTLS_SSL_MAX_FRAGMENT_LENGTH
JMF 12:0071cb144c7a 551 #endif
JMF 12:0071cb144c7a 552 #if defined MBEDTLS_SSL_PROTO_DTLS
JMF 12:0071cb144c7a 553 #define POLARSSL_SSL_PROTO_DTLS MBEDTLS_SSL_PROTO_DTLS
JMF 12:0071cb144c7a 554 #endif
JMF 12:0071cb144c7a 555 #if defined MBEDTLS_SSL_PROTO_SSL3
JMF 12:0071cb144c7a 556 #define POLARSSL_SSL_PROTO_SSL3 MBEDTLS_SSL_PROTO_SSL3
JMF 12:0071cb144c7a 557 #endif
JMF 12:0071cb144c7a 558 #if defined MBEDTLS_SSL_PROTO_TLS1
JMF 12:0071cb144c7a 559 #define POLARSSL_SSL_PROTO_TLS1 MBEDTLS_SSL_PROTO_TLS1
JMF 12:0071cb144c7a 560 #endif
JMF 12:0071cb144c7a 561 #if defined MBEDTLS_SSL_PROTO_TLS1_1
JMF 12:0071cb144c7a 562 #define POLARSSL_SSL_PROTO_TLS1_1 MBEDTLS_SSL_PROTO_TLS1_1
JMF 12:0071cb144c7a 563 #endif
JMF 12:0071cb144c7a 564 #if defined MBEDTLS_SSL_PROTO_TLS1_2
JMF 12:0071cb144c7a 565 #define POLARSSL_SSL_PROTO_TLS1_2 MBEDTLS_SSL_PROTO_TLS1_2
JMF 12:0071cb144c7a 566 #endif
JMF 12:0071cb144c7a 567 #if defined MBEDTLS_SSL_RENEGOTIATION
JMF 12:0071cb144c7a 568 #define POLARSSL_SSL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION
JMF 12:0071cb144c7a 569 #endif
JMF 12:0071cb144c7a 570 #if defined MBEDTLS_SSL_SERVER_NAME_INDICATION
JMF 12:0071cb144c7a 571 #define POLARSSL_SSL_SERVER_NAME_INDICATION MBEDTLS_SSL_SERVER_NAME_INDICATION
JMF 12:0071cb144c7a 572 #endif
JMF 12:0071cb144c7a 573 #if defined MBEDTLS_SSL_SESSION_TICKETS
JMF 12:0071cb144c7a 574 #define POLARSSL_SSL_SESSION_TICKETS MBEDTLS_SSL_SESSION_TICKETS
JMF 12:0071cb144c7a 575 #endif
JMF 12:0071cb144c7a 576 #if defined MBEDTLS_SSL_SRV_C
JMF 12:0071cb144c7a 577 #define POLARSSL_SSL_SRV_C MBEDTLS_SSL_SRV_C
JMF 12:0071cb144c7a 578 #endif
JMF 12:0071cb144c7a 579 #if defined MBEDTLS_SSL_SRV_RESPECT_CLIENT_PREFERENCE
JMF 12:0071cb144c7a 580 #define POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE MBEDTLS_SSL_SRV_RESPECT_CLIENT_PREFERENCE
JMF 12:0071cb144c7a 581 #endif
JMF 12:0071cb144c7a 582 #if defined MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
JMF 12:0071cb144c7a 583 #define POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
JMF 12:0071cb144c7a 584 #endif
JMF 12:0071cb144c7a 585 #if defined MBEDTLS_SSL_TLS_C
JMF 12:0071cb144c7a 586 #define POLARSSL_SSL_TLS_C MBEDTLS_SSL_TLS_C
JMF 12:0071cb144c7a 587 #endif
JMF 12:0071cb144c7a 588 #if defined MBEDTLS_SSL_TRUNCATED_HMAC
JMF 12:0071cb144c7a 589 #define POLARSSL_SSL_TRUNCATED_HMAC MBEDTLS_SSL_TRUNCATED_HMAC
JMF 12:0071cb144c7a 590 #endif
JMF 12:0071cb144c7a 591 #if defined MBEDTLS_THREADING_ALT
JMF 12:0071cb144c7a 592 #define POLARSSL_THREADING_ALT MBEDTLS_THREADING_ALT
JMF 12:0071cb144c7a 593 #endif
JMF 12:0071cb144c7a 594 #if defined MBEDTLS_THREADING_C
JMF 12:0071cb144c7a 595 #define POLARSSL_THREADING_C MBEDTLS_THREADING_C
JMF 12:0071cb144c7a 596 #endif
JMF 12:0071cb144c7a 597 #if defined MBEDTLS_THREADING_PTHREAD
JMF 12:0071cb144c7a 598 #define POLARSSL_THREADING_PTHREAD MBEDTLS_THREADING_PTHREAD
JMF 12:0071cb144c7a 599 #endif
JMF 12:0071cb144c7a 600 #if defined MBEDTLS_TIMING_ALT
JMF 12:0071cb144c7a 601 #define POLARSSL_TIMING_ALT MBEDTLS_TIMING_ALT
JMF 12:0071cb144c7a 602 #endif
JMF 12:0071cb144c7a 603 #if defined MBEDTLS_TIMING_C
JMF 12:0071cb144c7a 604 #define POLARSSL_TIMING_C MBEDTLS_TIMING_C
JMF 12:0071cb144c7a 605 #endif
JMF 12:0071cb144c7a 606 #if defined MBEDTLS_VERSION_C
JMF 12:0071cb144c7a 607 #define POLARSSL_VERSION_C MBEDTLS_VERSION_C
JMF 12:0071cb144c7a 608 #endif
JMF 12:0071cb144c7a 609 #if defined MBEDTLS_VERSION_FEATURES
JMF 12:0071cb144c7a 610 #define POLARSSL_VERSION_FEATURES MBEDTLS_VERSION_FEATURES
JMF 12:0071cb144c7a 611 #endif
JMF 12:0071cb144c7a 612 #if defined MBEDTLS_X509_ALLOW_EXTENSIONS_NON_V3
JMF 12:0071cb144c7a 613 #define POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3 MBEDTLS_X509_ALLOW_EXTENSIONS_NON_V3
JMF 12:0071cb144c7a 614 #endif
JMF 12:0071cb144c7a 615 #if defined MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
JMF 12:0071cb144c7a 616 #define POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION MBEDTLS_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
JMF 12:0071cb144c7a 617 #endif
JMF 12:0071cb144c7a 618 #if defined MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE
JMF 12:0071cb144c7a 619 #define POLARSSL_X509_CHECK_EXTENDED_KEY_USAGE MBEDTLS_X509_CHECK_EXTENDED_KEY_USAGE
JMF 12:0071cb144c7a 620 #endif
JMF 12:0071cb144c7a 621 #if defined MBEDTLS_X509_CHECK_KEY_USAGE
JMF 12:0071cb144c7a 622 #define POLARSSL_X509_CHECK_KEY_USAGE MBEDTLS_X509_CHECK_KEY_USAGE
JMF 12:0071cb144c7a 623 #endif
JMF 12:0071cb144c7a 624 #if defined MBEDTLS_X509_CREATE_C
JMF 12:0071cb144c7a 625 #define POLARSSL_X509_CREATE_C MBEDTLS_X509_CREATE_C
JMF 12:0071cb144c7a 626 #endif
JMF 12:0071cb144c7a 627 #if defined MBEDTLS_X509_CRL_PARSE_C
JMF 12:0071cb144c7a 628 #define POLARSSL_X509_CRL_PARSE_C MBEDTLS_X509_CRL_PARSE_C
JMF 12:0071cb144c7a 629 #endif
JMF 12:0071cb144c7a 630 #if defined MBEDTLS_X509_CRT_PARSE_C
JMF 12:0071cb144c7a 631 #define POLARSSL_X509_CRT_PARSE_C MBEDTLS_X509_CRT_PARSE_C
JMF 12:0071cb144c7a 632 #endif
JMF 12:0071cb144c7a 633 #if defined MBEDTLS_X509_CRT_WRITE_C
JMF 12:0071cb144c7a 634 #define POLARSSL_X509_CRT_WRITE_C MBEDTLS_X509_CRT_WRITE_C
JMF 12:0071cb144c7a 635 #endif
JMF 12:0071cb144c7a 636 #if defined MBEDTLS_X509_CSR_PARSE_C
JMF 12:0071cb144c7a 637 #define POLARSSL_X509_CSR_PARSE_C MBEDTLS_X509_CSR_PARSE_C
JMF 12:0071cb144c7a 638 #endif
JMF 12:0071cb144c7a 639 #if defined MBEDTLS_X509_CSR_WRITE_C
JMF 12:0071cb144c7a 640 #define POLARSSL_X509_CSR_WRITE_C MBEDTLS_X509_CSR_WRITE_C
JMF 12:0071cb144c7a 641 #endif
JMF 12:0071cb144c7a 642 #if defined MBEDTLS_X509_MAX_INTERMEDIATE_CA
JMF 12:0071cb144c7a 643 #define POLARSSL_X509_MAX_INTERMEDIATE_CA MBEDTLS_X509_MAX_INTERMEDIATE_CA
JMF 12:0071cb144c7a 644 #endif
JMF 12:0071cb144c7a 645 #if defined MBEDTLS_X509_RSASSA_PSS_SUPPORT
JMF 12:0071cb144c7a 646 #define POLARSSL_X509_RSASSA_PSS_SUPPORT MBEDTLS_X509_RSASSA_PSS_SUPPORT
JMF 12:0071cb144c7a 647 #endif
JMF 12:0071cb144c7a 648 #if defined MBEDTLS_X509_USE_C
JMF 12:0071cb144c7a 649 #define POLARSSL_X509_USE_C MBEDTLS_X509_USE_C
JMF 12:0071cb144c7a 650 #endif
JMF 12:0071cb144c7a 651 #if defined MBEDTLS_XTEA_ALT
JMF 12:0071cb144c7a 652 #define POLARSSL_XTEA_ALT MBEDTLS_XTEA_ALT
JMF 12:0071cb144c7a 653 #endif
JMF 12:0071cb144c7a 654 #if defined MBEDTLS_XTEA_C
JMF 12:0071cb144c7a 655 #define POLARSSL_XTEA_C MBEDTLS_XTEA_C
JMF 12:0071cb144c7a 656 #endif
JMF 12:0071cb144c7a 657 #if defined MBEDTLS_ZLIB_SUPPORT
JMF 12:0071cb144c7a 658 #define POLARSSL_ZLIB_SUPPORT MBEDTLS_ZLIB_SUPPORT
JMF 12:0071cb144c7a 659 #endif
JMF 12:0071cb144c7a 660
JMF 12:0071cb144c7a 661 /*
JMF 12:0071cb144c7a 662 * Misc names (macros, types, functions, enum constants...)
JMF 12:0071cb144c7a 663 */
JMF 12:0071cb144c7a 664 #define AES_DECRYPT MBEDTLS_AES_DECRYPT
JMF 12:0071cb144c7a 665 #define AES_ENCRYPT MBEDTLS_AES_ENCRYPT
JMF 12:0071cb144c7a 666 #define ASN1_BIT_STRING MBEDTLS_ASN1_BIT_STRING
JMF 12:0071cb144c7a 667 #define ASN1_BMP_STRING MBEDTLS_ASN1_BMP_STRING
JMF 12:0071cb144c7a 668 #define ASN1_BOOLEAN MBEDTLS_ASN1_BOOLEAN
JMF 12:0071cb144c7a 669 #define ASN1_CHK_ADD MBEDTLS_ASN1_CHK_ADD
JMF 12:0071cb144c7a 670 #define ASN1_CONSTRUCTED MBEDTLS_ASN1_CONSTRUCTED
JMF 12:0071cb144c7a 671 #define ASN1_CONTEXT_SPECIFIC MBEDTLS_ASN1_CONTEXT_SPECIFIC
JMF 12:0071cb144c7a 672 #define ASN1_GENERALIZED_TIME MBEDTLS_ASN1_GENERALIZED_TIME
JMF 12:0071cb144c7a 673 #define ASN1_IA5_STRING MBEDTLS_ASN1_IA5_STRING
JMF 12:0071cb144c7a 674 #define ASN1_INTEGER MBEDTLS_ASN1_INTEGER
JMF 12:0071cb144c7a 675 #define ASN1_NULL MBEDTLS_ASN1_NULL
JMF 12:0071cb144c7a 676 #define ASN1_OCTET_STRING MBEDTLS_ASN1_OCTET_STRING
JMF 12:0071cb144c7a 677 #define ASN1_OID MBEDTLS_ASN1_OID
JMF 12:0071cb144c7a 678 #define ASN1_PRIMITIVE MBEDTLS_ASN1_PRIMITIVE
JMF 12:0071cb144c7a 679 #define ASN1_PRINTABLE_STRING MBEDTLS_ASN1_PRINTABLE_STRING
JMF 12:0071cb144c7a 680 #define ASN1_SEQUENCE MBEDTLS_ASN1_SEQUENCE
JMF 12:0071cb144c7a 681 #define ASN1_SET MBEDTLS_ASN1_SET
JMF 12:0071cb144c7a 682 #define ASN1_T61_STRING MBEDTLS_ASN1_T61_STRING
JMF 12:0071cb144c7a 683 #define ASN1_UNIVERSAL_STRING MBEDTLS_ASN1_UNIVERSAL_STRING
JMF 12:0071cb144c7a 684 #define ASN1_UTC_TIME MBEDTLS_ASN1_UTC_TIME
JMF 12:0071cb144c7a 685 #define ASN1_UTF8_STRING MBEDTLS_ASN1_UTF8_STRING
JMF 12:0071cb144c7a 686 #define BADCERT_CN_MISMATCH MBEDTLS_X509_BADCERT_CN_MISMATCH
JMF 12:0071cb144c7a 687 #define BADCERT_EXPIRED MBEDTLS_X509_BADCERT_EXPIRED
JMF 12:0071cb144c7a 688 #define BADCERT_FUTURE MBEDTLS_X509_BADCERT_FUTURE
JMF 12:0071cb144c7a 689 #define BADCERT_MISSING MBEDTLS_X509_BADCERT_MISSING
JMF 12:0071cb144c7a 690 #define BADCERT_NOT_TRUSTED MBEDTLS_X509_BADCERT_NOT_TRUSTED
JMF 12:0071cb144c7a 691 #define BADCERT_OTHER MBEDTLS_X509_BADCERT_OTHER
JMF 12:0071cb144c7a 692 #define BADCERT_REVOKED MBEDTLS_X509_BADCERT_REVOKED
JMF 12:0071cb144c7a 693 #define BADCERT_SKIP_VERIFY MBEDTLS_X509_BADCERT_SKIP_VERIFY
JMF 12:0071cb144c7a 694 #define BADCRL_EXPIRED MBEDTLS_X509_BADCRL_EXPIRED
JMF 12:0071cb144c7a 695 #define BADCRL_FUTURE MBEDTLS_X509_BADCRL_FUTURE
JMF 12:0071cb144c7a 696 #define BADCRL_NOT_TRUSTED MBEDTLS_X509_BADCRL_NOT_TRUSTED
JMF 12:0071cb144c7a 697 #define BLOWFISH_BLOCKSIZE MBEDTLS_BLOWFISH_BLOCKSIZE
JMF 12:0071cb144c7a 698 #define BLOWFISH_DECRYPT MBEDTLS_BLOWFISH_DECRYPT
JMF 12:0071cb144c7a 699 #define BLOWFISH_ENCRYPT MBEDTLS_BLOWFISH_ENCRYPT
JMF 12:0071cb144c7a 700 #define BLOWFISH_MAX_KEY MBEDTLS_BLOWFISH_MAX_KEY_BITS
JMF 12:0071cb144c7a 701 #define BLOWFISH_MIN_KEY MBEDTLS_BLOWFISH_MIN_KEY_BITS
JMF 12:0071cb144c7a 702 #define BLOWFISH_ROUNDS MBEDTLS_BLOWFISH_ROUNDS
JMF 12:0071cb144c7a 703 #define CAMELLIA_DECRYPT MBEDTLS_CAMELLIA_DECRYPT
JMF 12:0071cb144c7a 704 #define CAMELLIA_ENCRYPT MBEDTLS_CAMELLIA_ENCRYPT
JMF 12:0071cb144c7a 705 #define COLLECT_SIZE MBEDTLS_HAVEGE_COLLECT_SIZE
JMF 12:0071cb144c7a 706 #define CTR_DRBG_BLOCKSIZE MBEDTLS_CTR_DRBG_BLOCKSIZE
JMF 12:0071cb144c7a 707 #define CTR_DRBG_ENTROPY_LEN MBEDTLS_CTR_DRBG_ENTROPY_LEN
JMF 12:0071cb144c7a 708 #define CTR_DRBG_KEYBITS MBEDTLS_CTR_DRBG_KEYBITS
JMF 12:0071cb144c7a 709 #define CTR_DRBG_KEYSIZE MBEDTLS_CTR_DRBG_KEYSIZE
JMF 12:0071cb144c7a 710 #define CTR_DRBG_MAX_INPUT MBEDTLS_CTR_DRBG_MAX_INPUT
JMF 12:0071cb144c7a 711 #define CTR_DRBG_MAX_REQUEST MBEDTLS_CTR_DRBG_MAX_REQUEST
JMF 12:0071cb144c7a 712 #define CTR_DRBG_MAX_SEED_INPUT MBEDTLS_CTR_DRBG_MAX_SEED_INPUT
JMF 12:0071cb144c7a 713 #define CTR_DRBG_PR_OFF MBEDTLS_CTR_DRBG_PR_OFF
JMF 12:0071cb144c7a 714 #define CTR_DRBG_PR_ON MBEDTLS_CTR_DRBG_PR_ON
JMF 12:0071cb144c7a 715 #define CTR_DRBG_RESEED_INTERVAL MBEDTLS_CTR_DRBG_RESEED_INTERVAL
JMF 12:0071cb144c7a 716 #define CTR_DRBG_SEEDLEN MBEDTLS_CTR_DRBG_SEEDLEN
JMF 12:0071cb144c7a 717 #define DEPRECATED MBEDTLS_DEPRECATED
JMF 12:0071cb144c7a 718 #define DES_DECRYPT MBEDTLS_DES_DECRYPT
JMF 12:0071cb144c7a 719 #define DES_ENCRYPT MBEDTLS_DES_ENCRYPT
JMF 12:0071cb144c7a 720 #define DES_KEY_SIZE MBEDTLS_DES_KEY_SIZE
JMF 12:0071cb144c7a 721 #define ENTROPY_BLOCK_SIZE MBEDTLS_ENTROPY_BLOCK_SIZE
JMF 12:0071cb144c7a 722 #define ENTROPY_MAX_GATHER MBEDTLS_ENTROPY_MAX_GATHER
JMF 12:0071cb144c7a 723 #define ENTROPY_MAX_SEED_SIZE MBEDTLS_ENTROPY_MAX_SEED_SIZE
JMF 12:0071cb144c7a 724 #define ENTROPY_MAX_SOURCES MBEDTLS_ENTROPY_MAX_SOURCES
JMF 12:0071cb144c7a 725 #define ENTROPY_MIN_HARDCLOCK MBEDTLS_ENTROPY_MIN_HARDCLOCK
JMF 12:0071cb144c7a 726 #define ENTROPY_MIN_HAVEGE MBEDTLS_ENTROPY_MIN_HAVEGE
JMF 12:0071cb144c7a 727 #define ENTROPY_MIN_PLATFORM MBEDTLS_ENTROPY_MIN_PLATFORM
JMF 12:0071cb144c7a 728 #define ENTROPY_SOURCE_MANUAL MBEDTLS_ENTROPY_SOURCE_MANUAL
JMF 12:0071cb144c7a 729 #define EXT_AUTHORITY_KEY_IDENTIFIER MBEDTLS_X509_EXT_AUTHORITY_KEY_IDENTIFIER
JMF 12:0071cb144c7a 730 #define EXT_BASIC_CONSTRAINTS MBEDTLS_X509_EXT_BASIC_CONSTRAINTS
JMF 12:0071cb144c7a 731 #define EXT_CERTIFICATE_POLICIES MBEDTLS_X509_EXT_CERTIFICATE_POLICIES
JMF 12:0071cb144c7a 732 #define EXT_CRL_DISTRIBUTION_POINTS MBEDTLS_X509_EXT_CRL_DISTRIBUTION_POINTS
JMF 12:0071cb144c7a 733 #define EXT_EXTENDED_KEY_USAGE MBEDTLS_X509_EXT_EXTENDED_KEY_USAGE
JMF 12:0071cb144c7a 734 #define EXT_FRESHEST_CRL MBEDTLS_X509_EXT_FRESHEST_CRL
JMF 12:0071cb144c7a 735 #define EXT_INIHIBIT_ANYPOLICY MBEDTLS_X509_EXT_INIHIBIT_ANYPOLICY
JMF 12:0071cb144c7a 736 #define EXT_ISSUER_ALT_NAME MBEDTLS_X509_EXT_ISSUER_ALT_NAME
JMF 12:0071cb144c7a 737 #define EXT_KEY_USAGE MBEDTLS_X509_EXT_KEY_USAGE
JMF 12:0071cb144c7a 738 #define EXT_NAME_CONSTRAINTS MBEDTLS_X509_EXT_NAME_CONSTRAINTS
JMF 12:0071cb144c7a 739 #define EXT_NS_CERT_TYPE MBEDTLS_X509_EXT_NS_CERT_TYPE
JMF 12:0071cb144c7a 740 #define EXT_POLICY_CONSTRAINTS MBEDTLS_X509_EXT_POLICY_CONSTRAINTS
JMF 12:0071cb144c7a 741 #define EXT_POLICY_MAPPINGS MBEDTLS_X509_EXT_POLICY_MAPPINGS
JMF 12:0071cb144c7a 742 #define EXT_SUBJECT_ALT_NAME MBEDTLS_X509_EXT_SUBJECT_ALT_NAME
JMF 12:0071cb144c7a 743 #define EXT_SUBJECT_DIRECTORY_ATTRS MBEDTLS_X509_EXT_SUBJECT_DIRECTORY_ATTRS
JMF 12:0071cb144c7a 744 #define EXT_SUBJECT_KEY_IDENTIFIER MBEDTLS_X509_EXT_SUBJECT_KEY_IDENTIFIER
JMF 12:0071cb144c7a 745 #define GCM_DECRYPT MBEDTLS_GCM_DECRYPT
JMF 12:0071cb144c7a 746 #define GCM_ENCRYPT MBEDTLS_GCM_ENCRYPT
JMF 12:0071cb144c7a 747 #define KU_CRL_SIGN MBEDTLS_X509_KU_CRL_SIGN
JMF 12:0071cb144c7a 748 #define KU_DATA_ENCIPHERMENT MBEDTLS_X509_KU_DATA_ENCIPHERMENT
JMF 12:0071cb144c7a 749 #define KU_DIGITAL_SIGNATURE MBEDTLS_X509_KU_DIGITAL_SIGNATURE
JMF 12:0071cb144c7a 750 #define KU_KEY_AGREEMENT MBEDTLS_X509_KU_KEY_AGREEMENT
JMF 12:0071cb144c7a 751 #define KU_KEY_CERT_SIGN MBEDTLS_X509_KU_KEY_CERT_SIGN
JMF 12:0071cb144c7a 752 #define KU_KEY_ENCIPHERMENT MBEDTLS_X509_KU_KEY_ENCIPHERMENT
JMF 12:0071cb144c7a 753 #define KU_NON_REPUDIATION MBEDTLS_X509_KU_NON_REPUDIATION
JMF 12:0071cb144c7a 754 #define LN_2_DIV_LN_10_SCALE100 MBEDTLS_LN_2_DIV_LN_10_SCALE100
JMF 12:0071cb144c7a 755 #define MD_CONTEXT_T_INIT MBEDTLS_MD_CONTEXT_T_INIT
JMF 12:0071cb144c7a 756 #define MEMORY_VERIFY_ALLOC MBEDTLS_MEMORY_VERIFY_ALLOC
JMF 12:0071cb144c7a 757 #define MEMORY_VERIFY_ALWAYS MBEDTLS_MEMORY_VERIFY_ALWAYS
JMF 12:0071cb144c7a 758 #define MEMORY_VERIFY_FREE MBEDTLS_MEMORY_VERIFY_FREE
JMF 12:0071cb144c7a 759 #define MEMORY_VERIFY_NONE MBEDTLS_MEMORY_VERIFY_NONE
JMF 12:0071cb144c7a 760 #define MPI_CHK MBEDTLS_MPI_CHK
JMF 12:0071cb144c7a 761 #define NET_PROTO_TCP MBEDTLS_NET_PROTO_TCP
JMF 12:0071cb144c7a 762 #define NET_PROTO_UDP MBEDTLS_NET_PROTO_UDP
JMF 12:0071cb144c7a 763 #define NS_CERT_TYPE_EMAIL MBEDTLS_X509_NS_CERT_TYPE_EMAIL
JMF 12:0071cb144c7a 764 #define NS_CERT_TYPE_EMAIL_CA MBEDTLS_X509_NS_CERT_TYPE_EMAIL_CA
JMF 12:0071cb144c7a 765 #define NS_CERT_TYPE_OBJECT_SIGNING MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING
JMF 12:0071cb144c7a 766 #define NS_CERT_TYPE_OBJECT_SIGNING_CA MBEDTLS_X509_NS_CERT_TYPE_OBJECT_SIGNING_CA
JMF 12:0071cb144c7a 767 #define NS_CERT_TYPE_RESERVED MBEDTLS_X509_NS_CERT_TYPE_RESERVED
JMF 12:0071cb144c7a 768 #define NS_CERT_TYPE_SSL_CA MBEDTLS_X509_NS_CERT_TYPE_SSL_CA
JMF 12:0071cb144c7a 769 #define NS_CERT_TYPE_SSL_CLIENT MBEDTLS_X509_NS_CERT_TYPE_SSL_CLIENT
JMF 12:0071cb144c7a 770 #define NS_CERT_TYPE_SSL_SERVER MBEDTLS_X509_NS_CERT_TYPE_SSL_SERVER
JMF 12:0071cb144c7a 771 #define OID_ANSI_X9_62 MBEDTLS_OID_ANSI_X9_62
JMF 12:0071cb144c7a 772 #define OID_ANSI_X9_62_FIELD_TYPE MBEDTLS_OID_ANSI_X9_62_FIELD_TYPE
JMF 12:0071cb144c7a 773 #define OID_ANSI_X9_62_PRIME_FIELD MBEDTLS_OID_ANSI_X9_62_PRIME_FIELD
JMF 12:0071cb144c7a 774 #define OID_ANSI_X9_62_SIG MBEDTLS_OID_ANSI_X9_62_SIG
JMF 12:0071cb144c7a 775 #define OID_ANSI_X9_62_SIG_SHA2 MBEDTLS_OID_ANSI_X9_62_SIG_SHA2
JMF 12:0071cb144c7a 776 #define OID_ANY_EXTENDED_KEY_USAGE MBEDTLS_OID_ANY_EXTENDED_KEY_USAGE
JMF 12:0071cb144c7a 777 #define OID_AT MBEDTLS_OID_AT
JMF 12:0071cb144c7a 778 #define OID_AT_CN MBEDTLS_OID_AT_CN
JMF 12:0071cb144c7a 779 #define OID_AT_COUNTRY MBEDTLS_OID_AT_COUNTRY
JMF 12:0071cb144c7a 780 #define OID_AT_DN_QUALIFIER MBEDTLS_OID_AT_DN_QUALIFIER
JMF 12:0071cb144c7a 781 #define OID_AT_GENERATION_QUALIFIER MBEDTLS_OID_AT_GENERATION_QUALIFIER
JMF 12:0071cb144c7a 782 #define OID_AT_GIVEN_NAME MBEDTLS_OID_AT_GIVEN_NAME
JMF 12:0071cb144c7a 783 #define OID_AT_INITIALS MBEDTLS_OID_AT_INITIALS
JMF 12:0071cb144c7a 784 #define OID_AT_LOCALITY MBEDTLS_OID_AT_LOCALITY
JMF 12:0071cb144c7a 785 #define OID_AT_ORGANIZATION MBEDTLS_OID_AT_ORGANIZATION
JMF 12:0071cb144c7a 786 #define OID_AT_ORG_UNIT MBEDTLS_OID_AT_ORG_UNIT
JMF 12:0071cb144c7a 787 #define OID_AT_POSTAL_ADDRESS MBEDTLS_OID_AT_POSTAL_ADDRESS
JMF 12:0071cb144c7a 788 #define OID_AT_POSTAL_CODE MBEDTLS_OID_AT_POSTAL_CODE
JMF 12:0071cb144c7a 789 #define OID_AT_PSEUDONYM MBEDTLS_OID_AT_PSEUDONYM
JMF 12:0071cb144c7a 790 #define OID_AT_SERIAL_NUMBER MBEDTLS_OID_AT_SERIAL_NUMBER
JMF 12:0071cb144c7a 791 #define OID_AT_STATE MBEDTLS_OID_AT_STATE
JMF 12:0071cb144c7a 792 #define OID_AT_SUR_NAME MBEDTLS_OID_AT_SUR_NAME
JMF 12:0071cb144c7a 793 #define OID_AT_TITLE MBEDTLS_OID_AT_TITLE
JMF 12:0071cb144c7a 794 #define OID_AT_UNIQUE_IDENTIFIER MBEDTLS_OID_AT_UNIQUE_IDENTIFIER
JMF 12:0071cb144c7a 795 #define OID_AUTHORITY_KEY_IDENTIFIER MBEDTLS_OID_AUTHORITY_KEY_IDENTIFIER
JMF 12:0071cb144c7a 796 #define OID_BASIC_CONSTRAINTS MBEDTLS_OID_BASIC_CONSTRAINTS
JMF 12:0071cb144c7a 797 #define OID_CERTICOM MBEDTLS_OID_CERTICOM
JMF 12:0071cb144c7a 798 #define OID_CERTIFICATE_POLICIES MBEDTLS_OID_CERTIFICATE_POLICIES
JMF 12:0071cb144c7a 799 #define OID_CLIENT_AUTH MBEDTLS_OID_CLIENT_AUTH
JMF 12:0071cb144c7a 800 #define OID_CMP MBEDTLS_OID_CMP
JMF 12:0071cb144c7a 801 #define OID_CODE_SIGNING MBEDTLS_OID_CODE_SIGNING
JMF 12:0071cb144c7a 802 #define OID_COUNTRY_US MBEDTLS_OID_COUNTRY_US
JMF 12:0071cb144c7a 803 #define OID_CRL_DISTRIBUTION_POINTS MBEDTLS_OID_CRL_DISTRIBUTION_POINTS
JMF 12:0071cb144c7a 804 #define OID_CRL_NUMBER MBEDTLS_OID_CRL_NUMBER
JMF 12:0071cb144c7a 805 #define OID_DES_CBC MBEDTLS_OID_DES_CBC
JMF 12:0071cb144c7a 806 #define OID_DES_EDE3_CBC MBEDTLS_OID_DES_EDE3_CBC
JMF 12:0071cb144c7a 807 #define OID_DIGEST_ALG_MD2 MBEDTLS_OID_DIGEST_ALG_MD2
JMF 12:0071cb144c7a 808 #define OID_DIGEST_ALG_MD4 MBEDTLS_OID_DIGEST_ALG_MD4
JMF 12:0071cb144c7a 809 #define OID_DIGEST_ALG_MD5 MBEDTLS_OID_DIGEST_ALG_MD5
JMF 12:0071cb144c7a 810 #define OID_DIGEST_ALG_SHA1 MBEDTLS_OID_DIGEST_ALG_SHA1
JMF 12:0071cb144c7a 811 #define OID_DIGEST_ALG_SHA224 MBEDTLS_OID_DIGEST_ALG_SHA224
JMF 12:0071cb144c7a 812 #define OID_DIGEST_ALG_SHA256 MBEDTLS_OID_DIGEST_ALG_SHA256
JMF 12:0071cb144c7a 813 #define OID_DIGEST_ALG_SHA384 MBEDTLS_OID_DIGEST_ALG_SHA384
JMF 12:0071cb144c7a 814 #define OID_DIGEST_ALG_SHA512 MBEDTLS_OID_DIGEST_ALG_SHA512
JMF 12:0071cb144c7a 815 #define OID_DOMAIN_COMPONENT MBEDTLS_OID_DOMAIN_COMPONENT
JMF 12:0071cb144c7a 816 #define OID_ECDSA_SHA1 MBEDTLS_OID_ECDSA_SHA1
JMF 12:0071cb144c7a 817 #define OID_ECDSA_SHA224 MBEDTLS_OID_ECDSA_SHA224
JMF 12:0071cb144c7a 818 #define OID_ECDSA_SHA256 MBEDTLS_OID_ECDSA_SHA256
JMF 12:0071cb144c7a 819 #define OID_ECDSA_SHA384 MBEDTLS_OID_ECDSA_SHA384
JMF 12:0071cb144c7a 820 #define OID_ECDSA_SHA512 MBEDTLS_OID_ECDSA_SHA512
JMF 12:0071cb144c7a 821 #define OID_EC_ALG_ECDH MBEDTLS_OID_EC_ALG_ECDH
JMF 12:0071cb144c7a 822 #define OID_EC_ALG_UNRESTRICTED MBEDTLS_OID_EC_ALG_UNRESTRICTED
JMF 12:0071cb144c7a 823 #define OID_EC_BRAINPOOL_V1 MBEDTLS_OID_EC_BRAINPOOL_V1
JMF 12:0071cb144c7a 824 #define OID_EC_GRP_BP256R1 MBEDTLS_OID_EC_GRP_BP256R1
JMF 12:0071cb144c7a 825 #define OID_EC_GRP_BP384R1 MBEDTLS_OID_EC_GRP_BP384R1
JMF 12:0071cb144c7a 826 #define OID_EC_GRP_BP512R1 MBEDTLS_OID_EC_GRP_BP512R1
JMF 12:0071cb144c7a 827 #define OID_EC_GRP_SECP192K1 MBEDTLS_OID_EC_GRP_SECP192K1
JMF 12:0071cb144c7a 828 #define OID_EC_GRP_SECP192R1 MBEDTLS_OID_EC_GRP_SECP192R1
JMF 12:0071cb144c7a 829 #define OID_EC_GRP_SECP224K1 MBEDTLS_OID_EC_GRP_SECP224K1
JMF 12:0071cb144c7a 830 #define OID_EC_GRP_SECP224R1 MBEDTLS_OID_EC_GRP_SECP224R1
JMF 12:0071cb144c7a 831 #define OID_EC_GRP_SECP256K1 MBEDTLS_OID_EC_GRP_SECP256K1
JMF 12:0071cb144c7a 832 #define OID_EC_GRP_SECP256R1 MBEDTLS_OID_EC_GRP_SECP256R1
JMF 12:0071cb144c7a 833 #define OID_EC_GRP_SECP384R1 MBEDTLS_OID_EC_GRP_SECP384R1
JMF 12:0071cb144c7a 834 #define OID_EC_GRP_SECP521R1 MBEDTLS_OID_EC_GRP_SECP521R1
JMF 12:0071cb144c7a 835 #define OID_EMAIL_PROTECTION MBEDTLS_OID_EMAIL_PROTECTION
JMF 12:0071cb144c7a 836 #define OID_EXTENDED_KEY_USAGE MBEDTLS_OID_EXTENDED_KEY_USAGE
JMF 12:0071cb144c7a 837 #define OID_FRESHEST_CRL MBEDTLS_OID_FRESHEST_CRL
JMF 12:0071cb144c7a 838 #define OID_GOV MBEDTLS_OID_GOV
JMF 12:0071cb144c7a 839 #define OID_HMAC_SHA1 MBEDTLS_OID_HMAC_SHA1
JMF 12:0071cb144c7a 840 #define OID_ID_CE MBEDTLS_OID_ID_CE
JMF 12:0071cb144c7a 841 #define OID_INIHIBIT_ANYPOLICY MBEDTLS_OID_INIHIBIT_ANYPOLICY
JMF 12:0071cb144c7a 842 #define OID_ISO_CCITT_DS MBEDTLS_OID_ISO_CCITT_DS
JMF 12:0071cb144c7a 843 #define OID_ISO_IDENTIFIED_ORG MBEDTLS_OID_ISO_IDENTIFIED_ORG
JMF 12:0071cb144c7a 844 #define OID_ISO_ITU_COUNTRY MBEDTLS_OID_ISO_ITU_COUNTRY
JMF 12:0071cb144c7a 845 #define OID_ISO_ITU_US_ORG MBEDTLS_OID_ISO_ITU_US_ORG
JMF 12:0071cb144c7a 846 #define OID_ISO_MEMBER_BODIES MBEDTLS_OID_ISO_MEMBER_BODIES
JMF 12:0071cb144c7a 847 #define OID_ISSUER_ALT_NAME MBEDTLS_OID_ISSUER_ALT_NAME
JMF 12:0071cb144c7a 848 #define OID_KEY_USAGE MBEDTLS_OID_KEY_USAGE
JMF 12:0071cb144c7a 849 #define OID_KP MBEDTLS_OID_KP
JMF 12:0071cb144c7a 850 #define OID_MGF1 MBEDTLS_OID_MGF1
JMF 12:0071cb144c7a 851 #define OID_NAME_CONSTRAINTS MBEDTLS_OID_NAME_CONSTRAINTS
JMF 12:0071cb144c7a 852 #define OID_NETSCAPE MBEDTLS_OID_NETSCAPE
JMF 12:0071cb144c7a 853 #define OID_NS_BASE_URL MBEDTLS_OID_NS_BASE_URL
JMF 12:0071cb144c7a 854 #define OID_NS_CA_POLICY_URL MBEDTLS_OID_NS_CA_POLICY_URL
JMF 12:0071cb144c7a 855 #define OID_NS_CA_REVOCATION_URL MBEDTLS_OID_NS_CA_REVOCATION_URL
JMF 12:0071cb144c7a 856 #define OID_NS_CERT MBEDTLS_OID_NS_CERT
JMF 12:0071cb144c7a 857 #define OID_NS_CERT_SEQUENCE MBEDTLS_OID_NS_CERT_SEQUENCE
JMF 12:0071cb144c7a 858 #define OID_NS_CERT_TYPE MBEDTLS_OID_NS_CERT_TYPE
JMF 12:0071cb144c7a 859 #define OID_NS_COMMENT MBEDTLS_OID_NS_COMMENT
JMF 12:0071cb144c7a 860 #define OID_NS_DATA_TYPE MBEDTLS_OID_NS_DATA_TYPE
JMF 12:0071cb144c7a 861 #define OID_NS_RENEWAL_URL MBEDTLS_OID_NS_RENEWAL_URL
JMF 12:0071cb144c7a 862 #define OID_NS_REVOCATION_URL MBEDTLS_OID_NS_REVOCATION_URL
JMF 12:0071cb144c7a 863 #define OID_NS_SSL_SERVER_NAME MBEDTLS_OID_NS_SSL_SERVER_NAME
JMF 12:0071cb144c7a 864 #define OID_OCSP_SIGNING MBEDTLS_OID_OCSP_SIGNING
JMF 12:0071cb144c7a 865 #define OID_OIW_SECSIG MBEDTLS_OID_OIW_SECSIG
JMF 12:0071cb144c7a 866 #define OID_OIW_SECSIG_ALG MBEDTLS_OID_OIW_SECSIG_ALG
JMF 12:0071cb144c7a 867 #define OID_OIW_SECSIG_SHA1 MBEDTLS_OID_OIW_SECSIG_SHA1
JMF 12:0071cb144c7a 868 #define OID_ORGANIZATION MBEDTLS_OID_ORGANIZATION
JMF 12:0071cb144c7a 869 #define OID_ORG_ANSI_X9_62 MBEDTLS_OID_ORG_ANSI_X9_62
JMF 12:0071cb144c7a 870 #define OID_ORG_CERTICOM MBEDTLS_OID_ORG_CERTICOM
JMF 12:0071cb144c7a 871 #define OID_ORG_DOD MBEDTLS_OID_ORG_DOD
JMF 12:0071cb144c7a 872 #define OID_ORG_GOV MBEDTLS_OID_ORG_GOV
JMF 12:0071cb144c7a 873 #define OID_ORG_NETSCAPE MBEDTLS_OID_ORG_NETSCAPE
JMF 12:0071cb144c7a 874 #define OID_ORG_OIW MBEDTLS_OID_ORG_OIW
JMF 12:0071cb144c7a 875 #define OID_ORG_RSA_DATA_SECURITY MBEDTLS_OID_ORG_RSA_DATA_SECURITY
JMF 12:0071cb144c7a 876 #define OID_ORG_TELETRUST MBEDTLS_OID_ORG_TELETRUST
JMF 12:0071cb144c7a 877 #define OID_PKCS MBEDTLS_OID_PKCS
JMF 12:0071cb144c7a 878 #define OID_PKCS1 MBEDTLS_OID_PKCS1
JMF 12:0071cb144c7a 879 #define OID_PKCS12 MBEDTLS_OID_PKCS12
JMF 12:0071cb144c7a 880 #define OID_PKCS12_PBE MBEDTLS_OID_PKCS12_PBE
JMF 12:0071cb144c7a 881 #define OID_PKCS12_PBE_SHA1_DES2_EDE_CBC MBEDTLS_OID_PKCS12_PBE_SHA1_DES2_EDE_CBC
JMF 12:0071cb144c7a 882 #define OID_PKCS12_PBE_SHA1_DES3_EDE_CBC MBEDTLS_OID_PKCS12_PBE_SHA1_DES3_EDE_CBC
JMF 12:0071cb144c7a 883 #define OID_PKCS12_PBE_SHA1_RC2_128_CBC MBEDTLS_OID_PKCS12_PBE_SHA1_RC2_128_CBC
JMF 12:0071cb144c7a 884 #define OID_PKCS12_PBE_SHA1_RC2_40_CBC MBEDTLS_OID_PKCS12_PBE_SHA1_RC2_40_CBC
JMF 12:0071cb144c7a 885 #define OID_PKCS12_PBE_SHA1_RC4_128 MBEDTLS_OID_PKCS12_PBE_SHA1_RC4_128
JMF 12:0071cb144c7a 886 #define OID_PKCS12_PBE_SHA1_RC4_40 MBEDTLS_OID_PKCS12_PBE_SHA1_RC4_40
JMF 12:0071cb144c7a 887 #define OID_PKCS1_MD2 MBEDTLS_OID_PKCS1_MD2
JMF 12:0071cb144c7a 888 #define OID_PKCS1_MD4 MBEDTLS_OID_PKCS1_MD4
JMF 12:0071cb144c7a 889 #define OID_PKCS1_MD5 MBEDTLS_OID_PKCS1_MD5
JMF 12:0071cb144c7a 890 #define OID_PKCS1_RSA MBEDTLS_OID_PKCS1_RSA
JMF 12:0071cb144c7a 891 #define OID_PKCS1_SHA1 MBEDTLS_OID_PKCS1_SHA1
JMF 12:0071cb144c7a 892 #define OID_PKCS1_SHA224 MBEDTLS_OID_PKCS1_SHA224
JMF 12:0071cb144c7a 893 #define OID_PKCS1_SHA256 MBEDTLS_OID_PKCS1_SHA256
JMF 12:0071cb144c7a 894 #define OID_PKCS1_SHA384 MBEDTLS_OID_PKCS1_SHA384
JMF 12:0071cb144c7a 895 #define OID_PKCS1_SHA512 MBEDTLS_OID_PKCS1_SHA512
JMF 12:0071cb144c7a 896 #define OID_PKCS5 MBEDTLS_OID_PKCS5
JMF 12:0071cb144c7a 897 #define OID_PKCS5_PBES2 MBEDTLS_OID_PKCS5_PBES2
JMF 12:0071cb144c7a 898 #define OID_PKCS5_PBE_MD2_DES_CBC MBEDTLS_OID_PKCS5_PBE_MD2_DES_CBC
JMF 12:0071cb144c7a 899 #define OID_PKCS5_PBE_MD2_RC2_CBC MBEDTLS_OID_PKCS5_PBE_MD2_RC2_CBC
JMF 12:0071cb144c7a 900 #define OID_PKCS5_PBE_MD5_DES_CBC MBEDTLS_OID_PKCS5_PBE_MD5_DES_CBC
JMF 12:0071cb144c7a 901 #define OID_PKCS5_PBE_MD5_RC2_CBC MBEDTLS_OID_PKCS5_PBE_MD5_RC2_CBC
JMF 12:0071cb144c7a 902 #define OID_PKCS5_PBE_SHA1_DES_CBC MBEDTLS_OID_PKCS5_PBE_SHA1_DES_CBC
JMF 12:0071cb144c7a 903 #define OID_PKCS5_PBE_SHA1_RC2_CBC MBEDTLS_OID_PKCS5_PBE_SHA1_RC2_CBC
JMF 12:0071cb144c7a 904 #define OID_PKCS5_PBKDF2 MBEDTLS_OID_PKCS5_PBKDF2
JMF 12:0071cb144c7a 905 #define OID_PKCS5_PBMAC1 MBEDTLS_OID_PKCS5_PBMAC1
JMF 12:0071cb144c7a 906 #define OID_PKCS9 MBEDTLS_OID_PKCS9
JMF 12:0071cb144c7a 907 #define OID_PKCS9_CSR_EXT_REQ MBEDTLS_OID_PKCS9_CSR_EXT_REQ
JMF 12:0071cb144c7a 908 #define OID_PKCS9_EMAIL MBEDTLS_OID_PKCS9_EMAIL
JMF 12:0071cb144c7a 909 #define OID_PKIX MBEDTLS_OID_PKIX
JMF 12:0071cb144c7a 910 #define OID_POLICY_CONSTRAINTS MBEDTLS_OID_POLICY_CONSTRAINTS
JMF 12:0071cb144c7a 911 #define OID_POLICY_MAPPINGS MBEDTLS_OID_POLICY_MAPPINGS
JMF 12:0071cb144c7a 912 #define OID_PRIVATE_KEY_USAGE_PERIOD MBEDTLS_OID_PRIVATE_KEY_USAGE_PERIOD
JMF 12:0071cb144c7a 913 #define OID_RSASSA_PSS MBEDTLS_OID_RSASSA_PSS
JMF 12:0071cb144c7a 914 #define OID_RSA_COMPANY MBEDTLS_OID_RSA_COMPANY
JMF 12:0071cb144c7a 915 #define OID_RSA_SHA_OBS MBEDTLS_OID_RSA_SHA_OBS
JMF 12:0071cb144c7a 916 #define OID_SERVER_AUTH MBEDTLS_OID_SERVER_AUTH
JMF 12:0071cb144c7a 917 #define OID_SIZE MBEDTLS_OID_SIZE
JMF 12:0071cb144c7a 918 #define OID_SUBJECT_ALT_NAME MBEDTLS_OID_SUBJECT_ALT_NAME
JMF 12:0071cb144c7a 919 #define OID_SUBJECT_DIRECTORY_ATTRS MBEDTLS_OID_SUBJECT_DIRECTORY_ATTRS
JMF 12:0071cb144c7a 920 #define OID_SUBJECT_KEY_IDENTIFIER MBEDTLS_OID_SUBJECT_KEY_IDENTIFIER
JMF 12:0071cb144c7a 921 #define OID_TELETRUST MBEDTLS_OID_TELETRUST
JMF 12:0071cb144c7a 922 #define OID_TIME_STAMPING MBEDTLS_OID_TIME_STAMPING
JMF 12:0071cb144c7a 923 #define PADLOCK_ACE MBEDTLS_PADLOCK_ACE
JMF 12:0071cb144c7a 924 #define PADLOCK_ALIGN16 MBEDTLS_PADLOCK_ALIGN16
JMF 12:0071cb144c7a 925 #define PADLOCK_PHE MBEDTLS_PADLOCK_PHE
JMF 12:0071cb144c7a 926 #define PADLOCK_PMM MBEDTLS_PADLOCK_PMM
JMF 12:0071cb144c7a 927 #define PADLOCK_RNG MBEDTLS_PADLOCK_RNG
JMF 12:0071cb144c7a 928 #define PKCS12_DERIVE_IV MBEDTLS_PKCS12_DERIVE_IV
JMF 12:0071cb144c7a 929 #define PKCS12_DERIVE_KEY MBEDTLS_PKCS12_DERIVE_KEY
JMF 12:0071cb144c7a 930 #define PKCS12_DERIVE_MAC_KEY MBEDTLS_PKCS12_DERIVE_MAC_KEY
JMF 12:0071cb144c7a 931 #define PKCS12_PBE_DECRYPT MBEDTLS_PKCS12_PBE_DECRYPT
JMF 12:0071cb144c7a 932 #define PKCS12_PBE_ENCRYPT MBEDTLS_PKCS12_PBE_ENCRYPT
JMF 12:0071cb144c7a 933 #define PKCS5_DECRYPT MBEDTLS_PKCS5_DECRYPT
JMF 12:0071cb144c7a 934 #define PKCS5_ENCRYPT MBEDTLS_PKCS5_ENCRYPT
JMF 12:0071cb144c7a 935 #define POLARSSL_AESNI_AES MBEDTLS_AESNI_AES
JMF 12:0071cb144c7a 936 #define POLARSSL_AESNI_CLMUL MBEDTLS_AESNI_CLMUL
JMF 12:0071cb144c7a 937 #define POLARSSL_AESNI_H MBEDTLS_AESNI_H
JMF 12:0071cb144c7a 938 #define POLARSSL_AES_H MBEDTLS_AES_H
JMF 12:0071cb144c7a 939 #define POLARSSL_ARC4_H MBEDTLS_ARC4_H
JMF 12:0071cb144c7a 940 #define POLARSSL_ASN1_H MBEDTLS_ASN1_H
JMF 12:0071cb144c7a 941 #define POLARSSL_ASN1_WRITE_H MBEDTLS_ASN1_WRITE_H
JMF 12:0071cb144c7a 942 #define POLARSSL_BASE64_H MBEDTLS_BASE64_H
JMF 12:0071cb144c7a 943 #define POLARSSL_BIGNUM_H MBEDTLS_BIGNUM_H
JMF 12:0071cb144c7a 944 #define POLARSSL_BLOWFISH_H MBEDTLS_BLOWFISH_H
JMF 12:0071cb144c7a 945 #define POLARSSL_BN_MUL_H MBEDTLS_BN_MUL_H
JMF 12:0071cb144c7a 946 #define POLARSSL_CAMELLIA_H MBEDTLS_CAMELLIA_H
JMF 12:0071cb144c7a 947 #define POLARSSL_CCM_H MBEDTLS_CCM_H
JMF 12:0071cb144c7a 948 #define POLARSSL_CERTS_H MBEDTLS_CERTS_H
JMF 12:0071cb144c7a 949 #define POLARSSL_CHECK_CONFIG_H MBEDTLS_CHECK_CONFIG_H
JMF 12:0071cb144c7a 950 #define POLARSSL_CIPHERSUITE_NODTLS MBEDTLS_CIPHERSUITE_NODTLS
JMF 12:0071cb144c7a 951 #define POLARSSL_CIPHERSUITE_SHORT_TAG MBEDTLS_CIPHERSUITE_SHORT_TAG
JMF 12:0071cb144c7a 952 #define POLARSSL_CIPHERSUITE_WEAK MBEDTLS_CIPHERSUITE_WEAK
JMF 12:0071cb144c7a 953 #define POLARSSL_CIPHER_AES_128_CBC MBEDTLS_CIPHER_AES_128_CBC
JMF 12:0071cb144c7a 954 #define POLARSSL_CIPHER_AES_128_CCM MBEDTLS_CIPHER_AES_128_CCM
JMF 12:0071cb144c7a 955 #define POLARSSL_CIPHER_AES_128_CFB128 MBEDTLS_CIPHER_AES_128_CFB128
JMF 12:0071cb144c7a 956 #define POLARSSL_CIPHER_AES_128_CTR MBEDTLS_CIPHER_AES_128_CTR
JMF 12:0071cb144c7a 957 #define POLARSSL_CIPHER_AES_128_ECB MBEDTLS_CIPHER_AES_128_ECB
JMF 12:0071cb144c7a 958 #define POLARSSL_CIPHER_AES_128_GCM MBEDTLS_CIPHER_AES_128_GCM
JMF 12:0071cb144c7a 959 #define POLARSSL_CIPHER_AES_192_CBC MBEDTLS_CIPHER_AES_192_CBC
JMF 12:0071cb144c7a 960 #define POLARSSL_CIPHER_AES_192_CCM MBEDTLS_CIPHER_AES_192_CCM
JMF 12:0071cb144c7a 961 #define POLARSSL_CIPHER_AES_192_CFB128 MBEDTLS_CIPHER_AES_192_CFB128
JMF 12:0071cb144c7a 962 #define POLARSSL_CIPHER_AES_192_CTR MBEDTLS_CIPHER_AES_192_CTR
JMF 12:0071cb144c7a 963 #define POLARSSL_CIPHER_AES_192_ECB MBEDTLS_CIPHER_AES_192_ECB
JMF 12:0071cb144c7a 964 #define POLARSSL_CIPHER_AES_192_GCM MBEDTLS_CIPHER_AES_192_GCM
JMF 12:0071cb144c7a 965 #define POLARSSL_CIPHER_AES_256_CBC MBEDTLS_CIPHER_AES_256_CBC
JMF 12:0071cb144c7a 966 #define POLARSSL_CIPHER_AES_256_CCM MBEDTLS_CIPHER_AES_256_CCM
JMF 12:0071cb144c7a 967 #define POLARSSL_CIPHER_AES_256_CFB128 MBEDTLS_CIPHER_AES_256_CFB128
JMF 12:0071cb144c7a 968 #define POLARSSL_CIPHER_AES_256_CTR MBEDTLS_CIPHER_AES_256_CTR
JMF 12:0071cb144c7a 969 #define POLARSSL_CIPHER_AES_256_ECB MBEDTLS_CIPHER_AES_256_ECB
JMF 12:0071cb144c7a 970 #define POLARSSL_CIPHER_AES_256_GCM MBEDTLS_CIPHER_AES_256_GCM
JMF 12:0071cb144c7a 971 #define POLARSSL_CIPHER_ARC4_128 MBEDTLS_CIPHER_ARC4_128
JMF 12:0071cb144c7a 972 #define POLARSSL_CIPHER_BLOWFISH_CBC MBEDTLS_CIPHER_BLOWFISH_CBC
JMF 12:0071cb144c7a 973 #define POLARSSL_CIPHER_BLOWFISH_CFB64 MBEDTLS_CIPHER_BLOWFISH_CFB64
JMF 12:0071cb144c7a 974 #define POLARSSL_CIPHER_BLOWFISH_CTR MBEDTLS_CIPHER_BLOWFISH_CTR
JMF 12:0071cb144c7a 975 #define POLARSSL_CIPHER_BLOWFISH_ECB MBEDTLS_CIPHER_BLOWFISH_ECB
JMF 12:0071cb144c7a 976 #define POLARSSL_CIPHER_CAMELLIA_128_CBC MBEDTLS_CIPHER_CAMELLIA_128_CBC
JMF 12:0071cb144c7a 977 #define POLARSSL_CIPHER_CAMELLIA_128_CCM MBEDTLS_CIPHER_CAMELLIA_128_CCM
JMF 12:0071cb144c7a 978 #define POLARSSL_CIPHER_CAMELLIA_128_CFB128 MBEDTLS_CIPHER_CAMELLIA_128_CFB128
JMF 12:0071cb144c7a 979 #define POLARSSL_CIPHER_CAMELLIA_128_CTR MBEDTLS_CIPHER_CAMELLIA_128_CTR
JMF 12:0071cb144c7a 980 #define POLARSSL_CIPHER_CAMELLIA_128_ECB MBEDTLS_CIPHER_CAMELLIA_128_ECB
JMF 12:0071cb144c7a 981 #define POLARSSL_CIPHER_CAMELLIA_128_GCM MBEDTLS_CIPHER_CAMELLIA_128_GCM
JMF 12:0071cb144c7a 982 #define POLARSSL_CIPHER_CAMELLIA_192_CBC MBEDTLS_CIPHER_CAMELLIA_192_CBC
JMF 12:0071cb144c7a 983 #define POLARSSL_CIPHER_CAMELLIA_192_CCM MBEDTLS_CIPHER_CAMELLIA_192_CCM
JMF 12:0071cb144c7a 984 #define POLARSSL_CIPHER_CAMELLIA_192_CFB128 MBEDTLS_CIPHER_CAMELLIA_192_CFB128
JMF 12:0071cb144c7a 985 #define POLARSSL_CIPHER_CAMELLIA_192_CTR MBEDTLS_CIPHER_CAMELLIA_192_CTR
JMF 12:0071cb144c7a 986 #define POLARSSL_CIPHER_CAMELLIA_192_ECB MBEDTLS_CIPHER_CAMELLIA_192_ECB
JMF 12:0071cb144c7a 987 #define POLARSSL_CIPHER_CAMELLIA_192_GCM MBEDTLS_CIPHER_CAMELLIA_192_GCM
JMF 12:0071cb144c7a 988 #define POLARSSL_CIPHER_CAMELLIA_256_CBC MBEDTLS_CIPHER_CAMELLIA_256_CBC
JMF 12:0071cb144c7a 989 #define POLARSSL_CIPHER_CAMELLIA_256_CCM MBEDTLS_CIPHER_CAMELLIA_256_CCM
JMF 12:0071cb144c7a 990 #define POLARSSL_CIPHER_CAMELLIA_256_CFB128 MBEDTLS_CIPHER_CAMELLIA_256_CFB128
JMF 12:0071cb144c7a 991 #define POLARSSL_CIPHER_CAMELLIA_256_CTR MBEDTLS_CIPHER_CAMELLIA_256_CTR
JMF 12:0071cb144c7a 992 #define POLARSSL_CIPHER_CAMELLIA_256_ECB MBEDTLS_CIPHER_CAMELLIA_256_ECB
JMF 12:0071cb144c7a 993 #define POLARSSL_CIPHER_CAMELLIA_256_GCM MBEDTLS_CIPHER_CAMELLIA_256_GCM
JMF 12:0071cb144c7a 994 #define POLARSSL_CIPHER_DES_CBC MBEDTLS_CIPHER_DES_CBC
JMF 12:0071cb144c7a 995 #define POLARSSL_CIPHER_DES_ECB MBEDTLS_CIPHER_DES_ECB
JMF 12:0071cb144c7a 996 #define POLARSSL_CIPHER_DES_EDE3_CBC MBEDTLS_CIPHER_DES_EDE3_CBC
JMF 12:0071cb144c7a 997 #define POLARSSL_CIPHER_DES_EDE3_ECB MBEDTLS_CIPHER_DES_EDE3_ECB
JMF 12:0071cb144c7a 998 #define POLARSSL_CIPHER_DES_EDE_CBC MBEDTLS_CIPHER_DES_EDE_CBC
JMF 12:0071cb144c7a 999 #define POLARSSL_CIPHER_DES_EDE_ECB MBEDTLS_CIPHER_DES_EDE_ECB
JMF 12:0071cb144c7a 1000 #define POLARSSL_CIPHER_H MBEDTLS_CIPHER_H
JMF 12:0071cb144c7a 1001 #define POLARSSL_CIPHER_ID_3DES MBEDTLS_CIPHER_ID_3DES
JMF 12:0071cb144c7a 1002 #define POLARSSL_CIPHER_ID_AES MBEDTLS_CIPHER_ID_AES
JMF 12:0071cb144c7a 1003 #define POLARSSL_CIPHER_ID_ARC4 MBEDTLS_CIPHER_ID_ARC4
JMF 12:0071cb144c7a 1004 #define POLARSSL_CIPHER_ID_BLOWFISH MBEDTLS_CIPHER_ID_BLOWFISH
JMF 12:0071cb144c7a 1005 #define POLARSSL_CIPHER_ID_CAMELLIA MBEDTLS_CIPHER_ID_CAMELLIA
JMF 12:0071cb144c7a 1006 #define POLARSSL_CIPHER_ID_DES MBEDTLS_CIPHER_ID_DES
JMF 12:0071cb144c7a 1007 #define POLARSSL_CIPHER_ID_NONE MBEDTLS_CIPHER_ID_NONE
JMF 12:0071cb144c7a 1008 #define POLARSSL_CIPHER_ID_NULL MBEDTLS_CIPHER_ID_NULL
JMF 12:0071cb144c7a 1009 #define POLARSSL_CIPHER_MODE_AEAD MBEDTLS_CIPHER_MODE_AEAD
JMF 12:0071cb144c7a 1010 #define POLARSSL_CIPHER_MODE_STREAM MBEDTLS_CIPHER_MODE_STREAM
JMF 12:0071cb144c7a 1011 #define POLARSSL_CIPHER_MODE_WITH_PADDING MBEDTLS_CIPHER_MODE_WITH_PADDING
JMF 12:0071cb144c7a 1012 #define POLARSSL_CIPHER_NONE MBEDTLS_CIPHER_NONE
JMF 12:0071cb144c7a 1013 #define POLARSSL_CIPHER_NULL MBEDTLS_CIPHER_NULL
JMF 12:0071cb144c7a 1014 #define POLARSSL_CIPHER_VARIABLE_IV_LEN MBEDTLS_CIPHER_VARIABLE_IV_LEN
JMF 12:0071cb144c7a 1015 #define POLARSSL_CIPHER_VARIABLE_KEY_LEN MBEDTLS_CIPHER_VARIABLE_KEY_LEN
JMF 12:0071cb144c7a 1016 #define POLARSSL_CIPHER_WRAP_H MBEDTLS_CIPHER_WRAP_H
JMF 12:0071cb144c7a 1017 #define POLARSSL_CONFIG_H MBEDTLS_CONFIG_H
JMF 12:0071cb144c7a 1018 #define POLARSSL_CTR_DRBG_H MBEDTLS_CTR_DRBG_H
JMF 12:0071cb144c7a 1019 #define POLARSSL_DEBUG_H MBEDTLS_DEBUG_H
JMF 12:0071cb144c7a 1020 #define POLARSSL_DEBUG_LOG_FULL MBEDTLS_DEBUG_LOG_FULL
JMF 12:0071cb144c7a 1021 #define POLARSSL_DEBUG_LOG_RAW MBEDTLS_DEBUG_LOG_RAW
JMF 12:0071cb144c7a 1022 #define POLARSSL_DECRYPT MBEDTLS_DECRYPT
JMF 12:0071cb144c7a 1023 #define POLARSSL_DES_H MBEDTLS_DES_H
JMF 12:0071cb144c7a 1024 #define POLARSSL_DHM_H MBEDTLS_DHM_H
JMF 12:0071cb144c7a 1025 #define POLARSSL_DHM_RFC2409_MODP_1024_G MBEDTLS_DHM_RFC2409_MODP_1024_G
JMF 12:0071cb144c7a 1026 #define POLARSSL_DHM_RFC2409_MODP_1024_P MBEDTLS_DHM_RFC2409_MODP_1024_P
JMF 12:0071cb144c7a 1027 #define POLARSSL_DHM_RFC3526_MODP_2048_G MBEDTLS_DHM_RFC3526_MODP_2048_G
JMF 12:0071cb144c7a 1028 #define POLARSSL_DHM_RFC3526_MODP_2048_P MBEDTLS_DHM_RFC3526_MODP_2048_P
JMF 12:0071cb144c7a 1029 #define POLARSSL_DHM_RFC3526_MODP_3072_G MBEDTLS_DHM_RFC3526_MODP_3072_G
JMF 12:0071cb144c7a 1030 #define POLARSSL_DHM_RFC3526_MODP_3072_P MBEDTLS_DHM_RFC3526_MODP_3072_P
JMF 12:0071cb144c7a 1031 #define POLARSSL_DHM_RFC5114_MODP_1024_G MBEDTLS_DHM_RFC5114_MODP_1024_G
JMF 12:0071cb144c7a 1032 #define POLARSSL_DHM_RFC5114_MODP_1024_P MBEDTLS_DHM_RFC5114_MODP_1024_P
JMF 12:0071cb144c7a 1033 #define POLARSSL_DHM_RFC5114_MODP_2048_G MBEDTLS_DHM_RFC5114_MODP_2048_G
JMF 12:0071cb144c7a 1034 #define POLARSSL_DHM_RFC5114_MODP_2048_P MBEDTLS_DHM_RFC5114_MODP_2048_P
JMF 12:0071cb144c7a 1035 #define POLARSSL_ECDH_H MBEDTLS_ECDH_H
JMF 12:0071cb144c7a 1036 #define POLARSSL_ECDH_OURS MBEDTLS_ECDH_OURS
JMF 12:0071cb144c7a 1037 #define POLARSSL_ECDH_THEIRS MBEDTLS_ECDH_THEIRS
JMF 12:0071cb144c7a 1038 #define POLARSSL_ECDSA_H MBEDTLS_ECDSA_H
JMF 12:0071cb144c7a 1039 #define POLARSSL_ECP_DP_BP256R1 MBEDTLS_ECP_DP_BP256R1
JMF 12:0071cb144c7a 1040 #define POLARSSL_ECP_DP_BP384R1 MBEDTLS_ECP_DP_BP384R1
JMF 12:0071cb144c7a 1041 #define POLARSSL_ECP_DP_BP512R1 MBEDTLS_ECP_DP_BP512R1
JMF 12:0071cb144c7a 1042 #define POLARSSL_ECP_DP_M255 MBEDTLS_ECP_DP_CURVE25519
JMF 12:0071cb144c7a 1043 #define POLARSSL_ECP_DP_MAX MBEDTLS_ECP_DP_MAX
JMF 12:0071cb144c7a 1044 #define POLARSSL_ECP_DP_NONE MBEDTLS_ECP_DP_NONE
JMF 12:0071cb144c7a 1045 #define POLARSSL_ECP_DP_SECP192K1 MBEDTLS_ECP_DP_SECP192K1
JMF 12:0071cb144c7a 1046 #define POLARSSL_ECP_DP_SECP192R1 MBEDTLS_ECP_DP_SECP192R1
JMF 12:0071cb144c7a 1047 #define POLARSSL_ECP_DP_SECP224K1 MBEDTLS_ECP_DP_SECP224K1
JMF 12:0071cb144c7a 1048 #define POLARSSL_ECP_DP_SECP224R1 MBEDTLS_ECP_DP_SECP224R1
JMF 12:0071cb144c7a 1049 #define POLARSSL_ECP_DP_SECP256K1 MBEDTLS_ECP_DP_SECP256K1
JMF 12:0071cb144c7a 1050 #define POLARSSL_ECP_DP_SECP256R1 MBEDTLS_ECP_DP_SECP256R1
JMF 12:0071cb144c7a 1051 #define POLARSSL_ECP_DP_SECP384R1 MBEDTLS_ECP_DP_SECP384R1
JMF 12:0071cb144c7a 1052 #define POLARSSL_ECP_DP_SECP521R1 MBEDTLS_ECP_DP_SECP521R1
JMF 12:0071cb144c7a 1053 #define POLARSSL_ECP_H MBEDTLS_ECP_H
JMF 12:0071cb144c7a 1054 #define POLARSSL_ECP_MAX_BYTES MBEDTLS_ECP_MAX_BYTES
JMF 12:0071cb144c7a 1055 #define POLARSSL_ECP_MAX_PT_LEN MBEDTLS_ECP_MAX_PT_LEN
JMF 12:0071cb144c7a 1056 #define POLARSSL_ECP_PF_COMPRESSED MBEDTLS_ECP_PF_COMPRESSED
JMF 12:0071cb144c7a 1057 #define POLARSSL_ECP_PF_UNCOMPRESSED MBEDTLS_ECP_PF_UNCOMPRESSED
JMF 12:0071cb144c7a 1058 #define POLARSSL_ECP_TLS_NAMED_CURVE MBEDTLS_ECP_TLS_NAMED_CURVE
JMF 12:0071cb144c7a 1059 #define POLARSSL_ENCRYPT MBEDTLS_ENCRYPT
JMF 12:0071cb144c7a 1060 #define POLARSSL_ENTROPY_H MBEDTLS_ENTROPY_H
JMF 12:0071cb144c7a 1061 #define POLARSSL_ENTROPY_POLL_H MBEDTLS_ENTROPY_POLL_H
JMF 12:0071cb144c7a 1062 #define POLARSSL_ENTROPY_SHA256_ACCUMULATOR MBEDTLS_ENTROPY_SHA256_ACCUMULATOR
JMF 12:0071cb144c7a 1063 #define POLARSSL_ENTROPY_SHA512_ACCUMULATOR MBEDTLS_ENTROPY_SHA512_ACCUMULATOR
JMF 12:0071cb144c7a 1064 #define POLARSSL_ERROR_H MBEDTLS_ERROR_H
JMF 12:0071cb144c7a 1065 #define POLARSSL_ERR_AES_INVALID_INPUT_LENGTH MBEDTLS_ERR_AES_INVALID_INPUT_LENGTH
JMF 12:0071cb144c7a 1066 #define POLARSSL_ERR_AES_INVALID_KEY_LENGTH MBEDTLS_ERR_AES_INVALID_KEY_LENGTH
JMF 12:0071cb144c7a 1067 #define POLARSSL_ERR_ASN1_BUF_TOO_SMALL MBEDTLS_ERR_ASN1_BUF_TOO_SMALL
JMF 12:0071cb144c7a 1068 #define POLARSSL_ERR_ASN1_INVALID_DATA MBEDTLS_ERR_ASN1_INVALID_DATA
JMF 12:0071cb144c7a 1069 #define POLARSSL_ERR_ASN1_INVALID_LENGTH MBEDTLS_ERR_ASN1_INVALID_LENGTH
JMF 12:0071cb144c7a 1070 #define POLARSSL_ERR_ASN1_LENGTH_MISMATCH MBEDTLS_ERR_ASN1_LENGTH_MISMATCH
JMF 12:0071cb144c7a 1071 #define POLARSSL_ERR_ASN1_MALLOC_FAILED MBEDTLS_ERR_ASN1_ALLOC_FAILED
JMF 12:0071cb144c7a 1072 #define POLARSSL_ERR_ASN1_OUT_OF_DATA MBEDTLS_ERR_ASN1_OUT_OF_DATA
JMF 12:0071cb144c7a 1073 #define POLARSSL_ERR_ASN1_UNEXPECTED_TAG MBEDTLS_ERR_ASN1_UNEXPECTED_TAG
JMF 12:0071cb144c7a 1074 #define POLARSSL_ERR_BASE64_BUFFER_TOO_SMALL MBEDTLS_ERR_BASE64_BUFFER_TOO_SMALL
JMF 12:0071cb144c7a 1075 #define POLARSSL_ERR_BASE64_INVALID_CHARACTER MBEDTLS_ERR_BASE64_INVALID_CHARACTER
JMF 12:0071cb144c7a 1076 #define POLARSSL_ERR_BLOWFISH_INVALID_INPUT_LENGTH MBEDTLS_ERR_BLOWFISH_INVALID_INPUT_LENGTH
JMF 12:0071cb144c7a 1077 #define POLARSSL_ERR_BLOWFISH_INVALID_KEY_LENGTH MBEDTLS_ERR_BLOWFISH_INVALID_KEY_LENGTH
JMF 12:0071cb144c7a 1078 #define POLARSSL_ERR_CAMELLIA_INVALID_INPUT_LENGTH MBEDTLS_ERR_CAMELLIA_INVALID_INPUT_LENGTH
JMF 12:0071cb144c7a 1079 #define POLARSSL_ERR_CAMELLIA_INVALID_KEY_LENGTH MBEDTLS_ERR_CAMELLIA_INVALID_KEY_LENGTH
JMF 12:0071cb144c7a 1080 #define POLARSSL_ERR_CCM_AUTH_FAILED MBEDTLS_ERR_CCM_AUTH_FAILED
JMF 12:0071cb144c7a 1081 #define POLARSSL_ERR_CCM_BAD_INPUT MBEDTLS_ERR_CCM_BAD_INPUT
JMF 12:0071cb144c7a 1082 #define POLARSSL_ERR_CIPHER_ALLOC_FAILED MBEDTLS_ERR_CIPHER_ALLOC_FAILED
JMF 12:0071cb144c7a 1083 #define POLARSSL_ERR_CIPHER_AUTH_FAILED MBEDTLS_ERR_CIPHER_AUTH_FAILED
JMF 12:0071cb144c7a 1084 #define POLARSSL_ERR_CIPHER_BAD_INPUT_DATA MBEDTLS_ERR_CIPHER_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1085 #define POLARSSL_ERR_CIPHER_FEATURE_UNAVAILABLE MBEDTLS_ERR_CIPHER_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1086 #define POLARSSL_ERR_CIPHER_FULL_BLOCK_EXPECTED MBEDTLS_ERR_CIPHER_FULL_BLOCK_EXPECTED
JMF 12:0071cb144c7a 1087 #define POLARSSL_ERR_CIPHER_INVALID_PADDING MBEDTLS_ERR_CIPHER_INVALID_PADDING
JMF 12:0071cb144c7a 1088 #define POLARSSL_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED MBEDTLS_ERR_CTR_DRBG_ENTROPY_SOURCE_FAILED
JMF 12:0071cb144c7a 1089 #define POLARSSL_ERR_CTR_DRBG_FILE_IO_ERROR MBEDTLS_ERR_CTR_DRBG_FILE_IO_ERROR
JMF 12:0071cb144c7a 1090 #define POLARSSL_ERR_CTR_DRBG_INPUT_TOO_BIG MBEDTLS_ERR_CTR_DRBG_INPUT_TOO_BIG
JMF 12:0071cb144c7a 1091 #define POLARSSL_ERR_CTR_DRBG_REQUEST_TOO_BIG MBEDTLS_ERR_CTR_DRBG_REQUEST_TOO_BIG
JMF 12:0071cb144c7a 1092 #define POLARSSL_ERR_DES_INVALID_INPUT_LENGTH MBEDTLS_ERR_DES_INVALID_INPUT_LENGTH
JMF 12:0071cb144c7a 1093 #define POLARSSL_ERR_DHM_BAD_INPUT_DATA MBEDTLS_ERR_DHM_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1094 #define POLARSSL_ERR_DHM_CALC_SECRET_FAILED MBEDTLS_ERR_DHM_CALC_SECRET_FAILED
JMF 12:0071cb144c7a 1095 #define POLARSSL_ERR_DHM_FILE_IO_ERROR MBEDTLS_ERR_DHM_FILE_IO_ERROR
JMF 12:0071cb144c7a 1096 #define POLARSSL_ERR_DHM_INVALID_FORMAT MBEDTLS_ERR_DHM_INVALID_FORMAT
JMF 12:0071cb144c7a 1097 #define POLARSSL_ERR_DHM_MAKE_PARAMS_FAILED MBEDTLS_ERR_DHM_MAKE_PARAMS_FAILED
JMF 12:0071cb144c7a 1098 #define POLARSSL_ERR_DHM_MAKE_PUBLIC_FAILED MBEDTLS_ERR_DHM_MAKE_PUBLIC_FAILED
JMF 12:0071cb144c7a 1099 #define POLARSSL_ERR_DHM_MALLOC_FAILED MBEDTLS_ERR_DHM_ALLOC_FAILED
JMF 12:0071cb144c7a 1100 #define POLARSSL_ERR_DHM_READ_PARAMS_FAILED MBEDTLS_ERR_DHM_READ_PARAMS_FAILED
JMF 12:0071cb144c7a 1101 #define POLARSSL_ERR_DHM_READ_PUBLIC_FAILED MBEDTLS_ERR_DHM_READ_PUBLIC_FAILED
JMF 12:0071cb144c7a 1102 #define POLARSSL_ERR_ECP_BAD_INPUT_DATA MBEDTLS_ERR_ECP_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1103 #define POLARSSL_ERR_ECP_BUFFER_TOO_SMALL MBEDTLS_ERR_ECP_BUFFER_TOO_SMALL
JMF 12:0071cb144c7a 1104 #define POLARSSL_ERR_ECP_FEATURE_UNAVAILABLE MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1105 #define POLARSSL_ERR_ECP_INVALID_KEY MBEDTLS_ERR_ECP_INVALID_KEY
JMF 12:0071cb144c7a 1106 #define POLARSSL_ERR_ECP_MALLOC_FAILED MBEDTLS_ERR_ECP_ALLOC_FAILED
JMF 12:0071cb144c7a 1107 #define POLARSSL_ERR_ECP_RANDOM_FAILED MBEDTLS_ERR_ECP_RANDOM_FAILED
JMF 12:0071cb144c7a 1108 #define POLARSSL_ERR_ECP_SIG_LEN_MISMATCH MBEDTLS_ERR_ECP_SIG_LEN_MISMATCH
JMF 12:0071cb144c7a 1109 #define POLARSSL_ERR_ECP_VERIFY_FAILED MBEDTLS_ERR_ECP_VERIFY_FAILED
JMF 12:0071cb144c7a 1110 #define POLARSSL_ERR_ENTROPY_FILE_IO_ERROR MBEDTLS_ERR_ENTROPY_FILE_IO_ERROR
JMF 12:0071cb144c7a 1111 #define POLARSSL_ERR_ENTROPY_MAX_SOURCES MBEDTLS_ERR_ENTROPY_MAX_SOURCES
JMF 12:0071cb144c7a 1112 #define POLARSSL_ERR_ENTROPY_NO_SOURCES_DEFINED MBEDTLS_ERR_ENTROPY_NO_SOURCES_DEFINED
JMF 12:0071cb144c7a 1113 #define POLARSSL_ERR_ENTROPY_SOURCE_FAILED MBEDTLS_ERR_ENTROPY_SOURCE_FAILED
JMF 12:0071cb144c7a 1114 #define POLARSSL_ERR_GCM_AUTH_FAILED MBEDTLS_ERR_GCM_AUTH_FAILED
JMF 12:0071cb144c7a 1115 #define POLARSSL_ERR_GCM_BAD_INPUT MBEDTLS_ERR_GCM_BAD_INPUT
JMF 12:0071cb144c7a 1116 #define POLARSSL_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED MBEDTLS_ERR_HMAC_DRBG_ENTROPY_SOURCE_FAILED
JMF 12:0071cb144c7a 1117 #define POLARSSL_ERR_HMAC_DRBG_FILE_IO_ERROR MBEDTLS_ERR_HMAC_DRBG_FILE_IO_ERROR
JMF 12:0071cb144c7a 1118 #define POLARSSL_ERR_HMAC_DRBG_INPUT_TOO_BIG MBEDTLS_ERR_HMAC_DRBG_INPUT_TOO_BIG
JMF 12:0071cb144c7a 1119 #define POLARSSL_ERR_HMAC_DRBG_REQUEST_TOO_BIG MBEDTLS_ERR_HMAC_DRBG_REQUEST_TOO_BIG
JMF 12:0071cb144c7a 1120 #define POLARSSL_ERR_MD2_FILE_IO_ERROR MBEDTLS_ERR_MD2_FILE_IO_ERROR
JMF 12:0071cb144c7a 1121 #define POLARSSL_ERR_MD4_FILE_IO_ERROR MBEDTLS_ERR_MD4_FILE_IO_ERROR
JMF 12:0071cb144c7a 1122 #define POLARSSL_ERR_MD5_FILE_IO_ERROR MBEDTLS_ERR_MD5_FILE_IO_ERROR
JMF 12:0071cb144c7a 1123 #define POLARSSL_ERR_MD_ALLOC_FAILED MBEDTLS_ERR_MD_ALLOC_FAILED
JMF 12:0071cb144c7a 1124 #define POLARSSL_ERR_MD_BAD_INPUT_DATA MBEDTLS_ERR_MD_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1125 #define POLARSSL_ERR_MD_FEATURE_UNAVAILABLE MBEDTLS_ERR_MD_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1126 #define POLARSSL_ERR_MD_FILE_IO_ERROR MBEDTLS_ERR_MD_FILE_IO_ERROR
JMF 12:0071cb144c7a 1127 #define POLARSSL_ERR_MPI_BAD_INPUT_DATA MBEDTLS_ERR_MPI_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1128 #define POLARSSL_ERR_MPI_BUFFER_TOO_SMALL MBEDTLS_ERR_MPI_BUFFER_TOO_SMALL
JMF 12:0071cb144c7a 1129 #define POLARSSL_ERR_MPI_DIVISION_BY_ZERO MBEDTLS_ERR_MPI_DIVISION_BY_ZERO
JMF 12:0071cb144c7a 1130 #define POLARSSL_ERR_MPI_FILE_IO_ERROR MBEDTLS_ERR_MPI_FILE_IO_ERROR
JMF 12:0071cb144c7a 1131 #define POLARSSL_ERR_MPI_INVALID_CHARACTER MBEDTLS_ERR_MPI_INVALID_CHARACTER
JMF 12:0071cb144c7a 1132 #define POLARSSL_ERR_MPI_MALLOC_FAILED MBEDTLS_ERR_MPI_ALLOC_FAILED
JMF 12:0071cb144c7a 1133 #define POLARSSL_ERR_MPI_NEGATIVE_VALUE MBEDTLS_ERR_MPI_NEGATIVE_VALUE
JMF 12:0071cb144c7a 1134 #define POLARSSL_ERR_MPI_NOT_ACCEPTABLE MBEDTLS_ERR_MPI_NOT_ACCEPTABLE
JMF 12:0071cb144c7a 1135 #define POLARSSL_ERR_NET_ACCEPT_FAILED MBEDTLS_ERR_NET_ACCEPT_FAILED
JMF 12:0071cb144c7a 1136 #define POLARSSL_ERR_NET_BIND_FAILED MBEDTLS_ERR_NET_BIND_FAILED
JMF 12:0071cb144c7a 1137 #define POLARSSL_ERR_NET_CONNECT_FAILED MBEDTLS_ERR_NET_CONNECT_FAILED
JMF 12:0071cb144c7a 1138 #define POLARSSL_ERR_NET_CONN_RESET MBEDTLS_ERR_NET_CONN_RESET
JMF 12:0071cb144c7a 1139 #define POLARSSL_ERR_NET_LISTEN_FAILED MBEDTLS_ERR_NET_LISTEN_FAILED
JMF 12:0071cb144c7a 1140 #define POLARSSL_ERR_NET_RECV_FAILED MBEDTLS_ERR_NET_RECV_FAILED
JMF 12:0071cb144c7a 1141 #define POLARSSL_ERR_NET_SEND_FAILED MBEDTLS_ERR_NET_SEND_FAILED
JMF 12:0071cb144c7a 1142 #define POLARSSL_ERR_NET_SOCKET_FAILED MBEDTLS_ERR_NET_SOCKET_FAILED
JMF 12:0071cb144c7a 1143 #define POLARSSL_ERR_NET_TIMEOUT MBEDTLS_ERR_SSL_TIMEOUT
JMF 12:0071cb144c7a 1144 #define POLARSSL_ERR_NET_UNKNOWN_HOST MBEDTLS_ERR_NET_UNKNOWN_HOST
JMF 12:0071cb144c7a 1145 #define POLARSSL_ERR_NET_WANT_READ MBEDTLS_ERR_SSL_WANT_READ
JMF 12:0071cb144c7a 1146 #define POLARSSL_ERR_NET_WANT_WRITE MBEDTLS_ERR_SSL_WANT_WRITE
JMF 12:0071cb144c7a 1147 #define POLARSSL_ERR_OID_BUF_TOO_SMALL MBEDTLS_ERR_OID_BUF_TOO_SMALL
JMF 12:0071cb144c7a 1148 #define POLARSSL_ERR_OID_NOT_FOUND MBEDTLS_ERR_OID_NOT_FOUND
JMF 12:0071cb144c7a 1149 #define POLARSSL_ERR_PADLOCK_DATA_MISALIGNED MBEDTLS_ERR_PADLOCK_DATA_MISALIGNED
JMF 12:0071cb144c7a 1150 #define POLARSSL_ERR_PBKDF2_BAD_INPUT_DATA MBEDTLS_ERR_PBKDF2_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1151 #define POLARSSL_ERR_PEM_BAD_INPUT_DATA MBEDTLS_ERR_PEM_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1152 #define POLARSSL_ERR_PEM_FEATURE_UNAVAILABLE MBEDTLS_ERR_PEM_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1153 #define POLARSSL_ERR_PEM_INVALID_DATA MBEDTLS_ERR_PEM_INVALID_DATA
JMF 12:0071cb144c7a 1154 #define POLARSSL_ERR_PEM_INVALID_ENC_IV MBEDTLS_ERR_PEM_INVALID_ENC_IV
JMF 12:0071cb144c7a 1155 #define POLARSSL_ERR_PEM_MALLOC_FAILED MBEDTLS_ERR_PEM_ALLOC_FAILED
JMF 12:0071cb144c7a 1156 #define POLARSSL_ERR_PEM_NO_HEADER_FOOTER_PRESENT MBEDTLS_ERR_PEM_NO_HEADER_FOOTER_PRESENT
JMF 12:0071cb144c7a 1157 #define POLARSSL_ERR_PEM_PASSWORD_MISMATCH MBEDTLS_ERR_PEM_PASSWORD_MISMATCH
JMF 12:0071cb144c7a 1158 #define POLARSSL_ERR_PEM_PASSWORD_REQUIRED MBEDTLS_ERR_PEM_PASSWORD_REQUIRED
JMF 12:0071cb144c7a 1159 #define POLARSSL_ERR_PEM_UNKNOWN_ENC_ALG MBEDTLS_ERR_PEM_UNKNOWN_ENC_ALG
JMF 12:0071cb144c7a 1160 #define POLARSSL_ERR_PKCS12_BAD_INPUT_DATA MBEDTLS_ERR_PKCS12_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1161 #define POLARSSL_ERR_PKCS12_FEATURE_UNAVAILABLE MBEDTLS_ERR_PKCS12_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1162 #define POLARSSL_ERR_PKCS12_PASSWORD_MISMATCH MBEDTLS_ERR_PKCS12_PASSWORD_MISMATCH
JMF 12:0071cb144c7a 1163 #define POLARSSL_ERR_PKCS12_PBE_INVALID_FORMAT MBEDTLS_ERR_PKCS12_PBE_INVALID_FORMAT
JMF 12:0071cb144c7a 1164 #define POLARSSL_ERR_PKCS5_BAD_INPUT_DATA MBEDTLS_ERR_PKCS5_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1165 #define POLARSSL_ERR_PKCS5_FEATURE_UNAVAILABLE MBEDTLS_ERR_PKCS5_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1166 #define POLARSSL_ERR_PKCS5_INVALID_FORMAT MBEDTLS_ERR_PKCS5_INVALID_FORMAT
JMF 12:0071cb144c7a 1167 #define POLARSSL_ERR_PKCS5_PASSWORD_MISMATCH MBEDTLS_ERR_PKCS5_PASSWORD_MISMATCH
JMF 12:0071cb144c7a 1168 #define POLARSSL_ERR_PK_BAD_INPUT_DATA MBEDTLS_ERR_PK_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1169 #define POLARSSL_ERR_PK_FEATURE_UNAVAILABLE MBEDTLS_ERR_PK_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1170 #define POLARSSL_ERR_PK_FILE_IO_ERROR MBEDTLS_ERR_PK_FILE_IO_ERROR
JMF 12:0071cb144c7a 1171 #define POLARSSL_ERR_PK_INVALID_ALG MBEDTLS_ERR_PK_INVALID_ALG
JMF 12:0071cb144c7a 1172 #define POLARSSL_ERR_PK_INVALID_PUBKEY MBEDTLS_ERR_PK_INVALID_PUBKEY
JMF 12:0071cb144c7a 1173 #define POLARSSL_ERR_PK_KEY_INVALID_FORMAT MBEDTLS_ERR_PK_KEY_INVALID_FORMAT
JMF 12:0071cb144c7a 1174 #define POLARSSL_ERR_PK_KEY_INVALID_VERSION MBEDTLS_ERR_PK_KEY_INVALID_VERSION
JMF 12:0071cb144c7a 1175 #define POLARSSL_ERR_PK_MALLOC_FAILED MBEDTLS_ERR_PK_ALLOC_FAILED
JMF 12:0071cb144c7a 1176 #define POLARSSL_ERR_PK_PASSWORD_MISMATCH MBEDTLS_ERR_PK_PASSWORD_MISMATCH
JMF 12:0071cb144c7a 1177 #define POLARSSL_ERR_PK_PASSWORD_REQUIRED MBEDTLS_ERR_PK_PASSWORD_REQUIRED
JMF 12:0071cb144c7a 1178 #define POLARSSL_ERR_PK_SIG_LEN_MISMATCH MBEDTLS_ERR_PK_SIG_LEN_MISMATCH
JMF 12:0071cb144c7a 1179 #define POLARSSL_ERR_PK_TYPE_MISMATCH MBEDTLS_ERR_PK_TYPE_MISMATCH
JMF 12:0071cb144c7a 1180 #define POLARSSL_ERR_PK_UNKNOWN_NAMED_CURVE MBEDTLS_ERR_PK_UNKNOWN_NAMED_CURVE
JMF 12:0071cb144c7a 1181 #define POLARSSL_ERR_PK_UNKNOWN_PK_ALG MBEDTLS_ERR_PK_UNKNOWN_PK_ALG
JMF 12:0071cb144c7a 1182 #define POLARSSL_ERR_RIPEMD160_FILE_IO_ERROR MBEDTLS_ERR_RIPEMD160_FILE_IO_ERROR
JMF 12:0071cb144c7a 1183 #define POLARSSL_ERR_RSA_BAD_INPUT_DATA MBEDTLS_ERR_RSA_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1184 #define POLARSSL_ERR_RSA_INVALID_PADDING MBEDTLS_ERR_RSA_INVALID_PADDING
JMF 12:0071cb144c7a 1185 #define POLARSSL_ERR_RSA_KEY_CHECK_FAILED MBEDTLS_ERR_RSA_KEY_CHECK_FAILED
JMF 12:0071cb144c7a 1186 #define POLARSSL_ERR_RSA_KEY_GEN_FAILED MBEDTLS_ERR_RSA_KEY_GEN_FAILED
JMF 12:0071cb144c7a 1187 #define POLARSSL_ERR_RSA_OUTPUT_TOO_LARGE MBEDTLS_ERR_RSA_OUTPUT_TOO_LARGE
JMF 12:0071cb144c7a 1188 #define POLARSSL_ERR_RSA_PRIVATE_FAILED MBEDTLS_ERR_RSA_PRIVATE_FAILED
JMF 12:0071cb144c7a 1189 #define POLARSSL_ERR_RSA_PUBLIC_FAILED MBEDTLS_ERR_RSA_PUBLIC_FAILED
JMF 12:0071cb144c7a 1190 #define POLARSSL_ERR_RSA_RNG_FAILED MBEDTLS_ERR_RSA_RNG_FAILED
JMF 12:0071cb144c7a 1191 #define POLARSSL_ERR_RSA_VERIFY_FAILED MBEDTLS_ERR_RSA_VERIFY_FAILED
JMF 12:0071cb144c7a 1192 #define POLARSSL_ERR_SHA1_FILE_IO_ERROR MBEDTLS_ERR_SHA1_FILE_IO_ERROR
JMF 12:0071cb144c7a 1193 #define POLARSSL_ERR_SHA256_FILE_IO_ERROR MBEDTLS_ERR_SHA256_FILE_IO_ERROR
JMF 12:0071cb144c7a 1194 #define POLARSSL_ERR_SHA512_FILE_IO_ERROR MBEDTLS_ERR_SHA512_FILE_IO_ERROR
JMF 12:0071cb144c7a 1195 #define POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE
JMF 12:0071cb144c7a 1196 #define POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_REQUEST
JMF 12:0071cb144c7a 1197 #define POLARSSL_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY MBEDTLS_ERR_SSL_BAD_HS_CERTIFICATE_VERIFY
JMF 12:0071cb144c7a 1198 #define POLARSSL_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC MBEDTLS_ERR_SSL_BAD_HS_CHANGE_CIPHER_SPEC
JMF 12:0071cb144c7a 1199 #define POLARSSL_ERR_SSL_BAD_HS_CLIENT_HELLO MBEDTLS_ERR_SSL_BAD_HS_CLIENT_HELLO
JMF 12:0071cb144c7a 1200 #define POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE
JMF 12:0071cb144c7a 1201 #define POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_CS
JMF 12:0071cb144c7a 1202 #define POLARSSL_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP
JMF 12:0071cb144c7a 1203 #define POLARSSL_ERR_SSL_BAD_HS_FINISHED MBEDTLS_ERR_SSL_BAD_HS_FINISHED
JMF 12:0071cb144c7a 1204 #define POLARSSL_ERR_SSL_BAD_HS_NEW_SESSION_TICKET MBEDTLS_ERR_SSL_BAD_HS_NEW_SESSION_TICKET
JMF 12:0071cb144c7a 1205 #define POLARSSL_ERR_SSL_BAD_HS_PROTOCOL_VERSION MBEDTLS_ERR_SSL_BAD_HS_PROTOCOL_VERSION
JMF 12:0071cb144c7a 1206 #define POLARSSL_ERR_SSL_BAD_HS_SERVER_HELLO MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO
JMF 12:0071cb144c7a 1207 #define POLARSSL_ERR_SSL_BAD_HS_SERVER_HELLO_DONE MBEDTLS_ERR_SSL_BAD_HS_SERVER_HELLO_DONE
JMF 12:0071cb144c7a 1208 #define POLARSSL_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE MBEDTLS_ERR_SSL_BAD_HS_SERVER_KEY_EXCHANGE
JMF 12:0071cb144c7a 1209 #define POLARSSL_ERR_SSL_BAD_INPUT_DATA MBEDTLS_ERR_SSL_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1210 #define POLARSSL_ERR_SSL_BUFFER_TOO_SMALL MBEDTLS_ERR_SSL_BUFFER_TOO_SMALL
JMF 12:0071cb144c7a 1211 #define POLARSSL_ERR_SSL_CA_CHAIN_REQUIRED MBEDTLS_ERR_SSL_CA_CHAIN_REQUIRED
JMF 12:0071cb144c7a 1212 #define POLARSSL_ERR_SSL_CERTIFICATE_REQUIRED MBEDTLS_ERR_SSL_CERTIFICATE_REQUIRED
JMF 12:0071cb144c7a 1213 #define POLARSSL_ERR_SSL_CERTIFICATE_TOO_LARGE MBEDTLS_ERR_SSL_CERTIFICATE_TOO_LARGE
JMF 12:0071cb144c7a 1214 #define POLARSSL_ERR_SSL_COMPRESSION_FAILED MBEDTLS_ERR_SSL_COMPRESSION_FAILED
JMF 12:0071cb144c7a 1215 #define POLARSSL_ERR_SSL_CONN_EOF MBEDTLS_ERR_SSL_CONN_EOF
JMF 12:0071cb144c7a 1216 #define POLARSSL_ERR_SSL_COUNTER_WRAPPING MBEDTLS_ERR_SSL_COUNTER_WRAPPING
JMF 12:0071cb144c7a 1217 #define POLARSSL_ERR_SSL_FATAL_ALERT_MESSAGE MBEDTLS_ERR_SSL_FATAL_ALERT_MESSAGE
JMF 12:0071cb144c7a 1218 #define POLARSSL_ERR_SSL_FEATURE_UNAVAILABLE MBEDTLS_ERR_SSL_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1219 #define POLARSSL_ERR_SSL_HELLO_VERIFY_REQUIRED MBEDTLS_ERR_SSL_HELLO_VERIFY_REQUIRED
JMF 12:0071cb144c7a 1220 #define POLARSSL_ERR_SSL_HW_ACCEL_FAILED MBEDTLS_ERR_SSL_HW_ACCEL_FAILED
JMF 12:0071cb144c7a 1221 #define POLARSSL_ERR_SSL_HW_ACCEL_FALLTHROUGH MBEDTLS_ERR_SSL_HW_ACCEL_FALLTHROUGH
JMF 12:0071cb144c7a 1222 #define POLARSSL_ERR_SSL_INTERNAL_ERROR MBEDTLS_ERR_SSL_INTERNAL_ERROR
JMF 12:0071cb144c7a 1223 #define POLARSSL_ERR_SSL_INVALID_MAC MBEDTLS_ERR_SSL_INVALID_MAC
JMF 12:0071cb144c7a 1224 #define POLARSSL_ERR_SSL_INVALID_RECORD MBEDTLS_ERR_SSL_INVALID_RECORD
JMF 12:0071cb144c7a 1225 #define POLARSSL_ERR_SSL_MALLOC_FAILED MBEDTLS_ERR_SSL_ALLOC_FAILED
JMF 12:0071cb144c7a 1226 #define POLARSSL_ERR_SSL_NO_CIPHER_CHOSEN MBEDTLS_ERR_SSL_NO_CIPHER_CHOSEN
JMF 12:0071cb144c7a 1227 #define POLARSSL_ERR_SSL_NO_CLIENT_CERTIFICATE MBEDTLS_ERR_SSL_NO_CLIENT_CERTIFICATE
JMF 12:0071cb144c7a 1228 #define POLARSSL_ERR_SSL_NO_RNG MBEDTLS_ERR_SSL_NO_RNG
JMF 12:0071cb144c7a 1229 #define POLARSSL_ERR_SSL_NO_USABLE_CIPHERSUITE MBEDTLS_ERR_SSL_NO_USABLE_CIPHERSUITE
JMF 12:0071cb144c7a 1230 #define POLARSSL_ERR_SSL_PEER_CLOSE_NOTIFY MBEDTLS_ERR_SSL_PEER_CLOSE_NOTIFY
JMF 12:0071cb144c7a 1231 #define POLARSSL_ERR_SSL_PEER_VERIFY_FAILED MBEDTLS_ERR_SSL_PEER_VERIFY_FAILED
JMF 12:0071cb144c7a 1232 #define POLARSSL_ERR_SSL_PK_TYPE_MISMATCH MBEDTLS_ERR_SSL_PK_TYPE_MISMATCH
JMF 12:0071cb144c7a 1233 #define POLARSSL_ERR_SSL_PRIVATE_KEY_REQUIRED MBEDTLS_ERR_SSL_PRIVATE_KEY_REQUIRED
JMF 12:0071cb144c7a 1234 #define POLARSSL_ERR_SSL_SESSION_TICKET_EXPIRED MBEDTLS_ERR_SSL_SESSION_TICKET_EXPIRED
JMF 12:0071cb144c7a 1235 #define POLARSSL_ERR_SSL_UNEXPECTED_MESSAGE MBEDTLS_ERR_SSL_UNEXPECTED_MESSAGE
JMF 12:0071cb144c7a 1236 #define POLARSSL_ERR_SSL_UNKNOWN_CIPHER MBEDTLS_ERR_SSL_UNKNOWN_CIPHER
JMF 12:0071cb144c7a 1237 #define POLARSSL_ERR_SSL_UNKNOWN_IDENTITY MBEDTLS_ERR_SSL_UNKNOWN_IDENTITY
JMF 12:0071cb144c7a 1238 #define POLARSSL_ERR_SSL_WAITING_SERVER_HELLO_RENEGO MBEDTLS_ERR_SSL_WAITING_SERVER_HELLO_RENEGO
JMF 12:0071cb144c7a 1239 #define POLARSSL_ERR_THREADING_BAD_INPUT_DATA MBEDTLS_ERR_THREADING_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1240 #define POLARSSL_ERR_THREADING_FEATURE_UNAVAILABLE MBEDTLS_ERR_THREADING_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1241 #define POLARSSL_ERR_THREADING_MUTEX_ERROR MBEDTLS_ERR_THREADING_MUTEX_ERROR
JMF 12:0071cb144c7a 1242 #define POLARSSL_ERR_X509_BAD_INPUT_DATA MBEDTLS_ERR_X509_BAD_INPUT_DATA
JMF 12:0071cb144c7a 1243 #define POLARSSL_ERR_X509_CERT_UNKNOWN_FORMAT MBEDTLS_ERR_X509_CERT_UNKNOWN_FORMAT
JMF 12:0071cb144c7a 1244 #define POLARSSL_ERR_X509_CERT_VERIFY_FAILED MBEDTLS_ERR_X509_CERT_VERIFY_FAILED
JMF 12:0071cb144c7a 1245 #define POLARSSL_ERR_X509_FEATURE_UNAVAILABLE MBEDTLS_ERR_X509_FEATURE_UNAVAILABLE
JMF 12:0071cb144c7a 1246 #define POLARSSL_ERR_X509_FILE_IO_ERROR MBEDTLS_ERR_X509_FILE_IO_ERROR
JMF 12:0071cb144c7a 1247 #define POLARSSL_ERR_X509_INVALID_ALG MBEDTLS_ERR_X509_INVALID_ALG
JMF 12:0071cb144c7a 1248 #define POLARSSL_ERR_X509_INVALID_DATE MBEDTLS_ERR_X509_INVALID_DATE
JMF 12:0071cb144c7a 1249 #define POLARSSL_ERR_X509_INVALID_EXTENSIONS MBEDTLS_ERR_X509_INVALID_EXTENSIONS
JMF 12:0071cb144c7a 1250 #define POLARSSL_ERR_X509_INVALID_FORMAT MBEDTLS_ERR_X509_INVALID_FORMAT
JMF 12:0071cb144c7a 1251 #define POLARSSL_ERR_X509_INVALID_NAME MBEDTLS_ERR_X509_INVALID_NAME
JMF 12:0071cb144c7a 1252 #define POLARSSL_ERR_X509_INVALID_SERIAL MBEDTLS_ERR_X509_INVALID_SERIAL
JMF 12:0071cb144c7a 1253 #define POLARSSL_ERR_X509_INVALID_SIGNATURE MBEDTLS_ERR_X509_INVALID_SIGNATURE
JMF 12:0071cb144c7a 1254 #define POLARSSL_ERR_X509_INVALID_VERSION MBEDTLS_ERR_X509_INVALID_VERSION
JMF 12:0071cb144c7a 1255 #define POLARSSL_ERR_X509_MALLOC_FAILED MBEDTLS_ERR_X509_ALLOC_FAILED
JMF 12:0071cb144c7a 1256 #define POLARSSL_ERR_X509_SIG_MISMATCH MBEDTLS_ERR_X509_SIG_MISMATCH
JMF 12:0071cb144c7a 1257 #define POLARSSL_ERR_X509_UNKNOWN_OID MBEDTLS_ERR_X509_UNKNOWN_OID
JMF 12:0071cb144c7a 1258 #define POLARSSL_ERR_X509_UNKNOWN_SIG_ALG MBEDTLS_ERR_X509_UNKNOWN_SIG_ALG
JMF 12:0071cb144c7a 1259 #define POLARSSL_ERR_X509_UNKNOWN_VERSION MBEDTLS_ERR_X509_UNKNOWN_VERSION
JMF 12:0071cb144c7a 1260 #define POLARSSL_ERR_XTEA_INVALID_INPUT_LENGTH MBEDTLS_ERR_XTEA_INVALID_INPUT_LENGTH
JMF 12:0071cb144c7a 1261 #define POLARSSL_GCM_H MBEDTLS_GCM_H
JMF 12:0071cb144c7a 1262 #define POLARSSL_HAVEGE_H MBEDTLS_HAVEGE_H
JMF 12:0071cb144c7a 1263 #define POLARSSL_HAVE_INT32 MBEDTLS_HAVE_INT32
JMF 12:0071cb144c7a 1264 #define POLARSSL_HAVE_INT64 MBEDTLS_HAVE_INT64
JMF 12:0071cb144c7a 1265 #define POLARSSL_HAVE_UDBL MBEDTLS_HAVE_UDBL
JMF 12:0071cb144c7a 1266 #define POLARSSL_HAVE_X86 MBEDTLS_HAVE_X86
JMF 12:0071cb144c7a 1267 #define POLARSSL_HAVE_X86_64 MBEDTLS_HAVE_X86_64
JMF 12:0071cb144c7a 1268 #define POLARSSL_HMAC_DRBG_H MBEDTLS_HMAC_DRBG_H
JMF 12:0071cb144c7a 1269 #define POLARSSL_HMAC_DRBG_PR_OFF MBEDTLS_HMAC_DRBG_PR_OFF
JMF 12:0071cb144c7a 1270 #define POLARSSL_HMAC_DRBG_PR_ON MBEDTLS_HMAC_DRBG_PR_ON
JMF 12:0071cb144c7a 1271 #define POLARSSL_KEY_EXCHANGE_DHE_PSK MBEDTLS_KEY_EXCHANGE_DHE_PSK
JMF 12:0071cb144c7a 1272 #define POLARSSL_KEY_EXCHANGE_DHE_RSA MBEDTLS_KEY_EXCHANGE_DHE_RSA
JMF 12:0071cb144c7a 1273 #define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA
JMF 12:0071cb144c7a 1274 #define POLARSSL_KEY_EXCHANGE_ECDHE_PSK MBEDTLS_KEY_EXCHANGE_ECDHE_PSK
JMF 12:0071cb144c7a 1275 #define POLARSSL_KEY_EXCHANGE_ECDHE_RSA MBEDTLS_KEY_EXCHANGE_ECDHE_RSA
JMF 12:0071cb144c7a 1276 #define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA
JMF 12:0071cb144c7a 1277 #define POLARSSL_KEY_EXCHANGE_ECDH_RSA MBEDTLS_KEY_EXCHANGE_ECDH_RSA
JMF 12:0071cb144c7a 1278 #define POLARSSL_KEY_EXCHANGE_NONE MBEDTLS_KEY_EXCHANGE_NONE
JMF 12:0071cb144c7a 1279 #define POLARSSL_KEY_EXCHANGE_PSK MBEDTLS_KEY_EXCHANGE_PSK
JMF 12:0071cb144c7a 1280 #define POLARSSL_KEY_EXCHANGE_RSA MBEDTLS_KEY_EXCHANGE_RSA
JMF 12:0071cb144c7a 1281 #define POLARSSL_KEY_EXCHANGE_RSA_PSK MBEDTLS_KEY_EXCHANGE_RSA_PSK
JMF 12:0071cb144c7a 1282 #define POLARSSL_KEY_EXCHANGE__SOME__ECDHE_ENABLED MBEDTLS_KEY_EXCHANGE__SOME__ECDHE_ENABLED
JMF 12:0071cb144c7a 1283 #define POLARSSL_KEY_EXCHANGE__SOME__PSK_ENABLED MBEDTLS_KEY_EXCHANGE__SOME__PSK_ENABLED
JMF 12:0071cb144c7a 1284 #define POLARSSL_KEY_EXCHANGE__WITH_CERT__ENABLED MBEDTLS_KEY_EXCHANGE__WITH_CERT__ENABLED
JMF 12:0071cb144c7a 1285 #define POLARSSL_KEY_LENGTH_DES MBEDTLS_KEY_LENGTH_DES
JMF 12:0071cb144c7a 1286 #define POLARSSL_KEY_LENGTH_DES_EDE MBEDTLS_KEY_LENGTH_DES_EDE
JMF 12:0071cb144c7a 1287 #define POLARSSL_KEY_LENGTH_DES_EDE3 MBEDTLS_KEY_LENGTH_DES_EDE3
JMF 12:0071cb144c7a 1288 #define POLARSSL_KEY_LENGTH_NONE MBEDTLS_KEY_LENGTH_NONE
JMF 12:0071cb144c7a 1289 #define POLARSSL_MAX_BLOCK_LENGTH MBEDTLS_MAX_BLOCK_LENGTH
JMF 12:0071cb144c7a 1290 #define POLARSSL_MAX_IV_LENGTH MBEDTLS_MAX_IV_LENGTH
JMF 12:0071cb144c7a 1291 #define POLARSSL_MD2_H MBEDTLS_MD2_H
JMF 12:0071cb144c7a 1292 #define POLARSSL_MD4_H MBEDTLS_MD4_H
JMF 12:0071cb144c7a 1293 #define POLARSSL_MD5_H MBEDTLS_MD5_H
JMF 12:0071cb144c7a 1294 #define POLARSSL_MD_H MBEDTLS_MD_H
JMF 12:0071cb144c7a 1295 #define POLARSSL_MD_MAX_SIZE MBEDTLS_MD_MAX_SIZE
JMF 12:0071cb144c7a 1296 #define POLARSSL_MD_MD2 MBEDTLS_MD_MD2
JMF 12:0071cb144c7a 1297 #define POLARSSL_MD_MD4 MBEDTLS_MD_MD4
JMF 12:0071cb144c7a 1298 #define POLARSSL_MD_MD5 MBEDTLS_MD_MD5
JMF 12:0071cb144c7a 1299 #define POLARSSL_MD_NONE MBEDTLS_MD_NONE
JMF 12:0071cb144c7a 1300 #define POLARSSL_MD_RIPEMD160 MBEDTLS_MD_RIPEMD160
JMF 12:0071cb144c7a 1301 #define POLARSSL_MD_SHA1 MBEDTLS_MD_SHA1
JMF 12:0071cb144c7a 1302 #define POLARSSL_MD_SHA224 MBEDTLS_MD_SHA224
JMF 12:0071cb144c7a 1303 #define POLARSSL_MD_SHA256 MBEDTLS_MD_SHA256
JMF 12:0071cb144c7a 1304 #define POLARSSL_MD_SHA384 MBEDTLS_MD_SHA384
JMF 12:0071cb144c7a 1305 #define POLARSSL_MD_SHA512 MBEDTLS_MD_SHA512
JMF 12:0071cb144c7a 1306 #define POLARSSL_MD_WRAP_H MBEDTLS_MD_WRAP_H
JMF 12:0071cb144c7a 1307 #define POLARSSL_MEMORY_BUFFER_ALLOC_H MBEDTLS_MEMORY_BUFFER_ALLOC_H
JMF 12:0071cb144c7a 1308 #define POLARSSL_MEMORY_H MBEDTLS_MEMORY_H
JMF 12:0071cb144c7a 1309 #define POLARSSL_MODE_CBC MBEDTLS_MODE_CBC
JMF 12:0071cb144c7a 1310 #define POLARSSL_MODE_CCM MBEDTLS_MODE_CCM
JMF 12:0071cb144c7a 1311 #define POLARSSL_MODE_CFB MBEDTLS_MODE_CFB
JMF 12:0071cb144c7a 1312 #define POLARSSL_MODE_CTR MBEDTLS_MODE_CTR
JMF 12:0071cb144c7a 1313 #define POLARSSL_MODE_ECB MBEDTLS_MODE_ECB
JMF 12:0071cb144c7a 1314 #define POLARSSL_MODE_GCM MBEDTLS_MODE_GCM
JMF 12:0071cb144c7a 1315 #define POLARSSL_MODE_NONE MBEDTLS_MODE_NONE
JMF 12:0071cb144c7a 1316 #define POLARSSL_MODE_OFB MBEDTLS_MODE_OFB
JMF 12:0071cb144c7a 1317 #define POLARSSL_MODE_STREAM MBEDTLS_MODE_STREAM
JMF 12:0071cb144c7a 1318 #define POLARSSL_MPI_MAX_BITS MBEDTLS_MPI_MAX_BITS
JMF 12:0071cb144c7a 1319 #define POLARSSL_MPI_MAX_BITS_SCALE100 MBEDTLS_MPI_MAX_BITS_SCALE100
JMF 12:0071cb144c7a 1320 #define POLARSSL_MPI_MAX_LIMBS MBEDTLS_MPI_MAX_LIMBS
JMF 12:0071cb144c7a 1321 #define POLARSSL_MPI_RW_BUFFER_SIZE MBEDTLS_MPI_RW_BUFFER_SIZE
JMF 12:0071cb144c7a 1322 #define POLARSSL_NET_H MBEDTLS_NET_H
JMF 12:0071cb144c7a 1323 #define POLARSSL_NET_LISTEN_BACKLOG MBEDTLS_NET_LISTEN_BACKLOG
JMF 12:0071cb144c7a 1324 #define POLARSSL_OID_H MBEDTLS_OID_H
JMF 12:0071cb144c7a 1325 #define POLARSSL_OPERATION_NONE MBEDTLS_OPERATION_NONE
JMF 12:0071cb144c7a 1326 #define POLARSSL_PADDING_NONE MBEDTLS_PADDING_NONE
JMF 12:0071cb144c7a 1327 #define POLARSSL_PADDING_ONE_AND_ZEROS MBEDTLS_PADDING_ONE_AND_ZEROS
JMF 12:0071cb144c7a 1328 #define POLARSSL_PADDING_PKCS7 MBEDTLS_PADDING_PKCS7
JMF 12:0071cb144c7a 1329 #define POLARSSL_PADDING_ZEROS MBEDTLS_PADDING_ZEROS
JMF 12:0071cb144c7a 1330 #define POLARSSL_PADDING_ZEROS_AND_LEN MBEDTLS_PADDING_ZEROS_AND_LEN
JMF 12:0071cb144c7a 1331 #define POLARSSL_PADLOCK_H MBEDTLS_PADLOCK_H
JMF 12:0071cb144c7a 1332 #define POLARSSL_PBKDF2_H MBEDTLS_PBKDF2_H
JMF 12:0071cb144c7a 1333 #define POLARSSL_PEM_H MBEDTLS_PEM_H
JMF 12:0071cb144c7a 1334 #define POLARSSL_PKCS11_H MBEDTLS_PKCS11_H
JMF 12:0071cb144c7a 1335 #define POLARSSL_PKCS12_H MBEDTLS_PKCS12_H
JMF 12:0071cb144c7a 1336 #define POLARSSL_PKCS5_H MBEDTLS_PKCS5_H
JMF 12:0071cb144c7a 1337 #define POLARSSL_PK_DEBUG_ECP MBEDTLS_PK_DEBUG_ECP
JMF 12:0071cb144c7a 1338 #define POLARSSL_PK_DEBUG_MAX_ITEMS MBEDTLS_PK_DEBUG_MAX_ITEMS
JMF 12:0071cb144c7a 1339 #define POLARSSL_PK_DEBUG_MPI MBEDTLS_PK_DEBUG_MPI
JMF 12:0071cb144c7a 1340 #define POLARSSL_PK_DEBUG_NONE MBEDTLS_PK_DEBUG_NONE
JMF 12:0071cb144c7a 1341 #define POLARSSL_PK_ECDSA MBEDTLS_PK_ECDSA
JMF 12:0071cb144c7a 1342 #define POLARSSL_PK_ECKEY MBEDTLS_PK_ECKEY
JMF 12:0071cb144c7a 1343 #define POLARSSL_PK_ECKEY_DH MBEDTLS_PK_ECKEY_DH
JMF 12:0071cb144c7a 1344 #define POLARSSL_PK_H MBEDTLS_PK_H
JMF 12:0071cb144c7a 1345 #define POLARSSL_PK_NONE MBEDTLS_PK_NONE
JMF 12:0071cb144c7a 1346 #define POLARSSL_PK_RSA MBEDTLS_PK_RSA
JMF 12:0071cb144c7a 1347 #define POLARSSL_PK_RSASSA_PSS MBEDTLS_PK_RSASSA_PSS
JMF 12:0071cb144c7a 1348 #define POLARSSL_PK_RSA_ALT MBEDTLS_PK_RSA_ALT
JMF 12:0071cb144c7a 1349 #define POLARSSL_PK_WRAP_H MBEDTLS_PK_WRAP_H
JMF 12:0071cb144c7a 1350 #define POLARSSL_PLATFORM_H MBEDTLS_PLATFORM_H
JMF 12:0071cb144c7a 1351 #define POLARSSL_PREMASTER_SIZE MBEDTLS_PREMASTER_SIZE
JMF 12:0071cb144c7a 1352 #define POLARSSL_RIPEMD160_H MBEDTLS_RIPEMD160_H
JMF 12:0071cb144c7a 1353 #define POLARSSL_RSA_H MBEDTLS_RSA_H
JMF 12:0071cb144c7a 1354 #define POLARSSL_SHA1_H MBEDTLS_SHA1_H
JMF 12:0071cb144c7a 1355 #define POLARSSL_SHA256_H MBEDTLS_SHA256_H
JMF 12:0071cb144c7a 1356 #define POLARSSL_SHA512_H MBEDTLS_SHA512_H
JMF 12:0071cb144c7a 1357 #define POLARSSL_SSL_CACHE_H MBEDTLS_SSL_CACHE_H
JMF 12:0071cb144c7a 1358 #define POLARSSL_SSL_CIPHERSUITES_H MBEDTLS_SSL_CIPHERSUITES_H
JMF 12:0071cb144c7a 1359 #define POLARSSL_SSL_COOKIE_H MBEDTLS_SSL_COOKIE_H
JMF 12:0071cb144c7a 1360 #define POLARSSL_SSL_H MBEDTLS_SSL_H
JMF 12:0071cb144c7a 1361 #define POLARSSL_THREADING_H MBEDTLS_THREADING_H
JMF 12:0071cb144c7a 1362 #define POLARSSL_THREADING_IMPL MBEDTLS_THREADING_IMPL
JMF 12:0071cb144c7a 1363 #define POLARSSL_TIMING_H MBEDTLS_TIMING_H
JMF 12:0071cb144c7a 1364 #define POLARSSL_VERSION_H MBEDTLS_VERSION_H
JMF 12:0071cb144c7a 1365 #define POLARSSL_VERSION_MAJOR MBEDTLS_VERSION_MAJOR
JMF 12:0071cb144c7a 1366 #define POLARSSL_VERSION_MINOR MBEDTLS_VERSION_MINOR
JMF 12:0071cb144c7a 1367 #define POLARSSL_VERSION_NUMBER MBEDTLS_VERSION_NUMBER
JMF 12:0071cb144c7a 1368 #define POLARSSL_VERSION_PATCH MBEDTLS_VERSION_PATCH
JMF 12:0071cb144c7a 1369 #define POLARSSL_VERSION_STRING MBEDTLS_VERSION_STRING
JMF 12:0071cb144c7a 1370 #define POLARSSL_VERSION_STRING_FULL MBEDTLS_VERSION_STRING_FULL
JMF 12:0071cb144c7a 1371 #define POLARSSL_X509_CRL_H MBEDTLS_X509_CRL_H
JMF 12:0071cb144c7a 1372 #define POLARSSL_X509_CRT_H MBEDTLS_X509_CRT_H
JMF 12:0071cb144c7a 1373 #define POLARSSL_X509_CSR_H MBEDTLS_X509_CSR_H
JMF 12:0071cb144c7a 1374 #define POLARSSL_X509_H MBEDTLS_X509_H
JMF 12:0071cb144c7a 1375 #define POLARSSL_XTEA_H MBEDTLS_XTEA_H
JMF 12:0071cb144c7a 1376 #define RSA_CRYPT MBEDTLS_RSA_CRYPT
JMF 12:0071cb144c7a 1377 #define RSA_PKCS_V15 MBEDTLS_RSA_PKCS_V15
JMF 12:0071cb144c7a 1378 #define RSA_PKCS_V21 MBEDTLS_RSA_PKCS_V21
JMF 12:0071cb144c7a 1379 #define RSA_PRIVATE MBEDTLS_RSA_PRIVATE
JMF 12:0071cb144c7a 1380 #define RSA_PUBLIC MBEDTLS_RSA_PUBLIC
JMF 12:0071cb144c7a 1381 #define RSA_SALT_LEN_ANY MBEDTLS_RSA_SALT_LEN_ANY
JMF 12:0071cb144c7a 1382 #define RSA_SIGN MBEDTLS_RSA_SIGN
JMF 12:0071cb144c7a 1383 #define SSL_ALERT_LEVEL_FATAL MBEDTLS_SSL_ALERT_LEVEL_FATAL
JMF 12:0071cb144c7a 1384 #define SSL_ALERT_LEVEL_WARNING MBEDTLS_SSL_ALERT_LEVEL_WARNING
JMF 12:0071cb144c7a 1385 #define SSL_ALERT_MSG_ACCESS_DENIED MBEDTLS_SSL_ALERT_MSG_ACCESS_DENIED
JMF 12:0071cb144c7a 1386 #define SSL_ALERT_MSG_BAD_CERT MBEDTLS_SSL_ALERT_MSG_BAD_CERT
JMF 12:0071cb144c7a 1387 #define SSL_ALERT_MSG_BAD_RECORD_MAC MBEDTLS_SSL_ALERT_MSG_BAD_RECORD_MAC
JMF 12:0071cb144c7a 1388 #define SSL_ALERT_MSG_CERT_EXPIRED MBEDTLS_SSL_ALERT_MSG_CERT_EXPIRED
JMF 12:0071cb144c7a 1389 #define SSL_ALERT_MSG_CERT_REVOKED MBEDTLS_SSL_ALERT_MSG_CERT_REVOKED
JMF 12:0071cb144c7a 1390 #define SSL_ALERT_MSG_CERT_UNKNOWN MBEDTLS_SSL_ALERT_MSG_CERT_UNKNOWN
JMF 12:0071cb144c7a 1391 #define SSL_ALERT_MSG_CLOSE_NOTIFY MBEDTLS_SSL_ALERT_MSG_CLOSE_NOTIFY
JMF 12:0071cb144c7a 1392 #define SSL_ALERT_MSG_DECODE_ERROR MBEDTLS_SSL_ALERT_MSG_DECODE_ERROR
JMF 12:0071cb144c7a 1393 #define SSL_ALERT_MSG_DECOMPRESSION_FAILURE MBEDTLS_SSL_ALERT_MSG_DECOMPRESSION_FAILURE
JMF 12:0071cb144c7a 1394 #define SSL_ALERT_MSG_DECRYPTION_FAILED MBEDTLS_SSL_ALERT_MSG_DECRYPTION_FAILED
JMF 12:0071cb144c7a 1395 #define SSL_ALERT_MSG_DECRYPT_ERROR MBEDTLS_SSL_ALERT_MSG_DECRYPT_ERROR
JMF 12:0071cb144c7a 1396 #define SSL_ALERT_MSG_EXPORT_RESTRICTION MBEDTLS_SSL_ALERT_MSG_EXPORT_RESTRICTION
JMF 12:0071cb144c7a 1397 #define SSL_ALERT_MSG_HANDSHAKE_FAILURE MBEDTLS_SSL_ALERT_MSG_HANDSHAKE_FAILURE
JMF 12:0071cb144c7a 1398 #define SSL_ALERT_MSG_ILLEGAL_PARAMETER MBEDTLS_SSL_ALERT_MSG_ILLEGAL_PARAMETER
JMF 12:0071cb144c7a 1399 #define SSL_ALERT_MSG_INAPROPRIATE_FALLBACK MBEDTLS_SSL_ALERT_MSG_INAPROPRIATE_FALLBACK
JMF 12:0071cb144c7a 1400 #define SSL_ALERT_MSG_INSUFFICIENT_SECURITY MBEDTLS_SSL_ALERT_MSG_INSUFFICIENT_SECURITY
JMF 12:0071cb144c7a 1401 #define SSL_ALERT_MSG_INTERNAL_ERROR MBEDTLS_SSL_ALERT_MSG_INTERNAL_ERROR
JMF 12:0071cb144c7a 1402 #define SSL_ALERT_MSG_NO_APPLICATION_PROTOCOL MBEDTLS_SSL_ALERT_MSG_NO_APPLICATION_PROTOCOL
JMF 12:0071cb144c7a 1403 #define SSL_ALERT_MSG_NO_CERT MBEDTLS_SSL_ALERT_MSG_NO_CERT
JMF 12:0071cb144c7a 1404 #define SSL_ALERT_MSG_NO_RENEGOTIATION MBEDTLS_SSL_ALERT_MSG_NO_RENEGOTIATION
JMF 12:0071cb144c7a 1405 #define SSL_ALERT_MSG_PROTOCOL_VERSION MBEDTLS_SSL_ALERT_MSG_PROTOCOL_VERSION
JMF 12:0071cb144c7a 1406 #define SSL_ALERT_MSG_RECORD_OVERFLOW MBEDTLS_SSL_ALERT_MSG_RECORD_OVERFLOW
JMF 12:0071cb144c7a 1407 #define SSL_ALERT_MSG_UNEXPECTED_MESSAGE MBEDTLS_SSL_ALERT_MSG_UNEXPECTED_MESSAGE
JMF 12:0071cb144c7a 1408 #define SSL_ALERT_MSG_UNKNOWN_CA MBEDTLS_SSL_ALERT_MSG_UNKNOWN_CA
JMF 12:0071cb144c7a 1409 #define SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY MBEDTLS_SSL_ALERT_MSG_UNKNOWN_PSK_IDENTITY
JMF 12:0071cb144c7a 1410 #define SSL_ALERT_MSG_UNRECOGNIZED_NAME MBEDTLS_SSL_ALERT_MSG_UNRECOGNIZED_NAME
JMF 12:0071cb144c7a 1411 #define SSL_ALERT_MSG_UNSUPPORTED_CERT MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_CERT
JMF 12:0071cb144c7a 1412 #define SSL_ALERT_MSG_UNSUPPORTED_EXT MBEDTLS_SSL_ALERT_MSG_UNSUPPORTED_EXT
JMF 12:0071cb144c7a 1413 #define SSL_ALERT_MSG_USER_CANCELED MBEDTLS_SSL_ALERT_MSG_USER_CANCELED
JMF 12:0071cb144c7a 1414 #define SSL_ANTI_REPLAY_DISABLED MBEDTLS_SSL_ANTI_REPLAY_DISABLED
JMF 12:0071cb144c7a 1415 #define SSL_ANTI_REPLAY_ENABLED MBEDTLS_SSL_ANTI_REPLAY_ENABLED
JMF 12:0071cb144c7a 1416 #define SSL_ARC4_DISABLED MBEDTLS_SSL_ARC4_DISABLED
JMF 12:0071cb144c7a 1417 #define SSL_ARC4_ENABLED MBEDTLS_SSL_ARC4_ENABLED
JMF 12:0071cb144c7a 1418 #define SSL_BUFFER_LEN MBEDTLS_SSL_BUFFER_LEN
JMF 12:0071cb144c7a 1419 #define SSL_CACHE_DEFAULT_MAX_ENTRIES MBEDTLS_SSL_CACHE_DEFAULT_MAX_ENTRIES
JMF 12:0071cb144c7a 1420 #define SSL_CACHE_DEFAULT_TIMEOUT MBEDTLS_SSL_CACHE_DEFAULT_TIMEOUT
JMF 12:0071cb144c7a 1421 #define SSL_CBC_RECORD_SPLITTING_DISABLED MBEDTLS_SSL_CBC_RECORD_SPLITTING_DISABLED
JMF 12:0071cb144c7a 1422 #define SSL_CBC_RECORD_SPLITTING_ENABLED MBEDTLS_SSL_CBC_RECORD_SPLITTING_ENABLED
JMF 12:0071cb144c7a 1423 #define SSL_CERTIFICATE_REQUEST MBEDTLS_SSL_CERTIFICATE_REQUEST
JMF 12:0071cb144c7a 1424 #define SSL_CERTIFICATE_VERIFY MBEDTLS_SSL_CERTIFICATE_VERIFY
JMF 12:0071cb144c7a 1425 #define SSL_CERT_TYPE_ECDSA_SIGN MBEDTLS_SSL_CERT_TYPE_ECDSA_SIGN
JMF 12:0071cb144c7a 1426 #define SSL_CERT_TYPE_RSA_SIGN MBEDTLS_SSL_CERT_TYPE_RSA_SIGN
JMF 12:0071cb144c7a 1427 #define SSL_CHANNEL_INBOUND MBEDTLS_SSL_CHANNEL_INBOUND
JMF 12:0071cb144c7a 1428 #define SSL_CHANNEL_OUTBOUND MBEDTLS_SSL_CHANNEL_OUTBOUND
JMF 12:0071cb144c7a 1429 #define SSL_CIPHERSUITES MBEDTLS_SSL_CIPHERSUITES
JMF 12:0071cb144c7a 1430 #define SSL_CLIENT_CERTIFICATE MBEDTLS_SSL_CLIENT_CERTIFICATE
JMF 12:0071cb144c7a 1431 #define SSL_CLIENT_CHANGE_CIPHER_SPEC MBEDTLS_SSL_CLIENT_CHANGE_CIPHER_SPEC
JMF 12:0071cb144c7a 1432 #define SSL_CLIENT_FINISHED MBEDTLS_SSL_CLIENT_FINISHED
JMF 12:0071cb144c7a 1433 #define SSL_CLIENT_HELLO MBEDTLS_SSL_CLIENT_HELLO
JMF 12:0071cb144c7a 1434 #define SSL_CLIENT_KEY_EXCHANGE MBEDTLS_SSL_CLIENT_KEY_EXCHANGE
JMF 12:0071cb144c7a 1435 #define SSL_COMPRESSION_ADD MBEDTLS_SSL_COMPRESSION_ADD
JMF 12:0071cb144c7a 1436 #define SSL_COMPRESS_DEFLATE MBEDTLS_SSL_COMPRESS_DEFLATE
JMF 12:0071cb144c7a 1437 #define SSL_COMPRESS_NULL MBEDTLS_SSL_COMPRESS_NULL
JMF 12:0071cb144c7a 1438 #define SSL_DEBUG_BUF MBEDTLS_SSL_DEBUG_BUF
JMF 12:0071cb144c7a 1439 #define SSL_DEBUG_CRT MBEDTLS_SSL_DEBUG_CRT
JMF 12:0071cb144c7a 1440 #define SSL_DEBUG_ECP MBEDTLS_SSL_DEBUG_ECP
JMF 12:0071cb144c7a 1441 #define SSL_DEBUG_MPI MBEDTLS_SSL_DEBUG_MPI
JMF 12:0071cb144c7a 1442 #define SSL_DEBUG_MSG MBEDTLS_SSL_DEBUG_MSG
JMF 12:0071cb144c7a 1443 #define SSL_DEBUG_RET MBEDTLS_SSL_DEBUG_RET
JMF 12:0071cb144c7a 1444 #define SSL_DEFAULT_TICKET_LIFETIME MBEDTLS_SSL_DEFAULT_TICKET_LIFETIME
JMF 12:0071cb144c7a 1445 #define SSL_DTLS_TIMEOUT_DFL_MAX MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MAX
JMF 12:0071cb144c7a 1446 #define SSL_DTLS_TIMEOUT_DFL_MIN MBEDTLS_SSL_DTLS_TIMEOUT_DFL_MIN
JMF 12:0071cb144c7a 1447 #define SSL_EMPTY_RENEGOTIATION_INFO MBEDTLS_SSL_EMPTY_RENEGOTIATION_INFO
JMF 12:0071cb144c7a 1448 #define SSL_ETM_DISABLED MBEDTLS_SSL_ETM_DISABLED
JMF 12:0071cb144c7a 1449 #define SSL_ETM_ENABLED MBEDTLS_SSL_ETM_ENABLED
JMF 12:0071cb144c7a 1450 #define SSL_EXTENDED_MS_DISABLED MBEDTLS_SSL_EXTENDED_MS_DISABLED
JMF 12:0071cb144c7a 1451 #define SSL_EXTENDED_MS_ENABLED MBEDTLS_SSL_EXTENDED_MS_ENABLED
JMF 12:0071cb144c7a 1452 #define SSL_FALLBACK_SCSV MBEDTLS_SSL_FALLBACK_SCSV
JMF 12:0071cb144c7a 1453 #define SSL_FLUSH_BUFFERS MBEDTLS_SSL_FLUSH_BUFFERS
JMF 12:0071cb144c7a 1454 #define SSL_HANDSHAKE_OVER MBEDTLS_SSL_HANDSHAKE_OVER
JMF 12:0071cb144c7a 1455 #define SSL_HANDSHAKE_WRAPUP MBEDTLS_SSL_HANDSHAKE_WRAPUP
JMF 12:0071cb144c7a 1456 #define SSL_HASH_MD5 MBEDTLS_SSL_HASH_MD5
JMF 12:0071cb144c7a 1457 #define SSL_HASH_NONE MBEDTLS_SSL_HASH_NONE
JMF 12:0071cb144c7a 1458 #define SSL_HASH_SHA1 MBEDTLS_SSL_HASH_SHA1
JMF 12:0071cb144c7a 1459 #define SSL_HASH_SHA224 MBEDTLS_SSL_HASH_SHA224
JMF 12:0071cb144c7a 1460 #define SSL_HASH_SHA256 MBEDTLS_SSL_HASH_SHA256
JMF 12:0071cb144c7a 1461 #define SSL_HASH_SHA384 MBEDTLS_SSL_HASH_SHA384
JMF 12:0071cb144c7a 1462 #define SSL_HASH_SHA512 MBEDTLS_SSL_HASH_SHA512
JMF 12:0071cb144c7a 1463 #define SSL_HELLO_REQUEST MBEDTLS_SSL_HELLO_REQUEST
JMF 12:0071cb144c7a 1464 #define SSL_HS_CERTIFICATE MBEDTLS_SSL_HS_CERTIFICATE
JMF 12:0071cb144c7a 1465 #define SSL_HS_CERTIFICATE_REQUEST MBEDTLS_SSL_HS_CERTIFICATE_REQUEST
JMF 12:0071cb144c7a 1466 #define SSL_HS_CERTIFICATE_VERIFY MBEDTLS_SSL_HS_CERTIFICATE_VERIFY
JMF 12:0071cb144c7a 1467 #define SSL_HS_CLIENT_HELLO MBEDTLS_SSL_HS_CLIENT_HELLO
JMF 12:0071cb144c7a 1468 #define SSL_HS_CLIENT_KEY_EXCHANGE MBEDTLS_SSL_HS_CLIENT_KEY_EXCHANGE
JMF 12:0071cb144c7a 1469 #define SSL_HS_FINISHED MBEDTLS_SSL_HS_FINISHED
JMF 12:0071cb144c7a 1470 #define SSL_HS_HELLO_REQUEST MBEDTLS_SSL_HS_HELLO_REQUEST
JMF 12:0071cb144c7a 1471 #define SSL_HS_HELLO_VERIFY_REQUEST MBEDTLS_SSL_HS_HELLO_VERIFY_REQUEST
JMF 12:0071cb144c7a 1472 #define SSL_HS_NEW_SESSION_TICKET MBEDTLS_SSL_HS_NEW_SESSION_TICKET
JMF 12:0071cb144c7a 1473 #define SSL_HS_SERVER_HELLO MBEDTLS_SSL_HS_SERVER_HELLO
JMF 12:0071cb144c7a 1474 #define SSL_HS_SERVER_HELLO_DONE MBEDTLS_SSL_HS_SERVER_HELLO_DONE
JMF 12:0071cb144c7a 1475 #define SSL_HS_SERVER_KEY_EXCHANGE MBEDTLS_SSL_HS_SERVER_KEY_EXCHANGE
JMF 12:0071cb144c7a 1476 #define SSL_INITIAL_HANDSHAKE MBEDTLS_SSL_INITIAL_HANDSHAKE
JMF 12:0071cb144c7a 1477 #define SSL_IS_CLIENT MBEDTLS_SSL_IS_CLIENT
JMF 12:0071cb144c7a 1478 #define SSL_IS_FALLBACK MBEDTLS_SSL_IS_FALLBACK
JMF 12:0071cb144c7a 1479 #define SSL_IS_NOT_FALLBACK MBEDTLS_SSL_IS_NOT_FALLBACK
JMF 12:0071cb144c7a 1480 #define SSL_IS_SERVER MBEDTLS_SSL_IS_SERVER
JMF 12:0071cb144c7a 1481 #define SSL_LEGACY_ALLOW_RENEGOTIATION MBEDTLS_SSL_LEGACY_ALLOW_RENEGOTIATION
JMF 12:0071cb144c7a 1482 #define SSL_LEGACY_BREAK_HANDSHAKE MBEDTLS_SSL_LEGACY_BREAK_HANDSHAKE
JMF 12:0071cb144c7a 1483 #define SSL_LEGACY_NO_RENEGOTIATION MBEDTLS_SSL_LEGACY_NO_RENEGOTIATION
JMF 12:0071cb144c7a 1484 #define SSL_LEGACY_RENEGOTIATION MBEDTLS_SSL_LEGACY_RENEGOTIATION
JMF 12:0071cb144c7a 1485 #define SSL_MAC_ADD MBEDTLS_SSL_MAC_ADD
JMF 12:0071cb144c7a 1486 #define SSL_MAJOR_VERSION_3 MBEDTLS_SSL_MAJOR_VERSION_3
JMF 12:0071cb144c7a 1487 #define SSL_MAX_CONTENT_LEN MBEDTLS_SSL_MAX_CONTENT_LEN
JMF 12:0071cb144c7a 1488 #define SSL_MAX_FRAG_LEN_1024 MBEDTLS_SSL_MAX_FRAG_LEN_1024
JMF 12:0071cb144c7a 1489 #define SSL_MAX_FRAG_LEN_2048 MBEDTLS_SSL_MAX_FRAG_LEN_2048
JMF 12:0071cb144c7a 1490 #define SSL_MAX_FRAG_LEN_4096 MBEDTLS_SSL_MAX_FRAG_LEN_4096
JMF 12:0071cb144c7a 1491 #define SSL_MAX_FRAG_LEN_512 MBEDTLS_SSL_MAX_FRAG_LEN_512
JMF 12:0071cb144c7a 1492 #define SSL_MAX_FRAG_LEN_INVALID MBEDTLS_SSL_MAX_FRAG_LEN_INVALID
JMF 12:0071cb144c7a 1493 #define SSL_MAX_FRAG_LEN_NONE MBEDTLS_SSL_MAX_FRAG_LEN_NONE
JMF 12:0071cb144c7a 1494 #define SSL_MAX_MAJOR_VERSION MBEDTLS_SSL_MAX_MAJOR_VERSION
JMF 12:0071cb144c7a 1495 #define SSL_MAX_MINOR_VERSION MBEDTLS_SSL_MAX_MINOR_VERSION
JMF 12:0071cb144c7a 1496 #define SSL_MINOR_VERSION_0 MBEDTLS_SSL_MINOR_VERSION_0
JMF 12:0071cb144c7a 1497 #define SSL_MINOR_VERSION_1 MBEDTLS_SSL_MINOR_VERSION_1
JMF 12:0071cb144c7a 1498 #define SSL_MINOR_VERSION_2 MBEDTLS_SSL_MINOR_VERSION_2
JMF 12:0071cb144c7a 1499 #define SSL_MINOR_VERSION_3 MBEDTLS_SSL_MINOR_VERSION_3
JMF 12:0071cb144c7a 1500 #define SSL_MIN_MAJOR_VERSION MBEDTLS_SSL_MIN_MAJOR_VERSION
JMF 12:0071cb144c7a 1501 #define SSL_MIN_MINOR_VERSION MBEDTLS_SSL_MIN_MINOR_VERSION
JMF 12:0071cb144c7a 1502 #define SSL_MSG_ALERT MBEDTLS_SSL_MSG_ALERT
JMF 12:0071cb144c7a 1503 #define SSL_MSG_APPLICATION_DATA MBEDTLS_SSL_MSG_APPLICATION_DATA
JMF 12:0071cb144c7a 1504 #define SSL_MSG_CHANGE_CIPHER_SPEC MBEDTLS_SSL_MSG_CHANGE_CIPHER_SPEC
JMF 12:0071cb144c7a 1505 #define SSL_MSG_HANDSHAKE MBEDTLS_SSL_MSG_HANDSHAKE
JMF 12:0071cb144c7a 1506 #define SSL_PADDING_ADD MBEDTLS_SSL_PADDING_ADD
JMF 12:0071cb144c7a 1507 #define SSL_RENEGOTIATION MBEDTLS_SSL_RENEGOTIATION
JMF 12:0071cb144c7a 1508 #define SSL_RENEGOTIATION_DISABLED MBEDTLS_SSL_RENEGOTIATION_DISABLED
JMF 12:0071cb144c7a 1509 #define SSL_RENEGOTIATION_DONE MBEDTLS_SSL_RENEGOTIATION_DONE
JMF 12:0071cb144c7a 1510 #define SSL_RENEGOTIATION_ENABLED MBEDTLS_SSL_RENEGOTIATION_ENABLED
JMF 12:0071cb144c7a 1511 #define SSL_RENEGOTIATION_NOT_ENFORCED MBEDTLS_SSL_RENEGOTIATION_NOT_ENFORCED
JMF 12:0071cb144c7a 1512 #define SSL_RENEGOTIATION_PENDING MBEDTLS_SSL_RENEGOTIATION_PENDING
JMF 12:0071cb144c7a 1513 #define SSL_RENEGO_MAX_RECORDS_DEFAULT MBEDTLS_SSL_RENEGO_MAX_RECORDS_DEFAULT
JMF 12:0071cb144c7a 1514 #define SSL_RETRANS_FINISHED MBEDTLS_SSL_RETRANS_FINISHED
JMF 12:0071cb144c7a 1515 #define SSL_RETRANS_PREPARING MBEDTLS_SSL_RETRANS_PREPARING
JMF 12:0071cb144c7a 1516 #define SSL_RETRANS_SENDING MBEDTLS_SSL_RETRANS_SENDING
JMF 12:0071cb144c7a 1517 #define SSL_RETRANS_WAITING MBEDTLS_SSL_RETRANS_WAITING
JMF 12:0071cb144c7a 1518 #define SSL_SECURE_RENEGOTIATION MBEDTLS_SSL_SECURE_RENEGOTIATION
JMF 12:0071cb144c7a 1519 #define SSL_SERVER_CERTIFICATE MBEDTLS_SSL_SERVER_CERTIFICATE
JMF 12:0071cb144c7a 1520 #define SSL_SERVER_CHANGE_CIPHER_SPEC MBEDTLS_SSL_SERVER_CHANGE_CIPHER_SPEC
JMF 12:0071cb144c7a 1521 #define SSL_SERVER_FINISHED MBEDTLS_SSL_SERVER_FINISHED
JMF 12:0071cb144c7a 1522 #define SSL_SERVER_HELLO MBEDTLS_SSL_SERVER_HELLO
JMF 12:0071cb144c7a 1523 #define SSL_SERVER_HELLO_DONE MBEDTLS_SSL_SERVER_HELLO_DONE
JMF 12:0071cb144c7a 1524 #define SSL_SERVER_HELLO_VERIFY_REQUEST_SENT MBEDTLS_SSL_SERVER_HELLO_VERIFY_REQUEST_SENT
JMF 12:0071cb144c7a 1525 #define SSL_SERVER_KEY_EXCHANGE MBEDTLS_SSL_SERVER_KEY_EXCHANGE
JMF 12:0071cb144c7a 1526 #define SSL_SERVER_NEW_SESSION_TICKET MBEDTLS_SSL_SERVER_NEW_SESSION_TICKET
JMF 12:0071cb144c7a 1527 #define SSL_SESSION_TICKETS_DISABLED MBEDTLS_SSL_SESSION_TICKETS_DISABLED
JMF 12:0071cb144c7a 1528 #define SSL_SESSION_TICKETS_ENABLED MBEDTLS_SSL_SESSION_TICKETS_ENABLED
JMF 12:0071cb144c7a 1529 #define SSL_SIG_ANON MBEDTLS_SSL_SIG_ANON
JMF 12:0071cb144c7a 1530 #define SSL_SIG_ECDSA MBEDTLS_SSL_SIG_ECDSA
JMF 12:0071cb144c7a 1531 #define SSL_SIG_RSA MBEDTLS_SSL_SIG_RSA
JMF 12:0071cb144c7a 1532 #define SSL_TRANSPORT_DATAGRAM MBEDTLS_SSL_TRANSPORT_DATAGRAM
JMF 12:0071cb144c7a 1533 #define SSL_TRANSPORT_STREAM MBEDTLS_SSL_TRANSPORT_STREAM
JMF 12:0071cb144c7a 1534 #define SSL_TRUNCATED_HMAC_LEN MBEDTLS_SSL_TRUNCATED_HMAC_LEN
JMF 12:0071cb144c7a 1535 #define SSL_TRUNC_HMAC_DISABLED MBEDTLS_SSL_TRUNC_HMAC_DISABLED
JMF 12:0071cb144c7a 1536 #define SSL_TRUNC_HMAC_ENABLED MBEDTLS_SSL_TRUNC_HMAC_ENABLED
JMF 12:0071cb144c7a 1537 #define SSL_VERIFY_DATA_MAX_LEN MBEDTLS_SSL_VERIFY_DATA_MAX_LEN
JMF 12:0071cb144c7a 1538 #define SSL_VERIFY_NONE MBEDTLS_SSL_VERIFY_NONE
JMF 12:0071cb144c7a 1539 #define SSL_VERIFY_OPTIONAL MBEDTLS_SSL_VERIFY_OPTIONAL
JMF 12:0071cb144c7a 1540 #define SSL_VERIFY_REQUIRED MBEDTLS_SSL_VERIFY_REQUIRED
JMF 12:0071cb144c7a 1541 #define TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1542 #define TLS_DHE_PSK_WITH_AES_128_CBC_SHA MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1543 #define TLS_DHE_PSK_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1544 #define TLS_DHE_PSK_WITH_AES_128_CCM MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CCM
JMF 12:0071cb144c7a 1545 #define TLS_DHE_PSK_WITH_AES_128_CCM_8 MBEDTLS_TLS_DHE_PSK_WITH_AES_128_CCM_8
JMF 12:0071cb144c7a 1546 #define TLS_DHE_PSK_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1547 #define TLS_DHE_PSK_WITH_AES_256_CBC_SHA MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1548 #define TLS_DHE_PSK_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1549 #define TLS_DHE_PSK_WITH_AES_256_CCM MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CCM
JMF 12:0071cb144c7a 1550 #define TLS_DHE_PSK_WITH_AES_256_CCM_8 MBEDTLS_TLS_DHE_PSK_WITH_AES_256_CCM_8
JMF 12:0071cb144c7a 1551 #define TLS_DHE_PSK_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1552 #define TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1553 #define TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1554 #define TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1555 #define TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1556 #define TLS_DHE_PSK_WITH_NULL_SHA MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA
JMF 12:0071cb144c7a 1557 #define TLS_DHE_PSK_WITH_NULL_SHA256 MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA256
JMF 12:0071cb144c7a 1558 #define TLS_DHE_PSK_WITH_NULL_SHA384 MBEDTLS_TLS_DHE_PSK_WITH_NULL_SHA384
JMF 12:0071cb144c7a 1559 #define TLS_DHE_PSK_WITH_RC4_128_SHA MBEDTLS_TLS_DHE_PSK_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1560 #define TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1561 #define TLS_DHE_RSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1562 #define TLS_DHE_RSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1563 #define TLS_DHE_RSA_WITH_AES_128_CCM MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CCM
JMF 12:0071cb144c7a 1564 #define TLS_DHE_RSA_WITH_AES_128_CCM_8 MBEDTLS_TLS_DHE_RSA_WITH_AES_128_CCM_8
JMF 12:0071cb144c7a 1565 #define TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1566 #define TLS_DHE_RSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1567 #define TLS_DHE_RSA_WITH_AES_256_CBC_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
JMF 12:0071cb144c7a 1568 #define TLS_DHE_RSA_WITH_AES_256_CCM MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CCM
JMF 12:0071cb144c7a 1569 #define TLS_DHE_RSA_WITH_AES_256_CCM_8 MBEDTLS_TLS_DHE_RSA_WITH_AES_256_CCM_8
JMF 12:0071cb144c7a 1570 #define TLS_DHE_RSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1571 #define TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
JMF 12:0071cb144c7a 1572 #define TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1573 #define TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1574 #define TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
JMF 12:0071cb144c7a 1575 #define TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256 MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
JMF 12:0071cb144c7a 1576 #define TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1577 #define TLS_DHE_RSA_WITH_DES_CBC_SHA MBEDTLS_TLS_DHE_RSA_WITH_DES_CBC_SHA
JMF 12:0071cb144c7a 1578 #define TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1579 #define TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1580 #define TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1581 #define TLS_ECDHE_ECDSA_WITH_AES_128_CCM MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CCM
JMF 12:0071cb144c7a 1582 #define TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_CCM_8
JMF 12:0071cb144c7a 1583 #define TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1584 #define TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1585 #define TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1586 #define TLS_ECDHE_ECDSA_WITH_AES_256_CCM MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CCM
JMF 12:0071cb144c7a 1587 #define TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_CCM_8
JMF 12:0071cb144c7a 1588 #define TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1589 #define TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1590 #define TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1591 #define TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1592 #define TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1593 #define TLS_ECDHE_ECDSA_WITH_NULL_SHA MBEDTLS_TLS_ECDHE_ECDSA_WITH_NULL_SHA
JMF 12:0071cb144c7a 1594 #define TLS_ECDHE_ECDSA_WITH_RC4_128_SHA MBEDTLS_TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1595 #define TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1596 #define TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1597 #define TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1598 #define TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1599 #define TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1600 #define TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1601 #define TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1602 #define TLS_ECDHE_PSK_WITH_NULL_SHA MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA
JMF 12:0071cb144c7a 1603 #define TLS_ECDHE_PSK_WITH_NULL_SHA256 MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA256
JMF 12:0071cb144c7a 1604 #define TLS_ECDHE_PSK_WITH_NULL_SHA384 MBEDTLS_TLS_ECDHE_PSK_WITH_NULL_SHA384
JMF 12:0071cb144c7a 1605 #define TLS_ECDHE_PSK_WITH_RC4_128_SHA MBEDTLS_TLS_ECDHE_PSK_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1606 #define TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1607 #define TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1608 #define TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1609 #define TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1610 #define TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1611 #define TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1612 #define TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1613 #define TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1614 #define TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1615 #define TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1616 #define TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1617 #define TLS_ECDHE_RSA_WITH_NULL_SHA MBEDTLS_TLS_ECDHE_RSA_WITH_NULL_SHA
JMF 12:0071cb144c7a 1618 #define TLS_ECDHE_RSA_WITH_RC4_128_SHA MBEDTLS_TLS_ECDHE_RSA_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1619 #define TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1620 #define TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1621 #define TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1622 #define TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1623 #define TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1624 #define TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1625 #define TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1626 #define TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1627 #define TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1628 #define TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1629 #define TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1630 #define TLS_ECDH_ECDSA_WITH_NULL_SHA MBEDTLS_TLS_ECDH_ECDSA_WITH_NULL_SHA
JMF 12:0071cb144c7a 1631 #define TLS_ECDH_ECDSA_WITH_RC4_128_SHA MBEDTLS_TLS_ECDH_ECDSA_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1632 #define TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1633 #define TLS_ECDH_RSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1634 #define TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1635 #define TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1636 #define TLS_ECDH_RSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1637 #define TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1638 #define TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1639 #define TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1640 #define TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1641 #define TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1642 #define TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1643 #define TLS_ECDH_RSA_WITH_NULL_SHA MBEDTLS_TLS_ECDH_RSA_WITH_NULL_SHA
JMF 12:0071cb144c7a 1644 #define TLS_ECDH_RSA_WITH_RC4_128_SHA MBEDTLS_TLS_ECDH_RSA_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1645 #define TLS_EXT_ALPN MBEDTLS_TLS_EXT_ALPN
JMF 12:0071cb144c7a 1646 #define TLS_EXT_ENCRYPT_THEN_MAC MBEDTLS_TLS_EXT_ENCRYPT_THEN_MAC
JMF 12:0071cb144c7a 1647 #define TLS_EXT_EXTENDED_MASTER_SECRET MBEDTLS_TLS_EXT_EXTENDED_MASTER_SECRET
JMF 12:0071cb144c7a 1648 #define TLS_EXT_MAX_FRAGMENT_LENGTH MBEDTLS_TLS_EXT_MAX_FRAGMENT_LENGTH
JMF 12:0071cb144c7a 1649 #define TLS_EXT_RENEGOTIATION_INFO MBEDTLS_TLS_EXT_RENEGOTIATION_INFO
JMF 12:0071cb144c7a 1650 #define TLS_EXT_SERVERNAME MBEDTLS_TLS_EXT_SERVERNAME
JMF 12:0071cb144c7a 1651 #define TLS_EXT_SERVERNAME_HOSTNAME MBEDTLS_TLS_EXT_SERVERNAME_HOSTNAME
JMF 12:0071cb144c7a 1652 #define TLS_EXT_SESSION_TICKET MBEDTLS_TLS_EXT_SESSION_TICKET
JMF 12:0071cb144c7a 1653 #define TLS_EXT_SIG_ALG MBEDTLS_TLS_EXT_SIG_ALG
JMF 12:0071cb144c7a 1654 #define TLS_EXT_SUPPORTED_ELLIPTIC_CURVES MBEDTLS_TLS_EXT_SUPPORTED_ELLIPTIC_CURVES
JMF 12:0071cb144c7a 1655 #define TLS_EXT_SUPPORTED_POINT_FORMATS MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS
JMF 12:0071cb144c7a 1656 #define TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT MBEDTLS_TLS_EXT_SUPPORTED_POINT_FORMATS_PRESENT
JMF 12:0071cb144c7a 1657 #define TLS_EXT_TRUNCATED_HMAC MBEDTLS_TLS_EXT_TRUNCATED_HMAC
JMF 12:0071cb144c7a 1658 #define TLS_PSK_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_PSK_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1659 #define TLS_PSK_WITH_AES_128_CBC_SHA MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1660 #define TLS_PSK_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1661 #define TLS_PSK_WITH_AES_128_CCM MBEDTLS_TLS_PSK_WITH_AES_128_CCM
JMF 12:0071cb144c7a 1662 #define TLS_PSK_WITH_AES_128_CCM_8 MBEDTLS_TLS_PSK_WITH_AES_128_CCM_8
JMF 12:0071cb144c7a 1663 #define TLS_PSK_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_PSK_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1664 #define TLS_PSK_WITH_AES_256_CBC_SHA MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1665 #define TLS_PSK_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_PSK_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1666 #define TLS_PSK_WITH_AES_256_CCM MBEDTLS_TLS_PSK_WITH_AES_256_CCM
JMF 12:0071cb144c7a 1667 #define TLS_PSK_WITH_AES_256_CCM_8 MBEDTLS_TLS_PSK_WITH_AES_256_CCM_8
JMF 12:0071cb144c7a 1668 #define TLS_PSK_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_PSK_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1669 #define TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1670 #define TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1671 #define TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1672 #define TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1673 #define TLS_PSK_WITH_NULL_SHA MBEDTLS_TLS_PSK_WITH_NULL_SHA
JMF 12:0071cb144c7a 1674 #define TLS_PSK_WITH_NULL_SHA256 MBEDTLS_TLS_PSK_WITH_NULL_SHA256
JMF 12:0071cb144c7a 1675 #define TLS_PSK_WITH_NULL_SHA384 MBEDTLS_TLS_PSK_WITH_NULL_SHA384
JMF 12:0071cb144c7a 1676 #define TLS_PSK_WITH_RC4_128_SHA MBEDTLS_TLS_PSK_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1677 #define TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1678 #define TLS_RSA_PSK_WITH_AES_128_CBC_SHA MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1679 #define TLS_RSA_PSK_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1680 #define TLS_RSA_PSK_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1681 #define TLS_RSA_PSK_WITH_AES_256_CBC_SHA MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1682 #define TLS_RSA_PSK_WITH_AES_256_CBC_SHA384 MBEDTLS_TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
JMF 12:0071cb144c7a 1683 #define TLS_RSA_PSK_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1684 #define TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1685 #define TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1686 #define TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384 MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
JMF 12:0071cb144c7a 1687 #define TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1688 #define TLS_RSA_PSK_WITH_NULL_SHA MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA
JMF 12:0071cb144c7a 1689 #define TLS_RSA_PSK_WITH_NULL_SHA256 MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA256
JMF 12:0071cb144c7a 1690 #define TLS_RSA_PSK_WITH_NULL_SHA384 MBEDTLS_TLS_RSA_PSK_WITH_NULL_SHA384
JMF 12:0071cb144c7a 1691 #define TLS_RSA_PSK_WITH_RC4_128_SHA MBEDTLS_TLS_RSA_PSK_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1692 #define TLS_RSA_WITH_3DES_EDE_CBC_SHA MBEDTLS_TLS_RSA_WITH_3DES_EDE_CBC_SHA
JMF 12:0071cb144c7a 1693 #define TLS_RSA_WITH_AES_128_CBC_SHA MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA
JMF 12:0071cb144c7a 1694 #define TLS_RSA_WITH_AES_128_CBC_SHA256 MBEDTLS_TLS_RSA_WITH_AES_128_CBC_SHA256
JMF 12:0071cb144c7a 1695 #define TLS_RSA_WITH_AES_128_CCM MBEDTLS_TLS_RSA_WITH_AES_128_CCM
JMF 12:0071cb144c7a 1696 #define TLS_RSA_WITH_AES_128_CCM_8 MBEDTLS_TLS_RSA_WITH_AES_128_CCM_8
JMF 12:0071cb144c7a 1697 #define TLS_RSA_WITH_AES_128_GCM_SHA256 MBEDTLS_TLS_RSA_WITH_AES_128_GCM_SHA256
JMF 12:0071cb144c7a 1698 #define TLS_RSA_WITH_AES_256_CBC_SHA MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA
JMF 12:0071cb144c7a 1699 #define TLS_RSA_WITH_AES_256_CBC_SHA256 MBEDTLS_TLS_RSA_WITH_AES_256_CBC_SHA256
JMF 12:0071cb144c7a 1700 #define TLS_RSA_WITH_AES_256_CCM MBEDTLS_TLS_RSA_WITH_AES_256_CCM
JMF 12:0071cb144c7a 1701 #define TLS_RSA_WITH_AES_256_CCM_8 MBEDTLS_TLS_RSA_WITH_AES_256_CCM_8
JMF 12:0071cb144c7a 1702 #define TLS_RSA_WITH_AES_256_GCM_SHA384 MBEDTLS_TLS_RSA_WITH_AES_256_GCM_SHA384
JMF 12:0071cb144c7a 1703 #define TLS_RSA_WITH_CAMELLIA_128_CBC_SHA MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
JMF 12:0071cb144c7a 1704 #define TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256 MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
JMF 12:0071cb144c7a 1705 #define TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256 MBEDTLS_TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
JMF 12:0071cb144c7a 1706 #define TLS_RSA_WITH_CAMELLIA_256_CBC_SHA MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
JMF 12:0071cb144c7a 1707 #define TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256 MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
JMF 12:0071cb144c7a 1708 #define TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384 MBEDTLS_TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
JMF 12:0071cb144c7a 1709 #define TLS_RSA_WITH_DES_CBC_SHA MBEDTLS_TLS_RSA_WITH_DES_CBC_SHA
JMF 12:0071cb144c7a 1710 #define TLS_RSA_WITH_NULL_MD5 MBEDTLS_TLS_RSA_WITH_NULL_MD5
JMF 12:0071cb144c7a 1711 #define TLS_RSA_WITH_NULL_SHA MBEDTLS_TLS_RSA_WITH_NULL_SHA
JMF 12:0071cb144c7a 1712 #define TLS_RSA_WITH_NULL_SHA256 MBEDTLS_TLS_RSA_WITH_NULL_SHA256
JMF 12:0071cb144c7a 1713 #define TLS_RSA_WITH_RC4_128_MD5 MBEDTLS_TLS_RSA_WITH_RC4_128_MD5
JMF 12:0071cb144c7a 1714 #define TLS_RSA_WITH_RC4_128_SHA MBEDTLS_TLS_RSA_WITH_RC4_128_SHA
JMF 12:0071cb144c7a 1715 #define UL64 MBEDTLS_UL64
JMF 12:0071cb144c7a 1716 #define X509_CRT_VERSION_1 MBEDTLS_X509_CRT_VERSION_1
JMF 12:0071cb144c7a 1717 #define X509_CRT_VERSION_2 MBEDTLS_X509_CRT_VERSION_2
JMF 12:0071cb144c7a 1718 #define X509_CRT_VERSION_3 MBEDTLS_X509_CRT_VERSION_3
JMF 12:0071cb144c7a 1719 #define X509_FORMAT_DER MBEDTLS_X509_FORMAT_DER
JMF 12:0071cb144c7a 1720 #define X509_FORMAT_PEM MBEDTLS_X509_FORMAT_PEM
JMF 12:0071cb144c7a 1721 #define X509_MAX_DN_NAME_SIZE MBEDTLS_X509_MAX_DN_NAME_SIZE
JMF 12:0071cb144c7a 1722 #define X509_RFC5280_MAX_SERIAL_LEN MBEDTLS_X509_RFC5280_MAX_SERIAL_LEN
JMF 12:0071cb144c7a 1723 #define X509_RFC5280_UTC_TIME_LEN MBEDTLS_X509_RFC5280_UTC_TIME_LEN
JMF 12:0071cb144c7a 1724 #define XTEA_DECRYPT MBEDTLS_XTEA_DECRYPT
JMF 12:0071cb144c7a 1725 #define XTEA_ENCRYPT MBEDTLS_XTEA_ENCRYPT
JMF 12:0071cb144c7a 1726 #define _asn1_bitstring mbedtls_asn1_bitstring
JMF 12:0071cb144c7a 1727 #define _asn1_buf mbedtls_asn1_buf
JMF 12:0071cb144c7a 1728 #define _asn1_named_data mbedtls_asn1_named_data
JMF 12:0071cb144c7a 1729 #define _asn1_sequence mbedtls_asn1_sequence
JMF 12:0071cb144c7a 1730 #define _ssl_cache_context mbedtls_ssl_cache_context
JMF 12:0071cb144c7a 1731 #define _ssl_cache_entry mbedtls_ssl_cache_entry
JMF 12:0071cb144c7a 1732 #define _ssl_ciphersuite_t mbedtls_ssl_ciphersuite_t
JMF 12:0071cb144c7a 1733 #define _ssl_context mbedtls_ssl_context
JMF 12:0071cb144c7a 1734 #define _ssl_flight_item mbedtls_ssl_flight_item
JMF 12:0071cb144c7a 1735 #define _ssl_handshake_params mbedtls_ssl_handshake_params
JMF 12:0071cb144c7a 1736 #define _ssl_key_cert mbedtls_ssl_key_cert
JMF 12:0071cb144c7a 1737 #define _ssl_premaster_secret mbedtls_ssl_premaster_secret
JMF 12:0071cb144c7a 1738 #define _ssl_session mbedtls_ssl_session
JMF 12:0071cb144c7a 1739 #define _ssl_ticket_keys mbedtls_ssl_ticket_keys
JMF 12:0071cb144c7a 1740 #define _ssl_transform mbedtls_ssl_transform
JMF 12:0071cb144c7a 1741 #define _x509_crl mbedtls_x509_crl
JMF 12:0071cb144c7a 1742 #define _x509_crl_entry mbedtls_x509_crl_entry
JMF 12:0071cb144c7a 1743 #define _x509_crt mbedtls_x509_crt
JMF 12:0071cb144c7a 1744 #define _x509_csr mbedtls_x509_csr
JMF 12:0071cb144c7a 1745 #define _x509_time mbedtls_x509_time
JMF 12:0071cb144c7a 1746 #define _x509write_cert mbedtls_x509write_cert
JMF 12:0071cb144c7a 1747 #define _x509write_csr mbedtls_x509write_csr
JMF 12:0071cb144c7a 1748 #define aes_context mbedtls_aes_context
JMF 12:0071cb144c7a 1749 #define aes_crypt_cbc mbedtls_aes_crypt_cbc
JMF 12:0071cb144c7a 1750 #define aes_crypt_cfb128 mbedtls_aes_crypt_cfb128
JMF 12:0071cb144c7a 1751 #define aes_crypt_cfb8 mbedtls_aes_crypt_cfb8
JMF 12:0071cb144c7a 1752 #define aes_crypt_ctr mbedtls_aes_crypt_ctr
JMF 12:0071cb144c7a 1753 #define aes_crypt_ecb mbedtls_aes_crypt_ecb
JMF 12:0071cb144c7a 1754 #define aes_free mbedtls_aes_free
JMF 12:0071cb144c7a 1755 #define aes_init mbedtls_aes_init
JMF 12:0071cb144c7a 1756 #define aes_self_test mbedtls_aes_self_test
JMF 12:0071cb144c7a 1757 #define aes_setkey_dec mbedtls_aes_setkey_dec
JMF 12:0071cb144c7a 1758 #define aes_setkey_enc mbedtls_aes_setkey_enc
JMF 12:0071cb144c7a 1759 #define aesni_crypt_ecb mbedtls_aesni_crypt_ecb
JMF 12:0071cb144c7a 1760 #define aesni_gcm_mult mbedtls_aesni_gcm_mult
JMF 12:0071cb144c7a 1761 #define aesni_inverse_key mbedtls_aesni_inverse_key
JMF 12:0071cb144c7a 1762 #define aesni_setkey_enc mbedtls_aesni_setkey_enc
JMF 12:0071cb144c7a 1763 #define aesni_supports mbedtls_aesni_has_support
JMF 12:0071cb144c7a 1764 #define alarmed mbedtls_timing_alarmed
JMF 12:0071cb144c7a 1765 #define arc4_context mbedtls_arc4_context
JMF 12:0071cb144c7a 1766 #define arc4_crypt mbedtls_arc4_crypt
JMF 12:0071cb144c7a 1767 #define arc4_free mbedtls_arc4_free
JMF 12:0071cb144c7a 1768 #define arc4_init mbedtls_arc4_init
JMF 12:0071cb144c7a 1769 #define arc4_self_test mbedtls_arc4_self_test
JMF 12:0071cb144c7a 1770 #define arc4_setup mbedtls_arc4_setup
JMF 12:0071cb144c7a 1771 #define asn1_bitstring mbedtls_asn1_bitstring
JMF 12:0071cb144c7a 1772 #define asn1_buf mbedtls_asn1_buf
JMF 12:0071cb144c7a 1773 #define asn1_find_named_data mbedtls_asn1_find_named_data
JMF 12:0071cb144c7a 1774 #define asn1_free_named_data mbedtls_asn1_free_named_data
JMF 12:0071cb144c7a 1775 #define asn1_free_named_data_list mbedtls_asn1_free_named_data_list
JMF 12:0071cb144c7a 1776 #define asn1_get_alg mbedtls_asn1_get_alg
JMF 12:0071cb144c7a 1777 #define asn1_get_alg_null mbedtls_asn1_get_alg_null
JMF 12:0071cb144c7a 1778 #define asn1_get_bitstring mbedtls_asn1_get_bitstring
JMF 12:0071cb144c7a 1779 #define asn1_get_bitstring_null mbedtls_asn1_get_bitstring_null
JMF 12:0071cb144c7a 1780 #define asn1_get_bool mbedtls_asn1_get_bool
JMF 12:0071cb144c7a 1781 #define asn1_get_int mbedtls_asn1_get_int
JMF 12:0071cb144c7a 1782 #define asn1_get_len mbedtls_asn1_get_len
JMF 12:0071cb144c7a 1783 #define asn1_get_mpi mbedtls_asn1_get_mpi
JMF 12:0071cb144c7a 1784 #define asn1_get_sequence_of mbedtls_asn1_get_sequence_of
JMF 12:0071cb144c7a 1785 #define asn1_get_tag mbedtls_asn1_get_tag
JMF 12:0071cb144c7a 1786 #define asn1_named_data mbedtls_asn1_named_data
JMF 12:0071cb144c7a 1787 #define asn1_sequence mbedtls_asn1_sequence
JMF 12:0071cb144c7a 1788 #define asn1_store_named_data mbedtls_asn1_store_named_data
JMF 12:0071cb144c7a 1789 #define asn1_write_algorithm_identifier mbedtls_asn1_write_algorithm_identifier
JMF 12:0071cb144c7a 1790 #define asn1_write_bitstring mbedtls_asn1_write_bitstring
JMF 12:0071cb144c7a 1791 #define asn1_write_bool mbedtls_asn1_write_bool
JMF 12:0071cb144c7a 1792 #define asn1_write_ia5_string mbedtls_asn1_write_ia5_string
JMF 12:0071cb144c7a 1793 #define asn1_write_int mbedtls_asn1_write_int
JMF 12:0071cb144c7a 1794 #define asn1_write_len mbedtls_asn1_write_len
JMF 12:0071cb144c7a 1795 #define asn1_write_mpi mbedtls_asn1_write_mpi
JMF 12:0071cb144c7a 1796 #define asn1_write_null mbedtls_asn1_write_null
JMF 12:0071cb144c7a 1797 #define asn1_write_octet_string mbedtls_asn1_write_octet_string
JMF 12:0071cb144c7a 1798 #define asn1_write_oid mbedtls_asn1_write_oid
JMF 12:0071cb144c7a 1799 #define asn1_write_printable_string mbedtls_asn1_write_printable_string
JMF 12:0071cb144c7a 1800 #define asn1_write_raw_buffer mbedtls_asn1_write_raw_buffer
JMF 12:0071cb144c7a 1801 #define asn1_write_tag mbedtls_asn1_write_tag
JMF 12:0071cb144c7a 1802 #define base64_decode mbedtls_base64_decode
JMF 12:0071cb144c7a 1803 #define base64_encode mbedtls_base64_encode
JMF 12:0071cb144c7a 1804 #define base64_self_test mbedtls_base64_self_test
JMF 12:0071cb144c7a 1805 #define blowfish_context mbedtls_blowfish_context
JMF 12:0071cb144c7a 1806 #define blowfish_crypt_cbc mbedtls_blowfish_crypt_cbc
JMF 12:0071cb144c7a 1807 #define blowfish_crypt_cfb64 mbedtls_blowfish_crypt_cfb64
JMF 12:0071cb144c7a 1808 #define blowfish_crypt_ctr mbedtls_blowfish_crypt_ctr
JMF 12:0071cb144c7a 1809 #define blowfish_crypt_ecb mbedtls_blowfish_crypt_ecb
JMF 12:0071cb144c7a 1810 #define blowfish_free mbedtls_blowfish_free
JMF 12:0071cb144c7a 1811 #define blowfish_init mbedtls_blowfish_init
JMF 12:0071cb144c7a 1812 #define blowfish_setkey mbedtls_blowfish_setkey
JMF 12:0071cb144c7a 1813 #define camellia_context mbedtls_camellia_context
JMF 12:0071cb144c7a 1814 #define camellia_crypt_cbc mbedtls_camellia_crypt_cbc
JMF 12:0071cb144c7a 1815 #define camellia_crypt_cfb128 mbedtls_camellia_crypt_cfb128
JMF 12:0071cb144c7a 1816 #define camellia_crypt_ctr mbedtls_camellia_crypt_ctr
JMF 12:0071cb144c7a 1817 #define camellia_crypt_ecb mbedtls_camellia_crypt_ecb
JMF 12:0071cb144c7a 1818 #define camellia_free mbedtls_camellia_free
JMF 12:0071cb144c7a 1819 #define camellia_init mbedtls_camellia_init
JMF 12:0071cb144c7a 1820 #define camellia_self_test mbedtls_camellia_self_test
JMF 12:0071cb144c7a 1821 #define camellia_setkey_dec mbedtls_camellia_setkey_dec
JMF 12:0071cb144c7a 1822 #define camellia_setkey_enc mbedtls_camellia_setkey_enc
JMF 12:0071cb144c7a 1823 #define ccm_auth_decrypt mbedtls_ccm_auth_decrypt
JMF 12:0071cb144c7a 1824 #define ccm_context mbedtls_ccm_context
JMF 12:0071cb144c7a 1825 #define ccm_encrypt_and_tag mbedtls_ccm_encrypt_and_tag
JMF 12:0071cb144c7a 1826 #define ccm_free mbedtls_ccm_free
JMF 12:0071cb144c7a 1827 #define ccm_init mbedtls_ccm_init
JMF 12:0071cb144c7a 1828 #define ccm_self_test mbedtls_ccm_self_test
JMF 12:0071cb144c7a 1829 #define cipher_auth_decrypt mbedtls_cipher_auth_decrypt
JMF 12:0071cb144c7a 1830 #define cipher_auth_encrypt mbedtls_cipher_auth_encrypt
JMF 12:0071cb144c7a 1831 #define cipher_base_t mbedtls_cipher_base_t
JMF 12:0071cb144c7a 1832 #define cipher_check_tag mbedtls_cipher_check_tag
JMF 12:0071cb144c7a 1833 #define cipher_context_t mbedtls_cipher_context_t
JMF 12:0071cb144c7a 1834 #define cipher_crypt mbedtls_cipher_crypt
JMF 12:0071cb144c7a 1835 #define cipher_definition_t mbedtls_cipher_definition_t
JMF 12:0071cb144c7a 1836 #define cipher_definitions mbedtls_cipher_definitions
JMF 12:0071cb144c7a 1837 #define cipher_finish mbedtls_cipher_finish
JMF 12:0071cb144c7a 1838 #define cipher_free mbedtls_cipher_free
JMF 12:0071cb144c7a 1839 #define cipher_free_ctx mbedtls_cipher_free_ctx
JMF 12:0071cb144c7a 1840 #define cipher_get_block_size mbedtls_cipher_get_block_size
JMF 12:0071cb144c7a 1841 #define cipher_get_cipher_mode mbedtls_cipher_get_cipher_mode
JMF 12:0071cb144c7a 1842 #define cipher_get_iv_size mbedtls_cipher_get_iv_size
JMF 12:0071cb144c7a 1843 #define cipher_get_key_size mbedtls_cipher_get_key_bitlen
JMF 12:0071cb144c7a 1844 #define cipher_get_name mbedtls_cipher_get_name
JMF 12:0071cb144c7a 1845 #define cipher_get_operation mbedtls_cipher_get_operation
JMF 12:0071cb144c7a 1846 #define cipher_get_type mbedtls_cipher_get_type
JMF 12:0071cb144c7a 1847 #define cipher_id_t mbedtls_cipher_id_t
JMF 12:0071cb144c7a 1848 #define cipher_info_from_string mbedtls_cipher_info_from_string
JMF 12:0071cb144c7a 1849 #define cipher_info_from_type mbedtls_cipher_info_from_type
JMF 12:0071cb144c7a 1850 #define cipher_info_from_values mbedtls_cipher_info_from_values
JMF 12:0071cb144c7a 1851 #define cipher_info_t mbedtls_cipher_info_t
JMF 12:0071cb144c7a 1852 #define cipher_init mbedtls_cipher_init
JMF 12:0071cb144c7a 1853 #define cipher_init_ctx mbedtls_cipher_setup
JMF 12:0071cb144c7a 1854 #define cipher_list mbedtls_cipher_list
JMF 12:0071cb144c7a 1855 #define cipher_mode_t mbedtls_cipher_mode_t
JMF 12:0071cb144c7a 1856 #define cipher_padding_t mbedtls_cipher_padding_t
JMF 12:0071cb144c7a 1857 #define cipher_reset mbedtls_cipher_reset
JMF 12:0071cb144c7a 1858 #define cipher_self_test mbedtls_cipher_self_test
JMF 12:0071cb144c7a 1859 #define cipher_set_iv mbedtls_cipher_set_iv
JMF 12:0071cb144c7a 1860 #define cipher_set_padding_mode mbedtls_cipher_set_padding_mode
JMF 12:0071cb144c7a 1861 #define cipher_setkey mbedtls_cipher_setkey
JMF 12:0071cb144c7a 1862 #define cipher_type_t mbedtls_cipher_type_t
JMF 12:0071cb144c7a 1863 #define cipher_update mbedtls_cipher_update
JMF 12:0071cb144c7a 1864 #define cipher_update_ad mbedtls_cipher_update_ad
JMF 12:0071cb144c7a 1865 #define cipher_write_tag mbedtls_cipher_write_tag
JMF 12:0071cb144c7a 1866 #define ctr_drbg_context mbedtls_ctr_drbg_context
JMF 12:0071cb144c7a 1867 #define ctr_drbg_free mbedtls_ctr_drbg_free
JMF 12:0071cb144c7a 1868 #define ctr_drbg_init mbedtls_ctr_drbg_init
JMF 12:0071cb144c7a 1869 #define ctr_drbg_init_entropy_len mbedtls_ctr_drbg_init_entropy_len
JMF 12:0071cb144c7a 1870 #define ctr_drbg_random mbedtls_ctr_drbg_random
JMF 12:0071cb144c7a 1871 #define ctr_drbg_random_with_add mbedtls_ctr_drbg_random_with_add
JMF 12:0071cb144c7a 1872 #define ctr_drbg_reseed mbedtls_ctr_drbg_reseed
JMF 12:0071cb144c7a 1873 #define ctr_drbg_self_test mbedtls_ctr_drbg_self_test
JMF 12:0071cb144c7a 1874 #define ctr_drbg_set_entropy_len mbedtls_ctr_drbg_set_entropy_len
JMF 12:0071cb144c7a 1875 #define ctr_drbg_set_prediction_resistance mbedtls_ctr_drbg_set_prediction_resistance
JMF 12:0071cb144c7a 1876 #define ctr_drbg_set_reseed_interval mbedtls_ctr_drbg_set_reseed_interval
JMF 12:0071cb144c7a 1877 #define ctr_drbg_update mbedtls_ctr_drbg_update
JMF 12:0071cb144c7a 1878 #define ctr_drbg_update_seed_file mbedtls_ctr_drbg_update_seed_file
JMF 12:0071cb144c7a 1879 #define ctr_drbg_write_seed_file mbedtls_ctr_drbg_write_seed_file
JMF 12:0071cb144c7a 1880 #define debug_fmt mbedtls_debug_fmt
JMF 12:0071cb144c7a 1881 #define debug_print_buf mbedtls_debug_print_buf
JMF 12:0071cb144c7a 1882 #define debug_print_crt mbedtls_debug_print_crt
JMF 12:0071cb144c7a 1883 #define debug_print_ecp mbedtls_debug_print_ecp
JMF 12:0071cb144c7a 1884 #define debug_print_mpi mbedtls_debug_print_mpi
JMF 12:0071cb144c7a 1885 #define debug_print_msg mbedtls_debug_print_msg
JMF 12:0071cb144c7a 1886 #define debug_print_ret mbedtls_debug_print_ret
JMF 12:0071cb144c7a 1887 #define debug_set_log_mode mbedtls_debug_set_log_mode
JMF 12:0071cb144c7a 1888 #define debug_set_threshold mbedtls_debug_set_threshold
JMF 12:0071cb144c7a 1889 #define des3_context mbedtls_des3_context
JMF 12:0071cb144c7a 1890 #define des3_crypt_cbc mbedtls_des3_crypt_cbc
JMF 12:0071cb144c7a 1891 #define des3_crypt_ecb mbedtls_des3_crypt_ecb
JMF 12:0071cb144c7a 1892 #define des3_free mbedtls_des3_free
JMF 12:0071cb144c7a 1893 #define des3_init mbedtls_des3_init
JMF 12:0071cb144c7a 1894 #define des3_set2key_dec mbedtls_des3_set2key_dec
JMF 12:0071cb144c7a 1895 #define des3_set2key_enc mbedtls_des3_set2key_enc
JMF 12:0071cb144c7a 1896 #define des3_set3key_dec mbedtls_des3_set3key_dec
JMF 12:0071cb144c7a 1897 #define des3_set3key_enc mbedtls_des3_set3key_enc
JMF 12:0071cb144c7a 1898 #define des_context mbedtls_des_context
JMF 12:0071cb144c7a 1899 #define des_crypt_cbc mbedtls_des_crypt_cbc
JMF 12:0071cb144c7a 1900 #define des_crypt_ecb mbedtls_des_crypt_ecb
JMF 12:0071cb144c7a 1901 #define des_free mbedtls_des_free
JMF 12:0071cb144c7a 1902 #define des_init mbedtls_des_init
JMF 12:0071cb144c7a 1903 #define des_key_check_key_parity mbedtls_des_key_check_key_parity
JMF 12:0071cb144c7a 1904 #define des_key_check_weak mbedtls_des_key_check_weak
JMF 12:0071cb144c7a 1905 #define des_key_set_parity mbedtls_des_key_set_parity
JMF 12:0071cb144c7a 1906 #define des_self_test mbedtls_des_self_test
JMF 12:0071cb144c7a 1907 #define des_setkey_dec mbedtls_des_setkey_dec
JMF 12:0071cb144c7a 1908 #define des_setkey_enc mbedtls_des_setkey_enc
JMF 12:0071cb144c7a 1909 #define dhm_calc_secret mbedtls_dhm_calc_secret
JMF 12:0071cb144c7a 1910 #define dhm_context mbedtls_dhm_context
JMF 12:0071cb144c7a 1911 #define dhm_free mbedtls_dhm_free
JMF 12:0071cb144c7a 1912 #define dhm_init mbedtls_dhm_init
JMF 12:0071cb144c7a 1913 #define dhm_make_params mbedtls_dhm_make_params
JMF 12:0071cb144c7a 1914 #define dhm_make_public mbedtls_dhm_make_public
JMF 12:0071cb144c7a 1915 #define dhm_parse_dhm mbedtls_dhm_parse_dhm
JMF 12:0071cb144c7a 1916 #define dhm_parse_dhmfile mbedtls_dhm_parse_dhmfile
JMF 12:0071cb144c7a 1917 #define dhm_read_params mbedtls_dhm_read_params
JMF 12:0071cb144c7a 1918 #define dhm_read_public mbedtls_dhm_read_public
JMF 12:0071cb144c7a 1919 #define dhm_self_test mbedtls_dhm_self_test
JMF 12:0071cb144c7a 1920 #define ecdh_calc_secret mbedtls_ecdh_calc_secret
JMF 12:0071cb144c7a 1921 #define ecdh_compute_shared mbedtls_ecdh_compute_shared
JMF 12:0071cb144c7a 1922 #define ecdh_context mbedtls_ecdh_context
JMF 12:0071cb144c7a 1923 #define ecdh_free mbedtls_ecdh_free
JMF 12:0071cb144c7a 1924 #define ecdh_gen_public mbedtls_ecdh_gen_public
JMF 12:0071cb144c7a 1925 #define ecdh_get_params mbedtls_ecdh_get_params
JMF 12:0071cb144c7a 1926 #define ecdh_init mbedtls_ecdh_init
JMF 12:0071cb144c7a 1927 #define ecdh_make_params mbedtls_ecdh_make_params
JMF 12:0071cb144c7a 1928 #define ecdh_make_public mbedtls_ecdh_make_public
JMF 12:0071cb144c7a 1929 #define ecdh_read_params mbedtls_ecdh_read_params
JMF 12:0071cb144c7a 1930 #define ecdh_read_public mbedtls_ecdh_read_public
JMF 12:0071cb144c7a 1931 #define ecdh_self_test mbedtls_ecdh_self_test
JMF 12:0071cb144c7a 1932 #define ecdh_side mbedtls_ecdh_side
JMF 12:0071cb144c7a 1933 #define ecdsa_context mbedtls_ecdsa_context
JMF 12:0071cb144c7a 1934 #define ecdsa_free mbedtls_ecdsa_free
JMF 12:0071cb144c7a 1935 #define ecdsa_from_keypair mbedtls_ecdsa_from_keypair
JMF 12:0071cb144c7a 1936 #define ecdsa_genkey mbedtls_ecdsa_genkey
JMF 12:0071cb144c7a 1937 #define ecdsa_info mbedtls_ecdsa_info
JMF 12:0071cb144c7a 1938 #define ecdsa_init mbedtls_ecdsa_init
JMF 12:0071cb144c7a 1939 #define ecdsa_read_signature mbedtls_ecdsa_read_signature
JMF 12:0071cb144c7a 1940 #define ecdsa_self_test mbedtls_ecdsa_self_test
JMF 12:0071cb144c7a 1941 #define ecdsa_sign mbedtls_ecdsa_sign
JMF 12:0071cb144c7a 1942 #define ecdsa_sign_det mbedtls_ecdsa_sign_det
JMF 12:0071cb144c7a 1943 #define ecdsa_verify mbedtls_ecdsa_verify
JMF 12:0071cb144c7a 1944 #define ecdsa_write_signature mbedtls_ecdsa_write_signature
JMF 12:0071cb144c7a 1945 #define ecdsa_write_signature_det mbedtls_ecdsa_write_signature_det
JMF 12:0071cb144c7a 1946 #define eckey_info mbedtls_eckey_info
JMF 12:0071cb144c7a 1947 #define eckeydh_info mbedtls_eckeydh_info
JMF 12:0071cb144c7a 1948 #define ecp_add mbedtls_ecp_add
JMF 12:0071cb144c7a 1949 #define ecp_check_privkey mbedtls_ecp_check_privkey
JMF 12:0071cb144c7a 1950 #define ecp_check_pub_priv mbedtls_ecp_check_pub_priv
JMF 12:0071cb144c7a 1951 #define ecp_check_pubkey mbedtls_ecp_check_pubkey
JMF 12:0071cb144c7a 1952 #define ecp_copy mbedtls_ecp_copy
JMF 12:0071cb144c7a 1953 #define ecp_curve_info mbedtls_ecp_curve_info
JMF 12:0071cb144c7a 1954 #define ecp_curve_info_from_grp_id mbedtls_ecp_curve_info_from_grp_id
JMF 12:0071cb144c7a 1955 #define ecp_curve_info_from_name mbedtls_ecp_curve_info_from_name
JMF 12:0071cb144c7a 1956 #define ecp_curve_info_from_tls_id mbedtls_ecp_curve_info_from_tls_id
JMF 12:0071cb144c7a 1957 #define ecp_curve_list mbedtls_ecp_curve_list
JMF 12:0071cb144c7a 1958 #define ecp_gen_key mbedtls_ecp_gen_key
JMF 12:0071cb144c7a 1959 #define ecp_gen_keypair mbedtls_ecp_gen_keypair
JMF 12:0071cb144c7a 1960 #define ecp_group mbedtls_ecp_group
JMF 12:0071cb144c7a 1961 #define ecp_group_copy mbedtls_ecp_group_copy
JMF 12:0071cb144c7a 1962 #define ecp_group_free mbedtls_ecp_group_free
JMF 12:0071cb144c7a 1963 #define ecp_group_id mbedtls_ecp_group_id
JMF 12:0071cb144c7a 1964 #define ecp_group_init mbedtls_ecp_group_init
JMF 12:0071cb144c7a 1965 #define ecp_group_read_string mbedtls_ecp_group_read_string
JMF 12:0071cb144c7a 1966 #define ecp_grp_id_list mbedtls_ecp_grp_id_list
JMF 12:0071cb144c7a 1967 #define ecp_is_zero mbedtls_ecp_is_zero
JMF 12:0071cb144c7a 1968 #define ecp_keypair mbedtls_ecp_keypair
JMF 12:0071cb144c7a 1969 #define ecp_keypair_free mbedtls_ecp_keypair_free
JMF 12:0071cb144c7a 1970 #define ecp_keypair_init mbedtls_ecp_keypair_init
JMF 12:0071cb144c7a 1971 #define ecp_mul mbedtls_ecp_mul
JMF 12:0071cb144c7a 1972 #define ecp_point mbedtls_ecp_point
JMF 12:0071cb144c7a 1973 #define ecp_point_free mbedtls_ecp_point_free
JMF 12:0071cb144c7a 1974 #define ecp_point_init mbedtls_ecp_point_init
JMF 12:0071cb144c7a 1975 #define ecp_point_read_binary mbedtls_ecp_point_read_binary
JMF 12:0071cb144c7a 1976 #define ecp_point_read_string mbedtls_ecp_point_read_string
JMF 12:0071cb144c7a 1977 #define ecp_point_write_binary mbedtls_ecp_point_write_binary
JMF 12:0071cb144c7a 1978 #define ecp_self_test mbedtls_ecp_self_test
JMF 12:0071cb144c7a 1979 #define ecp_set_zero mbedtls_ecp_set_zero
JMF 12:0071cb144c7a 1980 #define ecp_sub mbedtls_ecp_sub
JMF 12:0071cb144c7a 1981 #define ecp_tls_read_group mbedtls_ecp_tls_read_group
JMF 12:0071cb144c7a 1982 #define ecp_tls_read_point mbedtls_ecp_tls_read_point
JMF 12:0071cb144c7a 1983 #define ecp_tls_write_group mbedtls_ecp_tls_write_group
JMF 12:0071cb144c7a 1984 #define ecp_tls_write_point mbedtls_ecp_tls_write_point
JMF 12:0071cb144c7a 1985 #define ecp_use_known_dp mbedtls_ecp_group_load
JMF 12:0071cb144c7a 1986 #define entropy_add_source mbedtls_entropy_add_source
JMF 12:0071cb144c7a 1987 #define entropy_context mbedtls_entropy_context
JMF 12:0071cb144c7a 1988 #define entropy_free mbedtls_entropy_free
JMF 12:0071cb144c7a 1989 #define entropy_func mbedtls_entropy_func
JMF 12:0071cb144c7a 1990 #define entropy_gather mbedtls_entropy_gather
JMF 12:0071cb144c7a 1991 #define entropy_init mbedtls_entropy_init
JMF 12:0071cb144c7a 1992 #define entropy_self_test mbedtls_entropy_self_test
JMF 12:0071cb144c7a 1993 #define entropy_update_manual mbedtls_entropy_update_manual
JMF 12:0071cb144c7a 1994 #define entropy_update_seed_file mbedtls_entropy_update_seed_file
JMF 12:0071cb144c7a 1995 #define entropy_write_seed_file mbedtls_entropy_write_seed_file
JMF 12:0071cb144c7a 1996 #define error_strerror mbedtls_strerror
JMF 12:0071cb144c7a 1997 #define f_source_ptr mbedtls_entropy_f_source_ptr
JMF 12:0071cb144c7a 1998 #define gcm_auth_decrypt mbedtls_gcm_auth_decrypt
JMF 12:0071cb144c7a 1999 #define gcm_context mbedtls_gcm_context
JMF 12:0071cb144c7a 2000 #define gcm_crypt_and_tag mbedtls_gcm_crypt_and_tag
JMF 12:0071cb144c7a 2001 #define gcm_finish mbedtls_gcm_finish
JMF 12:0071cb144c7a 2002 #define gcm_free mbedtls_gcm_free
JMF 12:0071cb144c7a 2003 #define gcm_init mbedtls_gcm_init
JMF 12:0071cb144c7a 2004 #define gcm_self_test mbedtls_gcm_self_test
JMF 12:0071cb144c7a 2005 #define gcm_starts mbedtls_gcm_starts
JMF 12:0071cb144c7a 2006 #define gcm_update mbedtls_gcm_update
JMF 12:0071cb144c7a 2007 #define get_timer mbedtls_timing_get_timer
JMF 12:0071cb144c7a 2008 #define hardclock mbedtls_timing_hardclock
JMF 12:0071cb144c7a 2009 #define hardclock_poll mbedtls_hardclock_poll
JMF 12:0071cb144c7a 2010 #define havege_free mbedtls_havege_free
JMF 12:0071cb144c7a 2011 #define havege_init mbedtls_havege_init
JMF 12:0071cb144c7a 2012 #define havege_poll mbedtls_havege_poll
JMF 12:0071cb144c7a 2013 #define havege_random mbedtls_havege_random
JMF 12:0071cb144c7a 2014 #define havege_state mbedtls_havege_state
JMF 12:0071cb144c7a 2015 #define hmac_drbg_context mbedtls_hmac_drbg_context
JMF 12:0071cb144c7a 2016 #define hmac_drbg_free mbedtls_hmac_drbg_free
JMF 12:0071cb144c7a 2017 #define hmac_drbg_init mbedtls_hmac_drbg_init
JMF 12:0071cb144c7a 2018 #define hmac_drbg_init_buf mbedtls_hmac_drbg_init_buf
JMF 12:0071cb144c7a 2019 #define hmac_drbg_random mbedtls_hmac_drbg_random
JMF 12:0071cb144c7a 2020 #define hmac_drbg_random_with_add mbedtls_hmac_drbg_random_with_add
JMF 12:0071cb144c7a 2021 #define hmac_drbg_reseed mbedtls_hmac_drbg_reseed
JMF 12:0071cb144c7a 2022 #define hmac_drbg_self_test mbedtls_hmac_drbg_self_test
JMF 12:0071cb144c7a 2023 #define hmac_drbg_set_entropy_len mbedtls_hmac_drbg_set_entropy_len
JMF 12:0071cb144c7a 2024 #define hmac_drbg_set_prediction_resistance mbedtls_hmac_drbg_set_prediction_resistance
JMF 12:0071cb144c7a 2025 #define hmac_drbg_set_reseed_interval mbedtls_hmac_drbg_set_reseed_interval
JMF 12:0071cb144c7a 2026 #define hmac_drbg_update mbedtls_hmac_drbg_update
JMF 12:0071cb144c7a 2027 #define hmac_drbg_update_seed_file mbedtls_hmac_drbg_update_seed_file
JMF 12:0071cb144c7a 2028 #define hmac_drbg_write_seed_file mbedtls_hmac_drbg_write_seed_file
JMF 12:0071cb144c7a 2029 #define hr_time mbedtls_timing_hr_time
JMF 12:0071cb144c7a 2030 #define key_exchange_type_t mbedtls_key_exchange_type_t
JMF 12:0071cb144c7a 2031 #define md mbedtls_md
JMF 12:0071cb144c7a 2032 #define md2 mbedtls_md2
JMF 12:0071cb144c7a 2033 #define md2_context mbedtls_md2_context
JMF 12:0071cb144c7a 2034 #define md2_file mbedtls_md2_file
JMF 12:0071cb144c7a 2035 #define md2_finish mbedtls_md2_finish
JMF 12:0071cb144c7a 2036 #define md2_free mbedtls_md2_free
JMF 12:0071cb144c7a 2037 #define md2_hmac mbedtls_md2_hmac
JMF 12:0071cb144c7a 2038 #define md2_hmac_finish mbedtls_md2_hmac_finish
JMF 12:0071cb144c7a 2039 #define md2_hmac_reset mbedtls_md2_hmac_reset
JMF 12:0071cb144c7a 2040 #define md2_hmac_starts mbedtls_md2_hmac_starts
JMF 12:0071cb144c7a 2041 #define md2_hmac_update mbedtls_md2_hmac_update
JMF 12:0071cb144c7a 2042 #define md2_info mbedtls_md2_info
JMF 12:0071cb144c7a 2043 #define md2_init mbedtls_md2_init
JMF 12:0071cb144c7a 2044 #define md2_process mbedtls_md2_process
JMF 12:0071cb144c7a 2045 #define md2_self_test mbedtls_md2_self_test
JMF 12:0071cb144c7a 2046 #define md2_starts mbedtls_md2_starts
JMF 12:0071cb144c7a 2047 #define md2_update mbedtls_md2_update
JMF 12:0071cb144c7a 2048 #define md4 mbedtls_md4
JMF 12:0071cb144c7a 2049 #define md4_context mbedtls_md4_context
JMF 12:0071cb144c7a 2050 #define md4_file mbedtls_md4_file
JMF 12:0071cb144c7a 2051 #define md4_finish mbedtls_md4_finish
JMF 12:0071cb144c7a 2052 #define md4_free mbedtls_md4_free
JMF 12:0071cb144c7a 2053 #define md4_hmac mbedtls_md4_hmac
JMF 12:0071cb144c7a 2054 #define md4_hmac_finish mbedtls_md4_hmac_finish
JMF 12:0071cb144c7a 2055 #define md4_hmac_reset mbedtls_md4_hmac_reset
JMF 12:0071cb144c7a 2056 #define md4_hmac_starts mbedtls_md4_hmac_starts
JMF 12:0071cb144c7a 2057 #define md4_hmac_update mbedtls_md4_hmac_update
JMF 12:0071cb144c7a 2058 #define md4_info mbedtls_md4_info
JMF 12:0071cb144c7a 2059 #define md4_init mbedtls_md4_init
JMF 12:0071cb144c7a 2060 #define md4_process mbedtls_md4_process
JMF 12:0071cb144c7a 2061 #define md4_self_test mbedtls_md4_self_test
JMF 12:0071cb144c7a 2062 #define md4_starts mbedtls_md4_starts
JMF 12:0071cb144c7a 2063 #define md4_update mbedtls_md4_update
JMF 12:0071cb144c7a 2064 #define md5 mbedtls_md5
JMF 12:0071cb144c7a 2065 #define md5_context mbedtls_md5_context
JMF 12:0071cb144c7a 2066 #define md5_file mbedtls_md5_file
JMF 12:0071cb144c7a 2067 #define md5_finish mbedtls_md5_finish
JMF 12:0071cb144c7a 2068 #define md5_free mbedtls_md5_free
JMF 12:0071cb144c7a 2069 #define md5_hmac mbedtls_md5_hmac
JMF 12:0071cb144c7a 2070 #define md5_hmac_finish mbedtls_md5_hmac_finish
JMF 12:0071cb144c7a 2071 #define md5_hmac_reset mbedtls_md5_hmac_reset
JMF 12:0071cb144c7a 2072 #define md5_hmac_starts mbedtls_md5_hmac_starts
JMF 12:0071cb144c7a 2073 #define md5_hmac_update mbedtls_md5_hmac_update
JMF 12:0071cb144c7a 2074 #define md5_info mbedtls_md5_info
JMF 12:0071cb144c7a 2075 #define md5_init mbedtls_md5_init
JMF 12:0071cb144c7a 2076 #define md5_process mbedtls_md5_process
JMF 12:0071cb144c7a 2077 #define md5_self_test mbedtls_md5_self_test
JMF 12:0071cb144c7a 2078 #define md5_starts mbedtls_md5_starts
JMF 12:0071cb144c7a 2079 #define md5_update mbedtls_md5_update
JMF 12:0071cb144c7a 2080 #define md_context_t mbedtls_md_context_t
JMF 12:0071cb144c7a 2081 #define md_file mbedtls_md_file
JMF 12:0071cb144c7a 2082 #define md_finish mbedtls_md_finish
JMF 12:0071cb144c7a 2083 #define md_free mbedtls_md_free
JMF 12:0071cb144c7a 2084 #define md_free_ctx mbedtls_md_free_ctx
JMF 12:0071cb144c7a 2085 #define md_get_name mbedtls_md_get_name
JMF 12:0071cb144c7a 2086 #define md_get_size mbedtls_md_get_size
JMF 12:0071cb144c7a 2087 #define md_get_type mbedtls_md_get_type
JMF 12:0071cb144c7a 2088 #define md_hmac mbedtls_md_hmac
JMF 12:0071cb144c7a 2089 #define md_hmac_finish mbedtls_md_hmac_finish
JMF 12:0071cb144c7a 2090 #define md_hmac_reset mbedtls_md_hmac_reset
JMF 12:0071cb144c7a 2091 #define md_hmac_starts mbedtls_md_hmac_starts
JMF 12:0071cb144c7a 2092 #define md_hmac_update mbedtls_md_hmac_update
JMF 12:0071cb144c7a 2093 #define md_info_from_string mbedtls_md_info_from_string
JMF 12:0071cb144c7a 2094 #define md_info_from_type mbedtls_md_info_from_type
JMF 12:0071cb144c7a 2095 #define md_info_t mbedtls_md_info_t
JMF 12:0071cb144c7a 2096 #define md_init mbedtls_md_init
JMF 12:0071cb144c7a 2097 #define md_init_ctx mbedtls_md_init_ctx
JMF 12:0071cb144c7a 2098 #define md_list mbedtls_md_list
JMF 12:0071cb144c7a 2099 #define md_process mbedtls_md_process
JMF 12:0071cb144c7a 2100 #define md_starts mbedtls_md_starts
JMF 12:0071cb144c7a 2101 #define md_type_t mbedtls_md_type_t
JMF 12:0071cb144c7a 2102 #define md_update mbedtls_md_update
JMF 12:0071cb144c7a 2103 #define memory_buffer_alloc_cur_get mbedtls_memory_buffer_alloc_cur_get
JMF 12:0071cb144c7a 2104 #define memory_buffer_alloc_free mbedtls_memory_buffer_alloc_free
JMF 12:0071cb144c7a 2105 #define memory_buffer_alloc_init mbedtls_memory_buffer_alloc_init
JMF 12:0071cb144c7a 2106 #define memory_buffer_alloc_max_get mbedtls_memory_buffer_alloc_max_get
JMF 12:0071cb144c7a 2107 #define memory_buffer_alloc_max_reset mbedtls_memory_buffer_alloc_max_reset
JMF 12:0071cb144c7a 2108 #define memory_buffer_alloc_self_test mbedtls_memory_buffer_alloc_self_test
JMF 12:0071cb144c7a 2109 #define memory_buffer_alloc_status mbedtls_memory_buffer_alloc_status
JMF 12:0071cb144c7a 2110 #define memory_buffer_alloc_verify mbedtls_memory_buffer_alloc_verify
JMF 12:0071cb144c7a 2111 #define memory_buffer_set_verify mbedtls_memory_buffer_set_verify
JMF 12:0071cb144c7a 2112 #define memory_set_own mbedtls_memory_set_own
JMF 12:0071cb144c7a 2113 #define mpi mbedtls_mpi
JMF 12:0071cb144c7a 2114 #define mpi_add_abs mbedtls_mpi_add_abs
JMF 12:0071cb144c7a 2115 #define mpi_add_int mbedtls_mpi_add_int
JMF 12:0071cb144c7a 2116 #define mpi_add_mpi mbedtls_mpi_add_mpi
JMF 12:0071cb144c7a 2117 #define mpi_cmp_abs mbedtls_mpi_cmp_abs
JMF 12:0071cb144c7a 2118 #define mpi_cmp_int mbedtls_mpi_cmp_int
JMF 12:0071cb144c7a 2119 #define mpi_cmp_mpi mbedtls_mpi_cmp_mpi
JMF 12:0071cb144c7a 2120 #define mpi_copy mbedtls_mpi_copy
JMF 12:0071cb144c7a 2121 #define mpi_div_int mbedtls_mpi_div_int
JMF 12:0071cb144c7a 2122 #define mpi_div_mpi mbedtls_mpi_div_mpi
JMF 12:0071cb144c7a 2123 #define mpi_exp_mod mbedtls_mpi_exp_mod
JMF 12:0071cb144c7a 2124 #define mpi_fill_random mbedtls_mpi_fill_random
JMF 12:0071cb144c7a 2125 #define mpi_free mbedtls_mpi_free
JMF 12:0071cb144c7a 2126 #define mpi_gcd mbedtls_mpi_gcd
JMF 12:0071cb144c7a 2127 #define mpi_gen_prime mbedtls_mpi_gen_prime
JMF 12:0071cb144c7a 2128 #define mpi_get_bit mbedtls_mpi_get_bit
JMF 12:0071cb144c7a 2129 #define mpi_grow mbedtls_mpi_grow
JMF 12:0071cb144c7a 2130 #define mpi_init mbedtls_mpi_init
JMF 12:0071cb144c7a 2131 #define mpi_inv_mod mbedtls_mpi_inv_mod
JMF 12:0071cb144c7a 2132 #define mpi_is_prime mbedtls_mpi_is_prime
JMF 12:0071cb144c7a 2133 #define mpi_lsb mbedtls_mpi_lsb
JMF 12:0071cb144c7a 2134 #define mpi_lset mbedtls_mpi_lset
JMF 12:0071cb144c7a 2135 #define mpi_mod_int mbedtls_mpi_mod_int
JMF 12:0071cb144c7a 2136 #define mpi_mod_mpi mbedtls_mpi_mod_mpi
JMF 12:0071cb144c7a 2137 #define mpi_msb mbedtls_mpi_bitlen
JMF 12:0071cb144c7a 2138 #define mpi_mul_int mbedtls_mpi_mul_int
JMF 12:0071cb144c7a 2139 #define mpi_mul_mpi mbedtls_mpi_mul_mpi
JMF 12:0071cb144c7a 2140 #define mpi_read_binary mbedtls_mpi_read_binary
JMF 12:0071cb144c7a 2141 #define mpi_read_file mbedtls_mpi_read_file
JMF 12:0071cb144c7a 2142 #define mpi_read_string mbedtls_mpi_read_string
JMF 12:0071cb144c7a 2143 #define mpi_safe_cond_assign mbedtls_mpi_safe_cond_assign
JMF 12:0071cb144c7a 2144 #define mpi_safe_cond_swap mbedtls_mpi_safe_cond_swap
JMF 12:0071cb144c7a 2145 #define mpi_self_test mbedtls_mpi_self_test
JMF 12:0071cb144c7a 2146 #define mpi_set_bit mbedtls_mpi_set_bit
JMF 12:0071cb144c7a 2147 #define mpi_shift_l mbedtls_mpi_shift_l
JMF 12:0071cb144c7a 2148 #define mpi_shift_r mbedtls_mpi_shift_r
JMF 12:0071cb144c7a 2149 #define mpi_shrink mbedtls_mpi_shrink
JMF 12:0071cb144c7a 2150 #define mpi_size mbedtls_mpi_size
JMF 12:0071cb144c7a 2151 #define mpi_sub_abs mbedtls_mpi_sub_abs
JMF 12:0071cb144c7a 2152 #define mpi_sub_int mbedtls_mpi_sub_int
JMF 12:0071cb144c7a 2153 #define mpi_sub_mpi mbedtls_mpi_sub_mpi
JMF 12:0071cb144c7a 2154 #define mpi_swap mbedtls_mpi_swap
JMF 12:0071cb144c7a 2155 #define mpi_write_binary mbedtls_mpi_write_binary
JMF 12:0071cb144c7a 2156 #define mpi_write_file mbedtls_mpi_write_file
JMF 12:0071cb144c7a 2157 #define mpi_write_string mbedtls_mpi_write_string
JMF 12:0071cb144c7a 2158 #define net_accept mbedtls_net_accept
JMF 12:0071cb144c7a 2159 #define net_bind mbedtls_net_bind
JMF 12:0071cb144c7a 2160 #define net_close mbedtls_net_free
JMF 12:0071cb144c7a 2161 #define net_connect mbedtls_net_connect
JMF 12:0071cb144c7a 2162 #define net_recv mbedtls_net_recv
JMF 12:0071cb144c7a 2163 #define net_recv_timeout mbedtls_net_recv_timeout
JMF 12:0071cb144c7a 2164 #define net_send mbedtls_net_send
JMF 12:0071cb144c7a 2165 #define net_set_block mbedtls_net_set_block
JMF 12:0071cb144c7a 2166 #define net_set_nonblock mbedtls_net_set_nonblock
JMF 12:0071cb144c7a 2167 #define net_usleep mbedtls_net_usleep
JMF 12:0071cb144c7a 2168 #define oid_descriptor_t mbedtls_oid_descriptor_t
JMF 12:0071cb144c7a 2169 #define oid_get_attr_short_name mbedtls_oid_get_attr_short_name
JMF 12:0071cb144c7a 2170 #define oid_get_cipher_alg mbedtls_oid_get_cipher_alg
JMF 12:0071cb144c7a 2171 #define oid_get_ec_grp mbedtls_oid_get_ec_grp
JMF 12:0071cb144c7a 2172 #define oid_get_extended_key_usage mbedtls_oid_get_extended_key_usage
JMF 12:0071cb144c7a 2173 #define oid_get_md_alg mbedtls_oid_get_md_alg
JMF 12:0071cb144c7a 2174 #define oid_get_numeric_string mbedtls_oid_get_numeric_string
JMF 12:0071cb144c7a 2175 #define oid_get_oid_by_ec_grp mbedtls_oid_get_oid_by_ec_grp
JMF 12:0071cb144c7a 2176 #define oid_get_oid_by_md mbedtls_oid_get_oid_by_md
JMF 12:0071cb144c7a 2177 #define oid_get_oid_by_pk_alg mbedtls_oid_get_oid_by_pk_alg
JMF 12:0071cb144c7a 2178 #define oid_get_oid_by_sig_alg mbedtls_oid_get_oid_by_sig_alg
JMF 12:0071cb144c7a 2179 #define oid_get_pk_alg mbedtls_oid_get_pk_alg
JMF 12:0071cb144c7a 2180 #define oid_get_pkcs12_pbe_alg mbedtls_oid_get_pkcs12_pbe_alg
JMF 12:0071cb144c7a 2181 #define oid_get_sig_alg mbedtls_oid_get_sig_alg
JMF 12:0071cb144c7a 2182 #define oid_get_sig_alg_desc mbedtls_oid_get_sig_alg_desc
JMF 12:0071cb144c7a 2183 #define oid_get_x509_ext_type mbedtls_oid_get_x509_ext_type
JMF 12:0071cb144c7a 2184 #define operation_t mbedtls_operation_t
JMF 12:0071cb144c7a 2185 #define padlock_supports mbedtls_padlock_has_support
JMF 12:0071cb144c7a 2186 #define padlock_xcryptcbc mbedtls_padlock_xcryptcbc
JMF 12:0071cb144c7a 2187 #define padlock_xcryptecb mbedtls_padlock_xcryptecb
JMF 12:0071cb144c7a 2188 #define pbkdf2_hmac mbedtls_pbkdf2_hmac
JMF 12:0071cb144c7a 2189 #define pbkdf2_self_test mbedtls_pbkdf2_self_test
JMF 12:0071cb144c7a 2190 #define pem_context mbedtls_pem_context
JMF 12:0071cb144c7a 2191 #define pem_free mbedtls_pem_free
JMF 12:0071cb144c7a 2192 #define pem_init mbedtls_pem_init
JMF 12:0071cb144c7a 2193 #define pem_read_buffer mbedtls_pem_read_buffer
JMF 12:0071cb144c7a 2194 #define pem_write_buffer mbedtls_pem_write_buffer
JMF 12:0071cb144c7a 2195 #define pk_can_do mbedtls_pk_can_do
JMF 12:0071cb144c7a 2196 #define pk_check_pair mbedtls_pk_check_pair
JMF 12:0071cb144c7a 2197 #define pk_context mbedtls_pk_context
JMF 12:0071cb144c7a 2198 #define pk_debug mbedtls_pk_debug
JMF 12:0071cb144c7a 2199 #define pk_debug_item mbedtls_pk_debug_item
JMF 12:0071cb144c7a 2200 #define pk_debug_type mbedtls_pk_debug_type
JMF 12:0071cb144c7a 2201 #define pk_decrypt mbedtls_pk_decrypt
JMF 12:0071cb144c7a 2202 #define pk_ec mbedtls_pk_ec
JMF 12:0071cb144c7a 2203 #define pk_encrypt mbedtls_pk_encrypt
JMF 12:0071cb144c7a 2204 #define pk_free mbedtls_pk_free
JMF 12:0071cb144c7a 2205 #define pk_get_len mbedtls_pk_get_len
JMF 12:0071cb144c7a 2206 #define pk_get_name mbedtls_pk_get_name
JMF 12:0071cb144c7a 2207 #define pk_get_size mbedtls_pk_get_bitlen
JMF 12:0071cb144c7a 2208 #define pk_get_type mbedtls_pk_get_type
JMF 12:0071cb144c7a 2209 #define pk_info_from_type mbedtls_pk_info_from_type
JMF 12:0071cb144c7a 2210 #define pk_info_t mbedtls_pk_info_t
JMF 12:0071cb144c7a 2211 #define pk_init mbedtls_pk_init
JMF 12:0071cb144c7a 2212 #define pk_init_ctx mbedtls_pk_setup
JMF 12:0071cb144c7a 2213 #define pk_init_ctx_rsa_alt mbedtls_pk_setup_rsa_alt
JMF 12:0071cb144c7a 2214 #define pk_load_file mbedtls_pk_load_file
JMF 12:0071cb144c7a 2215 #define pk_parse_key mbedtls_pk_parse_key
JMF 12:0071cb144c7a 2216 #define pk_parse_keyfile mbedtls_pk_parse_keyfile
JMF 12:0071cb144c7a 2217 #define pk_parse_public_key mbedtls_pk_parse_public_key
JMF 12:0071cb144c7a 2218 #define pk_parse_public_keyfile mbedtls_pk_parse_public_keyfile
JMF 12:0071cb144c7a 2219 #define pk_parse_subpubkey mbedtls_pk_parse_subpubkey
JMF 12:0071cb144c7a 2220 #define pk_rsa mbedtls_pk_rsa
JMF 12:0071cb144c7a 2221 #define pk_rsa_alt_decrypt_func mbedtls_pk_rsa_alt_decrypt_func
JMF 12:0071cb144c7a 2222 #define pk_rsa_alt_key_len_func mbedtls_pk_rsa_alt_key_len_func
JMF 12:0071cb144c7a 2223 #define pk_rsa_alt_sign_func mbedtls_pk_rsa_alt_sign_func
JMF 12:0071cb144c7a 2224 #define pk_rsassa_pss_options mbedtls_pk_rsassa_pss_options
JMF 12:0071cb144c7a 2225 #define pk_sign mbedtls_pk_sign
JMF 12:0071cb144c7a 2226 #define pk_type_t mbedtls_pk_type_t
JMF 12:0071cb144c7a 2227 #define pk_verify mbedtls_pk_verify
JMF 12:0071cb144c7a 2228 #define pk_verify_ext mbedtls_pk_verify_ext
JMF 12:0071cb144c7a 2229 #define pk_write_key_der mbedtls_pk_write_key_der
JMF 12:0071cb144c7a 2230 #define pk_write_key_pem mbedtls_pk_write_key_pem
JMF 12:0071cb144c7a 2231 #define pk_write_pubkey mbedtls_pk_write_pubkey
JMF 12:0071cb144c7a 2232 #define pk_write_pubkey_der mbedtls_pk_write_pubkey_der
JMF 12:0071cb144c7a 2233 #define pk_write_pubkey_pem mbedtls_pk_write_pubkey_pem
JMF 12:0071cb144c7a 2234 #define pkcs11_context mbedtls_pkcs11_context
JMF 12:0071cb144c7a 2235 #define pkcs11_decrypt mbedtls_pkcs11_decrypt
JMF 12:0071cb144c7a 2236 #define pkcs11_priv_key_free mbedtls_pkcs11_priv_key_free
JMF 12:0071cb144c7a 2237 #define pkcs11_priv_key_init mbedtls_pkcs11_priv_key_bind
JMF 12:0071cb144c7a 2238 #define pkcs11_sign mbedtls_pkcs11_sign
JMF 12:0071cb144c7a 2239 #define pkcs11_x509_cert_init mbedtls_pkcs11_x509_cert_bind
JMF 12:0071cb144c7a 2240 #define pkcs12_derivation mbedtls_pkcs12_derivation
JMF 12:0071cb144c7a 2241 #define pkcs12_pbe mbedtls_pkcs12_pbe
JMF 12:0071cb144c7a 2242 #define pkcs12_pbe_sha1_rc4_128 mbedtls_pkcs12_pbe_sha1_rc4_128
JMF 12:0071cb144c7a 2243 #define pkcs5_pbes2 mbedtls_pkcs5_pbes2
JMF 12:0071cb144c7a 2244 #define pkcs5_pbkdf2_hmac mbedtls_pkcs5_pbkdf2_hmac
JMF 12:0071cb144c7a 2245 #define pkcs5_self_test mbedtls_pkcs5_self_test
JMF 12:0071cb144c7a 2246 #define platform_entropy_poll mbedtls_platform_entropy_poll
JMF 12:0071cb144c7a 2247 #define platform_set_exit mbedtls_platform_set_exit
JMF 12:0071cb144c7a 2248 #define platform_set_fprintf mbedtls_platform_set_fprintf
JMF 12:0071cb144c7a 2249 #define platform_set_malloc_free mbedtls_platform_set_malloc_free
JMF 12:0071cb144c7a 2250 #define platform_set_printf mbedtls_platform_set_printf
JMF 12:0071cb144c7a 2251 #define platform_set_snprintf mbedtls_platform_set_snprintf
JMF 12:0071cb144c7a 2252 #define polarssl_exit mbedtls_exit
JMF 12:0071cb144c7a 2253 #define polarssl_fprintf mbedtls_fprintf
JMF 12:0071cb144c7a 2254 #define polarssl_free mbedtls_free
JMF 12:0071cb144c7a 2255 #define polarssl_malloc mbedtls_malloc
JMF 12:0071cb144c7a 2256 #define polarssl_mutex_free mbedtls_mutex_free
JMF 12:0071cb144c7a 2257 #define polarssl_mutex_init mbedtls_mutex_init
JMF 12:0071cb144c7a 2258 #define polarssl_mutex_lock mbedtls_mutex_lock
JMF 12:0071cb144c7a 2259 #define polarssl_mutex_unlock mbedtls_mutex_unlock
JMF 12:0071cb144c7a 2260 #define polarssl_printf mbedtls_printf
JMF 12:0071cb144c7a 2261 #define polarssl_snprintf mbedtls_snprintf
JMF 12:0071cb144c7a 2262 #define polarssl_strerror mbedtls_strerror
JMF 12:0071cb144c7a 2263 #define ripemd160 mbedtls_ripemd160
JMF 12:0071cb144c7a 2264 #define ripemd160_context mbedtls_ripemd160_context
JMF 12:0071cb144c7a 2265 #define ripemd160_file mbedtls_ripemd160_file
JMF 12:0071cb144c7a 2266 #define ripemd160_finish mbedtls_ripemd160_finish
JMF 12:0071cb144c7a 2267 #define ripemd160_free mbedtls_ripemd160_free
JMF 12:0071cb144c7a 2268 #define ripemd160_hmac mbedtls_ripemd160_hmac
JMF 12:0071cb144c7a 2269 #define ripemd160_hmac_finish mbedtls_ripemd160_hmac_finish
JMF 12:0071cb144c7a 2270 #define ripemd160_hmac_reset mbedtls_ripemd160_hmac_reset
JMF 12:0071cb144c7a 2271 #define ripemd160_hmac_starts mbedtls_ripemd160_hmac_starts
JMF 12:0071cb144c7a 2272 #define ripemd160_hmac_update mbedtls_ripemd160_hmac_update
JMF 12:0071cb144c7a 2273 #define ripemd160_info mbedtls_ripemd160_info
JMF 12:0071cb144c7a 2274 #define ripemd160_init mbedtls_ripemd160_init
JMF 12:0071cb144c7a 2275 #define ripemd160_process mbedtls_ripemd160_process
JMF 12:0071cb144c7a 2276 #define ripemd160_self_test mbedtls_ripemd160_self_test
JMF 12:0071cb144c7a 2277 #define ripemd160_starts mbedtls_ripemd160_starts
JMF 12:0071cb144c7a 2278 #define ripemd160_update mbedtls_ripemd160_update
JMF 12:0071cb144c7a 2279 #define rsa_alt_context mbedtls_rsa_alt_context
JMF 12:0071cb144c7a 2280 #define rsa_alt_info mbedtls_rsa_alt_info
JMF 12:0071cb144c7a 2281 #define rsa_check_privkey mbedtls_rsa_check_privkey
JMF 12:0071cb144c7a 2282 #define rsa_check_pub_priv mbedtls_rsa_check_pub_priv
JMF 12:0071cb144c7a 2283 #define rsa_check_pubkey mbedtls_rsa_check_pubkey
JMF 12:0071cb144c7a 2284 #define rsa_context mbedtls_rsa_context
JMF 12:0071cb144c7a 2285 #define rsa_copy mbedtls_rsa_copy
JMF 12:0071cb144c7a 2286 #define rsa_decrypt_func mbedtls_rsa_decrypt_func
JMF 12:0071cb144c7a 2287 #define rsa_free mbedtls_rsa_free
JMF 12:0071cb144c7a 2288 #define rsa_gen_key mbedtls_rsa_gen_key
JMF 12:0071cb144c7a 2289 #define rsa_info mbedtls_rsa_info
JMF 12:0071cb144c7a 2290 #define rsa_init mbedtls_rsa_init
JMF 12:0071cb144c7a 2291 #define rsa_key_len_func mbedtls_rsa_key_len_func
JMF 12:0071cb144c7a 2292 #define rsa_pkcs1_decrypt mbedtls_rsa_pkcs1_decrypt
JMF 12:0071cb144c7a 2293 #define rsa_pkcs1_encrypt mbedtls_rsa_pkcs1_encrypt
JMF 12:0071cb144c7a 2294 #define rsa_pkcs1_sign mbedtls_rsa_pkcs1_sign
JMF 12:0071cb144c7a 2295 #define rsa_pkcs1_verify mbedtls_rsa_pkcs1_verify
JMF 12:0071cb144c7a 2296 #define rsa_private mbedtls_rsa_private
JMF 12:0071cb144c7a 2297 #define rsa_public mbedtls_rsa_public
JMF 12:0071cb144c7a 2298 #define rsa_rsaes_oaep_decrypt mbedtls_rsa_rsaes_oaep_decrypt
JMF 12:0071cb144c7a 2299 #define rsa_rsaes_oaep_encrypt mbedtls_rsa_rsaes_oaep_encrypt
JMF 12:0071cb144c7a 2300 #define rsa_rsaes_pkcs1_v15_decrypt mbedtls_rsa_rsaes_pkcs1_v15_decrypt
JMF 12:0071cb144c7a 2301 #define rsa_rsaes_pkcs1_v15_encrypt mbedtls_rsa_rsaes_pkcs1_v15_encrypt
JMF 12:0071cb144c7a 2302 #define rsa_rsassa_pkcs1_v15_sign mbedtls_rsa_rsassa_pkcs1_v15_sign
JMF 12:0071cb144c7a 2303 #define rsa_rsassa_pkcs1_v15_verify mbedtls_rsa_rsassa_pkcs1_v15_verify
JMF 12:0071cb144c7a 2304 #define rsa_rsassa_pss_sign mbedtls_rsa_rsassa_pss_sign
JMF 12:0071cb144c7a 2305 #define rsa_rsassa_pss_verify mbedtls_rsa_rsassa_pss_verify
JMF 12:0071cb144c7a 2306 #define rsa_rsassa_pss_verify_ext mbedtls_rsa_rsassa_pss_verify_ext
JMF 12:0071cb144c7a 2307 #define rsa_self_test mbedtls_rsa_self_test
JMF 12:0071cb144c7a 2308 #define rsa_set_padding mbedtls_rsa_set_padding
JMF 12:0071cb144c7a 2309 #define rsa_sign_func mbedtls_rsa_sign_func
JMF 12:0071cb144c7a 2310 #define safer_memcmp mbedtls_ssl_safer_memcmp
JMF 12:0071cb144c7a 2311 #define set_alarm mbedtls_set_alarm
JMF 12:0071cb144c7a 2312 #define sha1 mbedtls_sha1
JMF 12:0071cb144c7a 2313 #define sha1_context mbedtls_sha1_context
JMF 12:0071cb144c7a 2314 #define sha1_file mbedtls_sha1_file
JMF 12:0071cb144c7a 2315 #define sha1_finish mbedtls_sha1_finish
JMF 12:0071cb144c7a 2316 #define sha1_free mbedtls_sha1_free
JMF 12:0071cb144c7a 2317 #define sha1_hmac mbedtls_sha1_hmac
JMF 12:0071cb144c7a 2318 #define sha1_hmac_finish mbedtls_sha1_hmac_finish
JMF 12:0071cb144c7a 2319 #define sha1_hmac_reset mbedtls_sha1_hmac_reset
JMF 12:0071cb144c7a 2320 #define sha1_hmac_starts mbedtls_sha1_hmac_starts
JMF 12:0071cb144c7a 2321 #define sha1_hmac_update mbedtls_sha1_hmac_update
JMF 12:0071cb144c7a 2322 #define sha1_info mbedtls_sha1_info
JMF 12:0071cb144c7a 2323 #define sha1_init mbedtls_sha1_init
JMF 12:0071cb144c7a 2324 #define sha1_process mbedtls_sha1_process
JMF 12:0071cb144c7a 2325 #define sha1_self_test mbedtls_sha1_self_test
JMF 12:0071cb144c7a 2326 #define sha1_starts mbedtls_sha1_starts
JMF 12:0071cb144c7a 2327 #define sha1_update mbedtls_sha1_update
JMF 12:0071cb144c7a 2328 #define sha224_info mbedtls_sha224_info
JMF 12:0071cb144c7a 2329 #define sha256 mbedtls_sha256
JMF 12:0071cb144c7a 2330 #define sha256_context mbedtls_sha256_context
JMF 12:0071cb144c7a 2331 #define sha256_file mbedtls_sha256_file
JMF 12:0071cb144c7a 2332 #define sha256_finish mbedtls_sha256_finish
JMF 12:0071cb144c7a 2333 #define sha256_free mbedtls_sha256_free
JMF 12:0071cb144c7a 2334 #define sha256_hmac mbedtls_sha256_hmac
JMF 12:0071cb144c7a 2335 #define sha256_hmac_finish mbedtls_sha256_hmac_finish
JMF 12:0071cb144c7a 2336 #define sha256_hmac_reset mbedtls_sha256_hmac_reset
JMF 12:0071cb144c7a 2337 #define sha256_hmac_starts mbedtls_sha256_hmac_starts
JMF 12:0071cb144c7a 2338 #define sha256_hmac_update mbedtls_sha256_hmac_update
JMF 12:0071cb144c7a 2339 #define sha256_info mbedtls_sha256_info
JMF 12:0071cb144c7a 2340 #define sha256_init mbedtls_sha256_init
JMF 12:0071cb144c7a 2341 #define sha256_process mbedtls_sha256_process
JMF 12:0071cb144c7a 2342 #define sha256_self_test mbedtls_sha256_self_test
JMF 12:0071cb144c7a 2343 #define sha256_starts mbedtls_sha256_starts
JMF 12:0071cb144c7a 2344 #define sha256_update mbedtls_sha256_update
JMF 12:0071cb144c7a 2345 #define sha384_info mbedtls_sha384_info
JMF 12:0071cb144c7a 2346 #define sha512 mbedtls_sha512
JMF 12:0071cb144c7a 2347 #define sha512_context mbedtls_sha512_context
JMF 12:0071cb144c7a 2348 #define sha512_file mbedtls_sha512_file
JMF 12:0071cb144c7a 2349 #define sha512_finish mbedtls_sha512_finish
JMF 12:0071cb144c7a 2350 #define sha512_free mbedtls_sha512_free
JMF 12:0071cb144c7a 2351 #define sha512_hmac mbedtls_sha512_hmac
JMF 12:0071cb144c7a 2352 #define sha512_hmac_finish mbedtls_sha512_hmac_finish
JMF 12:0071cb144c7a 2353 #define sha512_hmac_reset mbedtls_sha512_hmac_reset
JMF 12:0071cb144c7a 2354 #define sha512_hmac_starts mbedtls_sha512_hmac_starts
JMF 12:0071cb144c7a 2355 #define sha512_hmac_update mbedtls_sha512_hmac_update
JMF 12:0071cb144c7a 2356 #define sha512_info mbedtls_sha512_info
JMF 12:0071cb144c7a 2357 #define sha512_init mbedtls_sha512_init
JMF 12:0071cb144c7a 2358 #define sha512_process mbedtls_sha512_process
JMF 12:0071cb144c7a 2359 #define sha512_self_test mbedtls_sha512_self_test
JMF 12:0071cb144c7a 2360 #define sha512_starts mbedtls_sha512_starts
JMF 12:0071cb144c7a 2361 #define sha512_update mbedtls_sha512_update
JMF 12:0071cb144c7a 2362 #define source_state mbedtls_entropy_source_state
JMF 12:0071cb144c7a 2363 #define ssl_cache_context mbedtls_ssl_cache_context
JMF 12:0071cb144c7a 2364 #define ssl_cache_entry mbedtls_ssl_cache_entry
JMF 12:0071cb144c7a 2365 #define ssl_cache_free mbedtls_ssl_cache_free
JMF 12:0071cb144c7a 2366 #define ssl_cache_get mbedtls_ssl_cache_get
JMF 12:0071cb144c7a 2367 #define ssl_cache_init mbedtls_ssl_cache_init
JMF 12:0071cb144c7a 2368 #define ssl_cache_set mbedtls_ssl_cache_set
JMF 12:0071cb144c7a 2369 #define ssl_cache_set_max_entries mbedtls_ssl_cache_set_max_entries
JMF 12:0071cb144c7a 2370 #define ssl_cache_set_timeout mbedtls_ssl_cache_set_timeout
JMF 12:0071cb144c7a 2371 #define ssl_check_cert_usage mbedtls_ssl_check_cert_usage
JMF 12:0071cb144c7a 2372 #define ssl_ciphersuite_from_id mbedtls_ssl_ciphersuite_from_id
JMF 12:0071cb144c7a 2373 #define ssl_ciphersuite_from_string mbedtls_ssl_ciphersuite_from_string
JMF 12:0071cb144c7a 2374 #define ssl_ciphersuite_t mbedtls_ssl_ciphersuite_t
JMF 12:0071cb144c7a 2375 #define ssl_ciphersuite_uses_ec mbedtls_ssl_ciphersuite_uses_ec
JMF 12:0071cb144c7a 2376 #define ssl_ciphersuite_uses_psk mbedtls_ssl_ciphersuite_uses_psk
JMF 12:0071cb144c7a 2377 #define ssl_close_notify mbedtls_ssl_close_notify
JMF 12:0071cb144c7a 2378 #define ssl_context mbedtls_ssl_context
JMF 12:0071cb144c7a 2379 #define ssl_cookie_check mbedtls_ssl_cookie_check
JMF 12:0071cb144c7a 2380 #define ssl_cookie_check_t mbedtls_ssl_cookie_check_t
JMF 12:0071cb144c7a 2381 #define ssl_cookie_ctx mbedtls_ssl_cookie_ctx
JMF 12:0071cb144c7a 2382 #define ssl_cookie_free mbedtls_ssl_cookie_free
JMF 12:0071cb144c7a 2383 #define ssl_cookie_init mbedtls_ssl_cookie_init
JMF 12:0071cb144c7a 2384 #define ssl_cookie_set_timeout mbedtls_ssl_cookie_set_timeout
JMF 12:0071cb144c7a 2385 #define ssl_cookie_setup mbedtls_ssl_cookie_setup
JMF 12:0071cb144c7a 2386 #define ssl_cookie_write mbedtls_ssl_cookie_write
JMF 12:0071cb144c7a 2387 #define ssl_cookie_write_t mbedtls_ssl_cookie_write_t
JMF 12:0071cb144c7a 2388 #define ssl_curve_is_acceptable mbedtls_ssl_curve_is_acceptable
JMF 12:0071cb144c7a 2389 #define ssl_derive_keys mbedtls_ssl_derive_keys
JMF 12:0071cb144c7a 2390 #define ssl_dtls_replay_check mbedtls_ssl_dtls_replay_check
JMF 12:0071cb144c7a 2391 #define ssl_dtls_replay_update mbedtls_ssl_dtls_replay_update
JMF 12:0071cb144c7a 2392 #define ssl_fetch_input mbedtls_ssl_fetch_input
JMF 12:0071cb144c7a 2393 #define ssl_flight_item mbedtls_ssl_flight_item
JMF 12:0071cb144c7a 2394 #define ssl_flush_output mbedtls_ssl_flush_output
JMF 12:0071cb144c7a 2395 #define ssl_free mbedtls_ssl_free
JMF 12:0071cb144c7a 2396 #define ssl_get_alpn_protocol mbedtls_ssl_get_alpn_protocol
JMF 12:0071cb144c7a 2397 #define ssl_get_bytes_avail mbedtls_ssl_get_bytes_avail
JMF 12:0071cb144c7a 2398 #define ssl_get_ciphersuite mbedtls_ssl_get_ciphersuite
JMF 12:0071cb144c7a 2399 #define ssl_get_ciphersuite_id mbedtls_ssl_get_ciphersuite_id
JMF 12:0071cb144c7a 2400 #define ssl_get_ciphersuite_name mbedtls_ssl_get_ciphersuite_name
JMF 12:0071cb144c7a 2401 #define ssl_get_ciphersuite_sig_pk_alg mbedtls_ssl_get_ciphersuite_sig_pk_alg
JMF 12:0071cb144c7a 2402 #define ssl_get_peer_cert mbedtls_ssl_get_peer_cert
JMF 12:0071cb144c7a 2403 #define ssl_get_record_expansion mbedtls_ssl_get_record_expansion
JMF 12:0071cb144c7a 2404 #define ssl_get_session mbedtls_ssl_get_session
JMF 12:0071cb144c7a 2405 #define ssl_get_verify_result mbedtls_ssl_get_verify_result
JMF 12:0071cb144c7a 2406 #define ssl_get_version mbedtls_ssl_get_version
JMF 12:0071cb144c7a 2407 #define ssl_handshake mbedtls_ssl_handshake
JMF 12:0071cb144c7a 2408 #define ssl_handshake_client_step mbedtls_ssl_handshake_client_step
JMF 12:0071cb144c7a 2409 #define ssl_handshake_free mbedtls_ssl_handshake_free
JMF 12:0071cb144c7a 2410 #define ssl_handshake_params mbedtls_ssl_handshake_params
JMF 12:0071cb144c7a 2411 #define ssl_handshake_server_step mbedtls_ssl_handshake_server_step
JMF 12:0071cb144c7a 2412 #define ssl_handshake_step mbedtls_ssl_handshake_step
JMF 12:0071cb144c7a 2413 #define ssl_handshake_wrapup mbedtls_ssl_handshake_wrapup
JMF 12:0071cb144c7a 2414 #define ssl_hdr_len mbedtls_ssl_hdr_len
JMF 12:0071cb144c7a 2415 #define ssl_hs_hdr_len mbedtls_ssl_hs_hdr_len
JMF 12:0071cb144c7a 2416 #define ssl_hw_record_activate mbedtls_ssl_hw_record_activate
JMF 12:0071cb144c7a 2417 #define ssl_hw_record_finish mbedtls_ssl_hw_record_finish
JMF 12:0071cb144c7a 2418 #define ssl_hw_record_init mbedtls_ssl_hw_record_init
JMF 12:0071cb144c7a 2419 #define ssl_hw_record_read mbedtls_ssl_hw_record_read
JMF 12:0071cb144c7a 2420 #define ssl_hw_record_reset mbedtls_ssl_hw_record_reset
JMF 12:0071cb144c7a 2421 #define ssl_hw_record_write mbedtls_ssl_hw_record_write
JMF 12:0071cb144c7a 2422 #define ssl_init mbedtls_ssl_init
JMF 12:0071cb144c7a 2423 #define ssl_key_cert mbedtls_ssl_key_cert
JMF 12:0071cb144c7a 2424 #define ssl_legacy_renegotiation mbedtls_ssl_conf_legacy_renegotiation
JMF 12:0071cb144c7a 2425 #define ssl_list_ciphersuites mbedtls_ssl_list_ciphersuites
JMF 12:0071cb144c7a 2426 #define ssl_md_alg_from_hash mbedtls_ssl_md_alg_from_hash
JMF 12:0071cb144c7a 2427 #define ssl_optimize_checksum mbedtls_ssl_optimize_checksum
JMF 12:0071cb144c7a 2428 #define ssl_own_cert mbedtls_ssl_own_cert
JMF 12:0071cb144c7a 2429 #define ssl_own_key mbedtls_ssl_own_key
JMF 12:0071cb144c7a 2430 #define ssl_parse_certificate mbedtls_ssl_parse_certificate
JMF 12:0071cb144c7a 2431 #define ssl_parse_change_cipher_spec mbedtls_ssl_parse_change_cipher_spec
JMF 12:0071cb144c7a 2432 #define ssl_parse_finished mbedtls_ssl_parse_finished
JMF 12:0071cb144c7a 2433 #define ssl_pk_alg_from_sig mbedtls_ssl_pk_alg_from_sig
JMF 12:0071cb144c7a 2434 #define ssl_pkcs11_decrypt mbedtls_ssl_pkcs11_decrypt
JMF 12:0071cb144c7a 2435 #define ssl_pkcs11_key_len mbedtls_ssl_pkcs11_key_len
JMF 12:0071cb144c7a 2436 #define ssl_pkcs11_sign mbedtls_ssl_pkcs11_sign
JMF 12:0071cb144c7a 2437 #define ssl_psk_derive_premaster mbedtls_ssl_psk_derive_premaster
JMF 12:0071cb144c7a 2438 #define ssl_read mbedtls_ssl_read
JMF 12:0071cb144c7a 2439 #define ssl_read_record mbedtls_ssl_read_record
JMF 12:0071cb144c7a 2440 #define ssl_read_version mbedtls_ssl_read_version
JMF 12:0071cb144c7a 2441 #define ssl_recv_flight_completed mbedtls_ssl_recv_flight_completed
JMF 12:0071cb144c7a 2442 #define ssl_renegotiate mbedtls_ssl_renegotiate
JMF 12:0071cb144c7a 2443 #define ssl_resend mbedtls_ssl_resend
JMF 12:0071cb144c7a 2444 #define ssl_reset_checksum mbedtls_ssl_reset_checksum
JMF 12:0071cb144c7a 2445 #define ssl_send_alert_message mbedtls_ssl_send_alert_message
JMF 12:0071cb144c7a 2446 #define ssl_send_fatal_handshake_failure mbedtls_ssl_send_fatal_handshake_failure
JMF 12:0071cb144c7a 2447 #define ssl_send_flight_completed mbedtls_ssl_send_flight_completed
JMF 12:0071cb144c7a 2448 #define ssl_session mbedtls_ssl_session
JMF 12:0071cb144c7a 2449 #define ssl_session_free mbedtls_ssl_session_free
JMF 12:0071cb144c7a 2450 #define ssl_session_init mbedtls_ssl_session_init
JMF 12:0071cb144c7a 2451 #define ssl_session_reset mbedtls_ssl_session_reset
JMF 12:0071cb144c7a 2452 #define ssl_set_alpn_protocols mbedtls_ssl_conf_alpn_protocols
JMF 12:0071cb144c7a 2453 #define ssl_set_arc4_support mbedtls_ssl_conf_arc4_support
JMF 12:0071cb144c7a 2454 #define ssl_set_authmode mbedtls_ssl_conf_authmode
JMF 12:0071cb144c7a 2455 #define ssl_set_bio mbedtls_ssl_set_bio
JMF 12:0071cb144c7a 2456 #define ssl_set_bio mbedtls_ssl_set_bio_timeout
JMF 12:0071cb144c7a 2457 #define ssl_set_ca_chain mbedtls_ssl_conf_ca_chain
JMF 12:0071cb144c7a 2458 #define ssl_set_cbc_record_splitting mbedtls_ssl_conf_cbc_record_splitting
JMF 12:0071cb144c7a 2459 #define ssl_set_ciphersuites mbedtls_ssl_conf_ciphersuites
JMF 12:0071cb144c7a 2460 #define ssl_set_ciphersuites_for_version mbedtls_ssl_conf_ciphersuites_for_version
JMF 12:0071cb144c7a 2461 #define ssl_set_client_transport_id mbedtls_ssl_set_client_transport_id
JMF 12:0071cb144c7a 2462 #define ssl_set_curves mbedtls_ssl_conf_curves
JMF 12:0071cb144c7a 2463 #define ssl_set_dbg mbedtls_ssl_conf_dbg
JMF 12:0071cb144c7a 2464 #define ssl_set_dh_param mbedtls_ssl_conf_dh_param
JMF 12:0071cb144c7a 2465 #define ssl_set_dh_param_ctx mbedtls_ssl_conf_dh_param_ctx
JMF 12:0071cb144c7a 2466 #define ssl_set_dtls_anti_replay mbedtls_ssl_conf_dtls_anti_replay
JMF 12:0071cb144c7a 2467 #define ssl_set_dtls_badmac_limit mbedtls_ssl_conf_dtls_badmac_limit
JMF 12:0071cb144c7a 2468 #define ssl_set_dtls_cookies mbedtls_ssl_conf_dtls_cookies
JMF 12:0071cb144c7a 2469 #define ssl_set_encrypt_then_mac mbedtls_ssl_conf_encrypt_then_mac
JMF 12:0071cb144c7a 2470 #define ssl_set_endpoint mbedtls_ssl_conf_endpoint
JMF 12:0071cb144c7a 2471 #define ssl_set_extended_master_secret mbedtls_ssl_conf_extended_master_secret
JMF 12:0071cb144c7a 2472 #define ssl_set_fallback mbedtls_ssl_conf_fallback
JMF 12:0071cb144c7a 2473 #define ssl_set_handshake_timeout mbedtls_ssl_conf_handshake_timeout
JMF 12:0071cb144c7a 2474 #define ssl_set_hostname mbedtls_ssl_set_hostname
JMF 12:0071cb144c7a 2475 #define ssl_set_max_frag_len mbedtls_ssl_conf_max_frag_len
JMF 12:0071cb144c7a 2476 #define ssl_set_max_version mbedtls_ssl_conf_max_version
JMF 12:0071cb144c7a 2477 #define ssl_set_min_version mbedtls_ssl_conf_min_version
JMF 12:0071cb144c7a 2478 #define ssl_set_own_cert mbedtls_ssl_conf_own_cert
JMF 12:0071cb144c7a 2479 #define ssl_set_own_cert_alt mbedtls_ssl_set_own_cert_alt
JMF 12:0071cb144c7a 2480 #define ssl_set_own_cert_rsa mbedtls_ssl_set_own_cert_rsa
JMF 12:0071cb144c7a 2481 #define ssl_set_psk mbedtls_ssl_conf_psk
JMF 12:0071cb144c7a 2482 #define ssl_set_psk_cb mbedtls_ssl_conf_psk_cb
JMF 12:0071cb144c7a 2483 #define ssl_set_renegotiation mbedtls_ssl_conf_renegotiation
JMF 12:0071cb144c7a 2484 #define ssl_set_renegotiation_enforced mbedtls_ssl_conf_renegotiation_enforced
JMF 12:0071cb144c7a 2485 #define ssl_set_renegotiation_period mbedtls_ssl_conf_renegotiation_period
JMF 12:0071cb144c7a 2486 #define ssl_set_rng mbedtls_ssl_conf_rng
JMF 12:0071cb144c7a 2487 #define ssl_set_session mbedtls_ssl_set_session
JMF 12:0071cb144c7a 2488 #define ssl_set_session_cache mbedtls_ssl_conf_session_cache
JMF 12:0071cb144c7a 2489 #define ssl_set_session_ticket_lifetime mbedtls_ssl_conf_session_ticket_lifetime
JMF 12:0071cb144c7a 2490 #define ssl_set_session_tickets mbedtls_ssl_conf_session_tickets
JMF 12:0071cb144c7a 2491 #define ssl_set_sni mbedtls_ssl_conf_sni
JMF 12:0071cb144c7a 2492 #define ssl_set_transport mbedtls_ssl_conf_transport
JMF 12:0071cb144c7a 2493 #define ssl_set_truncated_hmac mbedtls_ssl_conf_truncated_hmac
JMF 12:0071cb144c7a 2494 #define ssl_set_verify mbedtls_ssl_conf_verify
JMF 12:0071cb144c7a 2495 #define ssl_sig_from_pk mbedtls_ssl_sig_from_pk
JMF 12:0071cb144c7a 2496 #define ssl_states mbedtls_ssl_states
JMF 12:0071cb144c7a 2497 #define ssl_ticket_keys mbedtls_ssl_ticket_keys
JMF 12:0071cb144c7a 2498 #define ssl_transform mbedtls_ssl_transform
JMF 12:0071cb144c7a 2499 #define ssl_transform_free mbedtls_ssl_transform_free
JMF 12:0071cb144c7a 2500 #define ssl_write mbedtls_ssl_write
JMF 12:0071cb144c7a 2501 #define ssl_write_certificate mbedtls_ssl_write_certificate
JMF 12:0071cb144c7a 2502 #define ssl_write_change_cipher_spec mbedtls_ssl_write_change_cipher_spec
JMF 12:0071cb144c7a 2503 #define ssl_write_finished mbedtls_ssl_write_finished
JMF 12:0071cb144c7a 2504 #define ssl_write_record mbedtls_ssl_write_record
JMF 12:0071cb144c7a 2505 #define ssl_write_version mbedtls_ssl_write_version
JMF 12:0071cb144c7a 2506 #define supported_ciphers mbedtls_cipher_supported
JMF 12:0071cb144c7a 2507 #define t_sint mbedtls_mpi_sint
JMF 12:0071cb144c7a 2508 #define t_udbl mbedtls_t_udbl
JMF 12:0071cb144c7a 2509 #define t_uint mbedtls_mpi_uint
JMF 12:0071cb144c7a 2510 #define test_ca_crt mbedtls_test_ca_crt
JMF 12:0071cb144c7a 2511 #define test_ca_crt_ec mbedtls_test_ca_crt_ec
JMF 12:0071cb144c7a 2512 #define test_ca_crt_rsa mbedtls_test_ca_crt_rsa
JMF 12:0071cb144c7a 2513 #define test_ca_key mbedtls_test_ca_key
JMF 12:0071cb144c7a 2514 #define test_ca_key_ec mbedtls_test_ca_key_ec
JMF 12:0071cb144c7a 2515 #define test_ca_key_rsa mbedtls_test_ca_key_rsa
JMF 12:0071cb144c7a 2516 #define test_ca_list mbedtls_test_cas_pem
JMF 12:0071cb144c7a 2517 #define test_ca_pwd mbedtls_test_ca_pwd
JMF 12:0071cb144c7a 2518 #define test_ca_pwd_ec mbedtls_test_ca_pwd_ec
JMF 12:0071cb144c7a 2519 #define test_ca_pwd_rsa mbedtls_test_ca_pwd_rsa
JMF 12:0071cb144c7a 2520 #define test_cli_crt mbedtls_test_cli_crt
JMF 12:0071cb144c7a 2521 #define test_cli_crt_ec mbedtls_test_cli_crt_ec
JMF 12:0071cb144c7a 2522 #define test_cli_crt_rsa mbedtls_test_cli_crt_rsa
JMF 12:0071cb144c7a 2523 #define test_cli_key mbedtls_test_cli_key
JMF 12:0071cb144c7a 2524 #define test_cli_key_ec mbedtls_test_cli_key_ec
JMF 12:0071cb144c7a 2525 #define test_cli_key_rsa mbedtls_test_cli_key_rsa
JMF 12:0071cb144c7a 2526 #define test_dhm_params mbedtls_test_dhm_params
JMF 12:0071cb144c7a 2527 #define test_srv_crt mbedtls_test_srv_crt
JMF 12:0071cb144c7a 2528 #define test_srv_crt_ec mbedtls_test_srv_crt_ec
JMF 12:0071cb144c7a 2529 #define test_srv_crt_rsa mbedtls_test_srv_crt_rsa
JMF 12:0071cb144c7a 2530 #define test_srv_key mbedtls_test_srv_key
JMF 12:0071cb144c7a 2531 #define test_srv_key_ec mbedtls_test_srv_key_ec
JMF 12:0071cb144c7a 2532 #define test_srv_key_rsa mbedtls_test_srv_key_rsa
JMF 12:0071cb144c7a 2533 #define threading_mutex_t mbedtls_threading_mutex_t
JMF 12:0071cb144c7a 2534 #define threading_set_alt mbedtls_threading_set_alt
JMF 12:0071cb144c7a 2535 #define timing_self_test mbedtls_timing_self_test
JMF 12:0071cb144c7a 2536 #define version_check_feature mbedtls_version_check_feature
JMF 12:0071cb144c7a 2537 #define version_get_number mbedtls_version_get_number
JMF 12:0071cb144c7a 2538 #define version_get_string mbedtls_version_get_string
JMF 12:0071cb144c7a 2539 #define version_get_string_full mbedtls_version_get_string_full
JMF 12:0071cb144c7a 2540 #define x509_bitstring mbedtls_x509_bitstring
JMF 12:0071cb144c7a 2541 #define x509_buf mbedtls_x509_buf
JMF 12:0071cb144c7a 2542 #define x509_crl mbedtls_x509_crl
JMF 12:0071cb144c7a 2543 #define x509_crl_entry mbedtls_x509_crl_entry
JMF 12:0071cb144c7a 2544 #define x509_crl_free mbedtls_x509_crl_free
JMF 12:0071cb144c7a 2545 #define x509_crl_info mbedtls_x509_crl_info
JMF 12:0071cb144c7a 2546 #define x509_crl_init mbedtls_x509_crl_init
JMF 12:0071cb144c7a 2547 #define x509_crl_parse mbedtls_x509_crl_parse
JMF 12:0071cb144c7a 2548 #define x509_crl_parse_der mbedtls_x509_crl_parse_der
JMF 12:0071cb144c7a 2549 #define x509_crl_parse_file mbedtls_x509_crl_parse_file
JMF 12:0071cb144c7a 2550 #define x509_crt mbedtls_x509_crt
JMF 12:0071cb144c7a 2551 #define x509_crt_check_extended_key_usage mbedtls_x509_crt_check_extended_key_usage
JMF 12:0071cb144c7a 2552 #define x509_crt_check_key_usage mbedtls_x509_crt_check_key_usage
JMF 12:0071cb144c7a 2553 #define x509_crt_free mbedtls_x509_crt_free
JMF 12:0071cb144c7a 2554 #define x509_crt_info mbedtls_x509_crt_info
JMF 12:0071cb144c7a 2555 #define x509_crt_init mbedtls_x509_crt_init
JMF 12:0071cb144c7a 2556 #define x509_crt_parse mbedtls_x509_crt_parse
JMF 12:0071cb144c7a 2557 #define x509_crt_parse_der mbedtls_x509_crt_parse_der
JMF 12:0071cb144c7a 2558 #define x509_crt_parse_file mbedtls_x509_crt_parse_file
JMF 12:0071cb144c7a 2559 #define x509_crt_parse_path mbedtls_x509_crt_parse_path
JMF 12:0071cb144c7a 2560 #define x509_crt_revoked mbedtls_x509_crt_is_revoked
JMF 12:0071cb144c7a 2561 #define x509_crt_verify mbedtls_x509_crt_verify
JMF 12:0071cb144c7a 2562 #define x509_csr mbedtls_x509_csr
JMF 12:0071cb144c7a 2563 #define x509_csr_free mbedtls_x509_csr_free
JMF 12:0071cb144c7a 2564 #define x509_csr_info mbedtls_x509_csr_info
JMF 12:0071cb144c7a 2565 #define x509_csr_init mbedtls_x509_csr_init
JMF 12:0071cb144c7a 2566 #define x509_csr_parse mbedtls_x509_csr_parse
JMF 12:0071cb144c7a 2567 #define x509_csr_parse_der mbedtls_x509_csr_parse_der
JMF 12:0071cb144c7a 2568 #define x509_csr_parse_file mbedtls_x509_csr_parse_file
JMF 12:0071cb144c7a 2569 #define x509_dn_gets mbedtls_x509_dn_gets
JMF 12:0071cb144c7a 2570 #define x509_get_alg mbedtls_x509_get_alg
JMF 12:0071cb144c7a 2571 #define x509_get_alg_null mbedtls_x509_get_alg_null
JMF 12:0071cb144c7a 2572 #define x509_get_ext mbedtls_x509_get_ext
JMF 12:0071cb144c7a 2573 #define x509_get_name mbedtls_x509_get_name
JMF 12:0071cb144c7a 2574 #define x509_get_rsassa_pss_params mbedtls_x509_get_rsassa_pss_params
JMF 12:0071cb144c7a 2575 #define x509_get_serial mbedtls_x509_get_serial
JMF 12:0071cb144c7a 2576 #define x509_get_sig mbedtls_x509_get_sig
JMF 12:0071cb144c7a 2577 #define x509_get_sig_alg mbedtls_x509_get_sig_alg
JMF 12:0071cb144c7a 2578 #define x509_get_time mbedtls_x509_get_time
JMF 12:0071cb144c7a 2579 #define x509_key_size_helper mbedtls_x509_key_size_helper
JMF 12:0071cb144c7a 2580 #define x509_name mbedtls_x509_name
JMF 12:0071cb144c7a 2581 #define x509_oid_get_description mbedtls_x509_oid_get_description
JMF 12:0071cb144c7a 2582 #define x509_oid_get_numeric_string mbedtls_x509_oid_get_numeric_string
JMF 12:0071cb144c7a 2583 #define x509_self_test mbedtls_x509_self_test
JMF 12:0071cb144c7a 2584 #define x509_sequence mbedtls_x509_sequence
JMF 12:0071cb144c7a 2585 #define x509_serial_gets mbedtls_x509_serial_gets
JMF 12:0071cb144c7a 2586 #define x509_set_extension mbedtls_x509_set_extension
JMF 12:0071cb144c7a 2587 #define x509_sig_alg_gets mbedtls_x509_sig_alg_gets
JMF 12:0071cb144c7a 2588 #define x509_string_to_names mbedtls_x509_string_to_names
JMF 12:0071cb144c7a 2589 #define x509_time mbedtls_x509_time
JMF 12:0071cb144c7a 2590 #define x509_time_expired mbedtls_x509_time_is_past
JMF 12:0071cb144c7a 2591 #define x509_time_future mbedtls_x509_time_is_future
JMF 12:0071cb144c7a 2592 #define x509_write_extensions mbedtls_x509_write_extensions
JMF 12:0071cb144c7a 2593 #define x509_write_names mbedtls_x509_write_names
JMF 12:0071cb144c7a 2594 #define x509_write_sig mbedtls_x509_write_sig
JMF 12:0071cb144c7a 2595 #define x509write_cert mbedtls_x509write_cert
JMF 12:0071cb144c7a 2596 #define x509write_crt_der mbedtls_x509write_crt_der
JMF 12:0071cb144c7a 2597 #define x509write_crt_free mbedtls_x509write_crt_free
JMF 12:0071cb144c7a 2598 #define x509write_crt_init mbedtls_x509write_crt_init
JMF 12:0071cb144c7a 2599 #define x509write_crt_pem mbedtls_x509write_crt_pem
JMF 12:0071cb144c7a 2600 #define x509write_crt_set_authority_key_identifier mbedtls_x509write_crt_set_authority_key_identifier
JMF 12:0071cb144c7a 2601 #define x509write_crt_set_basic_constraints mbedtls_x509write_crt_set_basic_constraints
JMF 12:0071cb144c7a 2602 #define x509write_crt_set_extension mbedtls_x509write_crt_set_extension
JMF 12:0071cb144c7a 2603 #define x509write_crt_set_issuer_key mbedtls_x509write_crt_set_issuer_key
JMF 12:0071cb144c7a 2604 #define x509write_crt_set_issuer_name mbedtls_x509write_crt_set_issuer_name
JMF 12:0071cb144c7a 2605 #define x509write_crt_set_key_usage mbedtls_x509write_crt_set_key_usage
JMF 12:0071cb144c7a 2606 #define x509write_crt_set_md_alg mbedtls_x509write_crt_set_md_alg
JMF 12:0071cb144c7a 2607 #define x509write_crt_set_ns_cert_type mbedtls_x509write_crt_set_ns_cert_type
JMF 12:0071cb144c7a 2608 #define x509write_crt_set_serial mbedtls_x509write_crt_set_serial
JMF 12:0071cb144c7a 2609 #define x509write_crt_set_subject_key mbedtls_x509write_crt_set_subject_key
JMF 12:0071cb144c7a 2610 #define x509write_crt_set_subject_key_identifier mbedtls_x509write_crt_set_subject_key_identifier
JMF 12:0071cb144c7a 2611 #define x509write_crt_set_subject_name mbedtls_x509write_crt_set_subject_name
JMF 12:0071cb144c7a 2612 #define x509write_crt_set_validity mbedtls_x509write_crt_set_validity
JMF 12:0071cb144c7a 2613 #define x509write_crt_set_version mbedtls_x509write_crt_set_version
JMF 12:0071cb144c7a 2614 #define x509write_csr mbedtls_x509write_csr
JMF 12:0071cb144c7a 2615 #define x509write_csr_der mbedtls_x509write_csr_der
JMF 12:0071cb144c7a 2616 #define x509write_csr_free mbedtls_x509write_csr_free
JMF 12:0071cb144c7a 2617 #define x509write_csr_init mbedtls_x509write_csr_init
JMF 12:0071cb144c7a 2618 #define x509write_csr_pem mbedtls_x509write_csr_pem
JMF 12:0071cb144c7a 2619 #define x509write_csr_set_extension mbedtls_x509write_csr_set_extension
JMF 12:0071cb144c7a 2620 #define x509write_csr_set_key mbedtls_x509write_csr_set_key
JMF 12:0071cb144c7a 2621 #define x509write_csr_set_key_usage mbedtls_x509write_csr_set_key_usage
JMF 12:0071cb144c7a 2622 #define x509write_csr_set_md_alg mbedtls_x509write_csr_set_md_alg
JMF 12:0071cb144c7a 2623 #define x509write_csr_set_ns_cert_type mbedtls_x509write_csr_set_ns_cert_type
JMF 12:0071cb144c7a 2624 #define x509write_csr_set_subject_name mbedtls_x509write_csr_set_subject_name
JMF 12:0071cb144c7a 2625 #define xtea_context mbedtls_xtea_context
JMF 12:0071cb144c7a 2626 #define xtea_crypt_cbc mbedtls_xtea_crypt_cbc
JMF 12:0071cb144c7a 2627 #define xtea_crypt_ecb mbedtls_xtea_crypt_ecb
JMF 12:0071cb144c7a 2628 #define xtea_free mbedtls_xtea_free
JMF 12:0071cb144c7a 2629 #define xtea_init mbedtls_xtea_init
JMF 12:0071cb144c7a 2630 #define xtea_self_test mbedtls_xtea_self_test
JMF 12:0071cb144c7a 2631 #define xtea_setup mbedtls_xtea_setup
JMF 12:0071cb144c7a 2632
JMF 12:0071cb144c7a 2633 #endif /* compat-1.3.h */
JMF 12:0071cb144c7a 2634 #endif /* MBEDTLS_DEPRECATED_REMOVED */