Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
BC
public
external
mbedtls
Commits
cef4ad25
Commit
cef4ad25
authored
Apr 29, 2014
by
Manuel Pégourié-Gonnard
Committed by
Paul Bakker
Apr 30, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adapt sources to configurable config.h name
parent
27f1caed
Changes
155
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
155 changed files
with
621 additions
and
1 deletion
+621
-1
include/polarssl/aes.h
include/polarssl/aes.h
+4
-0
include/polarssl/arc4.h
include/polarssl/arc4.h
+4
-0
include/polarssl/asn1.h
include/polarssl/asn1.h
+4
-0
include/polarssl/bignum.h
include/polarssl/bignum.h
+4
-0
include/polarssl/blowfish.h
include/polarssl/blowfish.h
+4
-0
include/polarssl/camellia.h
include/polarssl/camellia.h
+4
-0
include/polarssl/cipher.h
include/polarssl/cipher.h
+4
-0
include/polarssl/cipher_wrap.h
include/polarssl/cipher_wrap.h
+4
-0
include/polarssl/compat-1.2.h
include/polarssl/compat-1.2.h
+4
-0
include/polarssl/debug.h
include/polarssl/debug.h
+4
-0
include/polarssl/des.h
include/polarssl/des.h
+4
-0
include/polarssl/entropy.h
include/polarssl/entropy.h
+4
-0
include/polarssl/entropy_poll.h
include/polarssl/entropy_poll.h
+4
-0
include/polarssl/md2.h
include/polarssl/md2.h
+4
-0
include/polarssl/md4.h
include/polarssl/md4.h
+4
-0
include/polarssl/md5.h
include/polarssl/md5.h
+4
-0
include/polarssl/md_wrap.h
include/polarssl/md_wrap.h
+4
-0
include/polarssl/memory.h
include/polarssl/memory.h
+4
-0
include/polarssl/memory_buffer_alloc.h
include/polarssl/memory_buffer_alloc.h
+4
-0
include/polarssl/oid.h
include/polarssl/oid.h
+4
-0
include/polarssl/pk.h
include/polarssl/pk.h
+4
-0
include/polarssl/pk_wrap.h
include/polarssl/pk_wrap.h
+4
-0
include/polarssl/pkcs11.h
include/polarssl/pkcs11.h
+4
-0
include/polarssl/platform.h
include/polarssl/platform.h
+4
-0
include/polarssl/ripemd160.h
include/polarssl/ripemd160.h
+4
-0
include/polarssl/rsa.h
include/polarssl/rsa.h
+4
-0
include/polarssl/sha1.h
include/polarssl/sha1.h
+4
-0
include/polarssl/sha256.h
include/polarssl/sha256.h
+4
-0
include/polarssl/sha512.h
include/polarssl/sha512.h
+4
-0
include/polarssl/ssl.h
include/polarssl/ssl.h
+4
-0
include/polarssl/threading.h
include/polarssl/threading.h
+4
-0
include/polarssl/timing.h
include/polarssl/timing.h
+4
-0
include/polarssl/version.h
include/polarssl/version.h
+4
-0
include/polarssl/x509.h
include/polarssl/x509.h
+4
-0
include/polarssl/x509_crl.h
include/polarssl/x509_crl.h
+4
-0
include/polarssl/x509_crt.h
include/polarssl/x509_crt.h
+4
-0
include/polarssl/x509_csr.h
include/polarssl/x509_csr.h
+4
-0
include/polarssl/xtea.h
include/polarssl/xtea.h
+4
-0
library/aes.c
library/aes.c
+4
-0
library/aesni.c
library/aesni.c
+4
-0
library/arc4.c
library/arc4.c
+4
-0
library/asn1parse.c
library/asn1parse.c
+4
-0
library/asn1write.c
library/asn1write.c
+4
-0
library/base64.c
library/base64.c
+4
-0
library/bignum.c
library/bignum.c
+4
-0
library/blowfish.c
library/blowfish.c
+4
-0
library/camellia.c
library/camellia.c
+4
-0
library/certs.c
library/certs.c
+4
-0
library/cipher.c
library/cipher.c
+4
-0
library/cipher_wrap.c
library/cipher_wrap.c
+4
-0
library/ctr_drbg.c
library/ctr_drbg.c
+4
-0
library/debug.c
library/debug.c
+4
-0
library/des.c
library/des.c
+4
-0
library/dhm.c
library/dhm.c
+4
-0
library/ecdh.c
library/ecdh.c
+4
-0
library/ecdsa.c
library/ecdsa.c
+4
-0
library/ecp.c
library/ecp.c
+4
-0
library/ecp_curves.c
library/ecp_curves.c
+4
-0
library/entropy.c
library/entropy.c
+4
-0
library/entropy_poll.c
library/entropy_poll.c
+4
-0
library/error.c
library/error.c
+4
-0
library/gcm.c
library/gcm.c
+4
-0
library/havege.c
library/havege.c
+4
-0
library/hmac_drbg.c
library/hmac_drbg.c
+4
-0
library/md.c
library/md.c
+4
-0
library/md2.c
library/md2.c
+4
-0
library/md4.c
library/md4.c
+4
-0
library/md5.c
library/md5.c
+4
-0
library/md_wrap.c
library/md_wrap.c
+4
-0
library/memory_buffer_alloc.c
library/memory_buffer_alloc.c
+4
-0
library/net.c
library/net.c
+4
-0
library/oid.c
library/oid.c
+4
-0
library/padlock.c
library/padlock.c
+4
-0
library/pbkdf2.c
library/pbkdf2.c
+4
-0
library/pem.c
library/pem.c
+4
-0
library/pk.c
library/pk.c
+4
-0
library/pk_wrap.c
library/pk_wrap.c
+4
-0
library/pkcs12.c
library/pkcs12.c
+4
-0
library/pkcs5.c
library/pkcs5.c
+4
-0
library/pkparse.c
library/pkparse.c
+4
-0
library/pkwrite.c
library/pkwrite.c
+4
-0
library/platform.c
library/platform.c
+4
-0
library/ripemd160.c
library/ripemd160.c
+4
-0
library/rsa.c
library/rsa.c
+4
-0
library/sha1.c
library/sha1.c
+4
-0
library/sha256.c
library/sha256.c
+4
-0
library/sha512.c
library/sha512.c
+4
-0
library/ssl_cache.c
library/ssl_cache.c
+4
-0
library/ssl_ciphersuites.c
library/ssl_ciphersuites.c
+4
-0
library/ssl_cli.c
library/ssl_cli.c
+4
-0
library/ssl_srv.c
library/ssl_srv.c
+4
-0
library/ssl_tls.c
library/ssl_tls.c
+4
-0
library/threading.c
library/threading.c
+4
-0
library/timing.c
library/timing.c
+4
-0
library/version.c
library/version.c
+4
-0
library/version_features.c
library/version_features.c
+4
-0
library/x509.c
library/x509.c
+4
-0
library/x509_create.c
library/x509_create.c
+4
-0
library/x509_crl.c
library/x509_crl.c
+4
-0
library/x509_crt.c
library/x509_crt.c
+4
-0
library/x509_csr.c
library/x509_csr.c
+4
-0
library/x509write_crt.c
library/x509write_crt.c
+4
-0
library/x509write_csr.c
library/x509write_csr.c
+4
-0
library/xtea.c
library/xtea.c
+4
-0
programs/aes/aescrypt2.c
programs/aes/aescrypt2.c
+4
-0
programs/aes/crypt_and_hash.c
programs/aes/crypt_and_hash.c
+4
-0
programs/hash/generic_sum.c
programs/hash/generic_sum.c
+4
-0
programs/hash/hello.c
programs/hash/hello.c
+4
-0
programs/hash/md5sum.c
programs/hash/md5sum.c
+4
-0
programs/hash/sha1sum.c
programs/hash/sha1sum.c
+4
-0
programs/hash/sha2sum.c
programs/hash/sha2sum.c
+4
-0
programs/pkey/dh_client.c
programs/pkey/dh_client.c
+4
-0
programs/pkey/dh_genprime.c
programs/pkey/dh_genprime.c
+4
-0
programs/pkey/dh_server.c
programs/pkey/dh_server.c
+4
-0
programs/pkey/ecdsa.c
programs/pkey/ecdsa.c
+4
-0
programs/pkey/gen_key.c
programs/pkey/gen_key.c
+4
-0
programs/pkey/key_app.c
programs/pkey/key_app.c
+4
-0
programs/pkey/key_app_writer.c
programs/pkey/key_app_writer.c
+4
-0
programs/pkey/mpi_demo.c
programs/pkey/mpi_demo.c
+4
-0
programs/pkey/pk_decrypt.c
programs/pkey/pk_decrypt.c
+4
-0
programs/pkey/pk_encrypt.c
programs/pkey/pk_encrypt.c
+4
-0
programs/pkey/pk_sign.c
programs/pkey/pk_sign.c
+4
-0
programs/pkey/pk_verify.c
programs/pkey/pk_verify.c
+4
-0
programs/pkey/rsa_decrypt.c
programs/pkey/rsa_decrypt.c
+4
-0
programs/pkey/rsa_encrypt.c
programs/pkey/rsa_encrypt.c
+4
-0
programs/pkey/rsa_genkey.c
programs/pkey/rsa_genkey.c
+4
-0
programs/pkey/rsa_sign.c
programs/pkey/rsa_sign.c
+4
-0
programs/pkey/rsa_sign_pss.c
programs/pkey/rsa_sign_pss.c
+4
-0
programs/pkey/rsa_verify.c
programs/pkey/rsa_verify.c
+4
-0
programs/pkey/rsa_verify_pss.c
programs/pkey/rsa_verify_pss.c
+4
-0
programs/random/gen_entropy.c
programs/random/gen_entropy.c
+4
-0
programs/random/gen_random_ctr_drbg.c
programs/random/gen_random_ctr_drbg.c
+4
-0
programs/random/gen_random_havege.c
programs/random/gen_random_havege.c
+4
-0
programs/ssl/ssl_client1.c
programs/ssl/ssl_client1.c
+4
-0
programs/ssl/ssl_client2.c
programs/ssl/ssl_client2.c
+4
-0
programs/ssl/ssl_fork_server.c
programs/ssl/ssl_fork_server.c
+4
-0
programs/ssl/ssl_mail_client.c
programs/ssl/ssl_mail_client.c
+4
-0
programs/ssl/ssl_pthread_server.c
programs/ssl/ssl_pthread_server.c
+4
-0
programs/ssl/ssl_server.c
programs/ssl/ssl_server.c
+4
-0
programs/ssl/ssl_server2.c
programs/ssl/ssl_server2.c
+4
-0
programs/test/benchmark.c
programs/test/benchmark.c
+4
-0
programs/test/o_p_test.c
programs/test/o_p_test.c
+4
-0
programs/test/selftest.c
programs/test/selftest.c
+4
-0
programs/test/ssl_cert_test.c
programs/test/ssl_cert_test.c
+4
-0
programs/test/ssl_test.c
programs/test/ssl_test.c
+4
-0
programs/util/pem2der.c
programs/util/pem2der.c
+4
-0
programs/util/strerror.c
programs/util/strerror.c
+4
-0
programs/x509/cert_app.c
programs/x509/cert_app.c
+4
-0
programs/x509/cert_req.c
programs/x509/cert_req.c
+4
-0
programs/x509/cert_write.c
programs/x509/cert_write.c
+4
-0
programs/x509/crl_app.c
programs/x509/crl_app.c
+4
-0
programs/x509/req_app.c
programs/x509/req_app.c
+4
-0
scripts/data_files/error.fmt
scripts/data_files/error.fmt
+5
-1
scripts/data_files/version_features.fmt
scripts/data_files/version_features.fmt
+4
-0
tests/scripts/generate_code.pl
tests/scripts/generate_code.pl
+4
-0
No files found.
include/polarssl/aes.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_AES_H
#define POLARSSL_AES_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/arc4.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_ARC4_H
#define POLARSSL_ARC4_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/asn1.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_ASN1_H
#define POLARSSL_ASN1_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_BIGNUM_C)
#include "bignum.h"
...
...
include/polarssl/bignum.h
View file @
cef4ad25
...
...
@@ -30,7 +30,11 @@
#include <stdio.h>
#include <string.h>
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(_MSC_VER) && !defined(EFIX64) && !defined(EFI32)
#include <basetsd.h>
...
...
include/polarssl/blowfish.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_BLOWFISH_H
#define POLARSSL_BLOWFISH_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/camellia.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_CAMELLIA_H
#define POLARSSL_CAMELLIA_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/cipher.h
View file @
cef4ad25
...
...
@@ -30,7 +30,11 @@
#ifndef POLARSSL_CIPHER_H
#define POLARSSL_CIPHER_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_GCM_C)
#define POLARSSL_CIPHER_MODE_AEAD
...
...
include/polarssl/cipher_wrap.h
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
#ifndef POLARSSL_CIPHER_WRAP_H
#define POLARSSL_CIPHER_WRAP_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "cipher.h"
#ifdef __cplusplus
...
...
include/polarssl/compat-1.2.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_COMPAT_1_2_H
#define POLARSSL_COMPAT_1_2_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
// Comment out to disable prototype change warnings
#define SHOW_PROTOTYPE_CHANGE_WARNINGS
...
...
include/polarssl/debug.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_DEBUG_H
#define POLARSSL_DEBUG_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "ssl.h"
#if defined(POLARSSL_ECP_C)
#include "ecp.h"
...
...
include/polarssl/des.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_DES_H
#define POLARSSL_DES_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/entropy.h
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
#include <string.h>
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_SHA512_C) && !defined(POLARSSL_ENTROPY_FORCE_SHA256)
#include "sha512.h"
...
...
include/polarssl/entropy_poll.h
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
#include <string.h>
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#ifdef __cplusplus
extern
"C"
{
...
...
include/polarssl/md2.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_MD2_H
#define POLARSSL_MD2_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/md4.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_MD4_H
#define POLARSSL_MD4_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/md5.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_MD5_H
#define POLARSSL_MD5_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/md_wrap.h
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
#ifndef POLARSSL_MD_WRAP_H
#define POLARSSL_MD_WRAP_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "md.h"
#ifdef __cplusplus
...
...
include/polarssl/memory.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_MEMORY_H
#define POLARSSL_MEMORY_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <stdlib.h>
...
...
include/polarssl/memory_buffer_alloc.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_MEMORY_BUFFER_ALLOC_H
#define POLARSSL_MEMORY_BUFFER_ALLOC_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <stdlib.h>
...
...
include/polarssl/oid.h
View file @
cef4ad25
...
...
@@ -28,7 +28,11 @@
#define POLARSSL_OID_H
#include <string.h>
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "asn1.h"
#include "pk.h"
#if defined(POLARSSL_CIPHER_C)
...
...
include/polarssl/pk.h
View file @
cef4ad25
...
...
@@ -28,7 +28,11 @@
#ifndef POLARSSL_PK_H
#define POLARSSL_PK_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "md.h"
...
...
include/polarssl/pk_wrap.h
View file @
cef4ad25
...
...
@@ -28,7 +28,11 @@
#ifndef POLARSSL_PK_WRAP_H
#define POLARSSL_PK_WRAP_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "pk.h"
...
...
include/polarssl/pkcs11.h
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
#ifndef POLARSSL_PKCS11_H
#define POLARSSL_PKCS11_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_PKCS11_C)
...
...
include/polarssl/platform.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_PLATFORM_H
#define POLARSSL_PLATFORM_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <stdio.h>
...
...
include/polarssl/ripemd160.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_RIPEMD160_H
#define POLARSSL_RIPEMD160_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/rsa.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_RSA_H
#define POLARSSL_RSA_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "bignum.h"
#include "md.h"
...
...
include/polarssl/sha1.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_SHA1_H
#define POLARSSL_SHA1_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/sha256.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_SHA256_H
#define POLARSSL_SHA256_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/sha512.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_SHA512_H
#define POLARSSL_SHA512_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
include/polarssl/ssl.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_SSL_H
#define POLARSSL_SSL_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "net.h"
#include "bignum.h"
...
...
include/polarssl/threading.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_THREADING_H
#define POLARSSL_THREADING_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <stdlib.h>
...
...
include/polarssl/timing.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_TIMING_H
#define POLARSSL_TIMING_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if !defined(POLARSSL_TIMING_ALT)
// Regular implementation
...
...
include/polarssl/version.h
View file @
cef4ad25
...
...
@@ -31,7 +31,11 @@
#ifndef POLARSSL_VERSION_H
#define POLARSSL_VERSION_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
/**
* The version number x.y.z is split into three parts.
...
...
include/polarssl/x509.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_X509_H
#define POLARSSL_X509_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "asn1.h"
#include "pk.h"
...
...
include/polarssl/x509_crl.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_X509_CRL_H
#define POLARSSL_X509_CRL_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "x509.h"
...
...
include/polarssl/x509_crt.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_X509_CRT_H
#define POLARSSL_X509_CRT_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "x509.h"
...
...
include/polarssl/x509_csr.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_X509_CSR_H
#define POLARSSL_X509_CSR_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include "x509.h"
...
...
include/polarssl/xtea.h
View file @
cef4ad25
...
...
@@ -27,7 +27,11 @@
#ifndef POLARSSL_XTEA_H
#define POLARSSL_XTEA_H
#if !defined(POLARSSL_CONFIG_FILE)
#include "config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#include <string.h>
...
...
library/aes.c
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
* http://csrc.nist.gov/publications/fips/fips197/fips-197.pdf
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_AES_C)
...
...
library/aesni.c
View file @
cef4ad25
...
...
@@ -28,7 +28,11 @@
* [CLMUL-WP] http://software.intel.com/en-us/articles/intel-carry-less-multiplication-instruction-and-its-usage-for-computing-the-gcm-mode/
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_AESNI_C)
...
...
library/arc4.c
View file @
cef4ad25
...
...
@@ -28,7 +28,11 @@
* http://groups.google.com/group/sci.crypt/msg/10a300c9d21afca0
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_ARC4_C)
...
...
library/asn1parse.c
View file @
cef4ad25
...
...
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_ASN1_PARSE_C)
...
...
library/asn1write.c
View file @
cef4ad25
...
...
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_ASN1_WRITE_C)
...
...
library/base64.c
View file @
cef4ad25
...
...
@@ -23,7 +23,11 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_BASE64_C)
...
...
library/bignum.c
View file @
cef4ad25
...
...
@@ -30,7 +30,11 @@
* http://math.libtomcrypt.com/files/tommath.pdf
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif
#if defined(POLARSSL_BIGNUM_C)
...
...
library/blowfish.c
View file @
cef4ad25
...
...
@@ -29,7 +29,11 @@
*
*/
#if !defined(POLARSSL_CONFIG_FILE)
#include "polarssl/config.h"
#else
#include POLARSSL_CONFIG_FILE
#endif