summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/des
diff options
context:
space:
mode:
authorjsing <>2014-05-24 09:16:08 +0000
committerjsing <>2014-05-24 09:16:08 +0000
commitea9d79c4cd69bfc81e564708ee81e8e5285d79e2 (patch)
tree8c5241e44e7eefe5e9cdf6e12a5a011a5242602f /src/lib/libcrypto/des
parentce3ee9f6ea8937b30c7cfc80a18da648c9ba5ac4 (diff)
downloadopenbsd-ea9d79c4cd69bfc81e564708ee81e8e5285d79e2.tar.gz
openbsd-ea9d79c4cd69bfc81e564708ee81e8e5285d79e2.tar.bz2
openbsd-ea9d79c4cd69bfc81e564708ee81e8e5285d79e2.zip
Almost nothing actually needs to include <openssl/e_os2.h>, however by
including it they get <openssl/opensslconf.h>. So instead of pulling in <openssl/e_os2.h>, just pull in <openssl/opensslconf.h>. "go ahead" miod@
Diffstat (limited to 'src/lib/libcrypto/des')
-rw-r--r--src/lib/libcrypto/des/des_locl.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/libcrypto/des/des_locl.h b/src/lib/libcrypto/des/des_locl.h
index 1a21467b3e..cf28f59d4a 100644
--- a/src/lib/libcrypto/des/des_locl.h
+++ b/src/lib/libcrypto/des/des_locl.h
@@ -59,14 +59,15 @@
59#ifndef HEADER_DES_LOCL_H 59#ifndef HEADER_DES_LOCL_H
60#define HEADER_DES_LOCL_H 60#define HEADER_DES_LOCL_H
61 61
62#include <openssl/e_os2.h>
63
64#include <stdio.h> 62#include <stdio.h>
65#include <stdlib.h> 63#include <stdlib.h>
66#include <string.h> 64#include <string.h>
67 65
68#include <unistd.h> 66#include <unistd.h>
69#include <math.h> 67#include <math.h>
68
69#include <openssl/opensslconf.h>
70
70#include <openssl/des.h> 71#include <openssl/des.h>
71 72
72#define ITERATIONS 16 73#define ITERATIONS 16