summaryrefslogtreecommitdiffstats
path: root/crypto/modes
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-02-16 14:40:06 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-02-16 14:40:06 +0000
commitd749e1080a4ec0ae6af5edc4851379fbc2a5ebca (patch)
tree44e436481d60d2cdcfe54e141d554c5302ccc6c2 /crypto/modes
parent0fbf8f447b6063b2023ddbf8e8caa57a29aa368a (diff)
Experimental symbol renaming to avoid clashes with regular OpenSSL.
Make sure crypto.h is included first in any affected files.
Diffstat (limited to 'crypto/modes')
-rw-r--r--crypto/modes/cbc128.c1
-rw-r--r--crypto/modes/cfb128.c1
-rw-r--r--crypto/modes/ctr128.c1
-rw-r--r--crypto/modes/ofb128.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/crypto/modes/cbc128.c b/crypto/modes/cbc128.c
index dbf5b45a21..3d3782cbe1 100644
--- a/crypto/modes/cbc128.c
+++ b/crypto/modes/cbc128.c
@@ -48,6 +48,7 @@
*
*/
+#include <openssl/crypto.h>
#include "modes_lcl.h"
#include <string.h>
diff --git a/crypto/modes/cfb128.c b/crypto/modes/cfb128.c
index b76514b9b5..4e6f5d35e1 100644
--- a/crypto/modes/cfb128.c
+++ b/crypto/modes/cfb128.c
@@ -48,6 +48,7 @@
*
*/
+#include <openssl/crypto.h>
#include "modes_lcl.h"
#include <string.h>
diff --git a/crypto/modes/ctr128.c b/crypto/modes/ctr128.c
index 087b1b6866..ee642c5863 100644
--- a/crypto/modes/ctr128.c
+++ b/crypto/modes/ctr128.c
@@ -48,6 +48,7 @@
*
*/
+#include <openssl/crypto.h>
#include "modes_lcl.h"
#include <string.h>
diff --git a/crypto/modes/ofb128.c b/crypto/modes/ofb128.c
index 4b5b4ec648..01c01702c4 100644
--- a/crypto/modes/ofb128.c
+++ b/crypto/modes/ofb128.c
@@ -48,6 +48,7 @@
*
*/
+#include <openssl/crypto.h>
#include "modes_lcl.h"
#include <string.h>