mbed TLS library

Dependents:   HTTPClient-SSL WS_SERVER

Committer:
ansond
Date:
Thu Jun 11 03:27:03 2015 +0000
Revision:
0:137634ff4186
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ansond 0:137634ff4186 1 /*
ansond 0:137634ff4186 2 * Reduced configuration used by Picocoin.
ansond 0:137634ff4186 3 *
ansond 0:137634ff4186 4 * See README.txt for usage instructions.
ansond 0:137634ff4186 5 *
ansond 0:137634ff4186 6 * Distinguishing features:
ansond 0:137634ff4186 7 * - no SSL/TLS;
ansond 0:137634ff4186 8 * - no X.509;
ansond 0:137634ff4186 9 * - ECDSA/PK and some other chosen crypto bits.
ansond 0:137634ff4186 10 */
ansond 0:137634ff4186 11
ansond 0:137634ff4186 12 #ifndef POLARSSL_CONFIG_H
ansond 0:137634ff4186 13 #define POLARSSL_CONFIG_H
ansond 0:137634ff4186 14
ansond 0:137634ff4186 15 /* System support */
ansond 0:137634ff4186 16 #define POLARSSL_HAVE_LONGLONG
ansond 0:137634ff4186 17 #define POLARSSL_HAVE_ASM
ansond 0:137634ff4186 18 #define POLARSSL_HAVE_TIME
ansond 0:137634ff4186 19 #define POLARSSL_HAVE_IPV6
ansond 0:137634ff4186 20
ansond 0:137634ff4186 21 /* mbed TLS feature support */
ansond 0:137634ff4186 22 #define POLARSSL_CIPHER_MODE_CBC
ansond 0:137634ff4186 23 #define POLARSSL_CIPHER_PADDING_PKCS7
ansond 0:137634ff4186 24 #define POLARSSL_ECP_DP_SECP256K1_ENABLED
ansond 0:137634ff4186 25 #define POLARSSL_ECDSA_DETERMINISTIC
ansond 0:137634ff4186 26 #define POLARSSL_PK_PARSE_EC_EXTENDED
ansond 0:137634ff4186 27 #define POLARSSL_ERROR_STRERROR_DUMMY
ansond 0:137634ff4186 28 #define POLARSSL_FS_IO
ansond 0:137634ff4186 29
ansond 0:137634ff4186 30 /* mbed TLS modules */
ansond 0:137634ff4186 31 #define POLARSSL_AESNI_C
ansond 0:137634ff4186 32 #define POLARSSL_AES_C
ansond 0:137634ff4186 33 #define POLARSSL_ASN1_PARSE_C
ansond 0:137634ff4186 34 #define POLARSSL_ASN1_WRITE_C
ansond 0:137634ff4186 35 #define POLARSSL_BASE64_C
ansond 0:137634ff4186 36 #define POLARSSL_BIGNUM_C
ansond 0:137634ff4186 37 #define POLARSSL_ECDSA_C
ansond 0:137634ff4186 38 #define POLARSSL_ECP_C
ansond 0:137634ff4186 39 #define POLARSSL_ENTROPY_C
ansond 0:137634ff4186 40 #define POLARSSL_HMAC_DRBG_C
ansond 0:137634ff4186 41 #define POLARSSL_MD_C
ansond 0:137634ff4186 42 #define POLARSSL_OID_C
ansond 0:137634ff4186 43 #define POLARSSL_PADLOCK_C
ansond 0:137634ff4186 44 #define POLARSSL_PK_C
ansond 0:137634ff4186 45 #define POLARSSL_PK_PARSE_C
ansond 0:137634ff4186 46 #define POLARSSL_PK_WRITE_C
ansond 0:137634ff4186 47 #define POLARSSL_RIPEMD160_C
ansond 0:137634ff4186 48 #define POLARSSL_SHA1_C
ansond 0:137634ff4186 49 #define POLARSSL_SHA256_C
ansond 0:137634ff4186 50
ansond 0:137634ff4186 51 #include "check_config.h"
ansond 0:137634ff4186 52
ansond 0:137634ff4186 53 #endif /* POLARSSL_CONFIG_H */
ansond 0:137634ff4186 54