diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2011-02-16 15:40:06 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2011-02-16 15:40:06 +0100 |
commit | d749e1080a4ec0ae6af5edc4851379fbc2a5ebca (patch) | |
tree | 44e436481d60d2cdcfe54e141d554c5302ccc6c2 /crypto/aes | |
parent | Add pairwise consistency test to EC. (diff) | |
download | openssl-d749e1080a4ec0ae6af5edc4851379fbc2a5ebca.tar.xz openssl-d749e1080a4ec0ae6af5edc4851379fbc2a5ebca.zip |
Experimental symbol renaming to avoid clashes with regular OpenSSL.
Make sure crypto.h is included first in any affected files.
Diffstat (limited to 'crypto/aes')
-rw-r--r-- | crypto/aes/aes_cbc.c | 1 | ||||
-rw-r--r-- | crypto/aes/aes_cfb.c | 1 | ||||
-rw-r--r-- | crypto/aes/aes_core.c | 1 | ||||
-rw-r--r-- | crypto/aes/aes_ecb.c | 1 | ||||
-rw-r--r-- | crypto/aes/aes_ofb.c | 1 | ||||
-rw-r--r-- | crypto/aes/aes_x86core.c | 1 |
6 files changed, 6 insertions, 0 deletions
diff --git a/crypto/aes/aes_cbc.c b/crypto/aes/aes_cbc.c index 227f75625d..87545c34da 100644 --- a/crypto/aes/aes_cbc.c +++ b/crypto/aes/aes_cbc.c @@ -49,6 +49,7 @@ * */ +#include <openssl/crypto.h> #include <openssl/aes.h> #include <openssl/modes.h> diff --git a/crypto/aes/aes_cfb.c b/crypto/aes/aes_cfb.c index 0c6d058ce7..7f19555603 100644 --- a/crypto/aes/aes_cfb.c +++ b/crypto/aes/aes_cfb.c @@ -49,6 +49,7 @@ * */ +#include <openssl/crypto.h> #include <openssl/aes.h> #include <openssl/modes.h> diff --git a/crypto/aes/aes_core.c b/crypto/aes/aes_core.c index a7ec54f4da..ba90952829 100644 --- a/crypto/aes/aes_core.c +++ b/crypto/aes/aes_core.c @@ -36,6 +36,7 @@ #include <assert.h> #include <stdlib.h> +#include <openssl/crypto.h> #include <openssl/aes.h> #include "aes_locl.h" diff --git a/crypto/aes/aes_ecb.c b/crypto/aes/aes_ecb.c index 28aa561c2d..f342bbdf87 100644 --- a/crypto/aes/aes_ecb.c +++ b/crypto/aes/aes_ecb.c @@ -56,6 +56,7 @@ #endif #include <assert.h> +#include <openssl/crypto.h> #include <openssl/aes.h> #include "aes_locl.h" diff --git a/crypto/aes/aes_ofb.c b/crypto/aes/aes_ofb.c index 50bf0b8325..7a87608a68 100644 --- a/crypto/aes/aes_ofb.c +++ b/crypto/aes/aes_ofb.c @@ -49,6 +49,7 @@ * */ +#include <openssl/crypto.h> #include <openssl/aes.h> #include <openssl/modes.h> diff --git a/crypto/aes/aes_x86core.c b/crypto/aes/aes_x86core.c index d323e265c0..c1c94d7a3e 100644 --- a/crypto/aes/aes_x86core.c +++ b/crypto/aes/aes_x86core.c @@ -43,6 +43,7 @@ #include <assert.h> #include <stdlib.h> +#include <crypto/aes.h> #include <openssl/aes.h> #include "aes_locl.h" |