diff options
author | deraadt <> | 2014-05-31 23:33:33 +0000 |
---|---|---|
committer | deraadt <> | 2014-05-31 23:33:33 +0000 |
commit | a9478c5fe632c07fa8cacb9aec36bd254df2af8b (patch) | |
tree | f7562035cf913e40338865be267d6c4586ce01e4 /src/lib/libcrypto | |
parent | 5f1838a9fb70a7d72b663679a1fb192184149bc1 (diff) | |
download | openbsd-a9478c5fe632c07fa8cacb9aec36bd254df2af8b.tar.gz openbsd-a9478c5fe632c07fa8cacb9aec36bd254df2af8b.tar.bz2 openbsd-a9478c5fe632c07fa8cacb9aec36bd254df2af8b.zip |
Get the public headers from the official place with <openssl/ >
from Brent Cook
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r-- | src/lib/libcrypto/bn/bn_const.c | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/chacha/chacha.c | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/o_init.c | 3 | ||||
-rw-r--r-- | src/lib/libcrypto/poly1305/poly1305.c | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/ts/ts_lib.c | 2 | ||||
-rw-r--r-- | src/lib/libcrypto/ts/ts_rsp_print.c | 2 |
6 files changed, 7 insertions, 6 deletions
diff --git a/src/lib/libcrypto/bn/bn_const.c b/src/lib/libcrypto/bn/bn_const.c index 1c8bc9b5df..2ba2bbd827 100644 --- a/src/lib/libcrypto/bn/bn_const.c +++ b/src/lib/libcrypto/bn/bn_const.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* crypto/bn/knownprimes.c */ | 1 | /* crypto/bn/knownprimes.c */ |
2 | /* Insert boilerplate */ | 2 | /* Insert boilerplate */ |
3 | 3 | ||
4 | #include "bn.h" | 4 | #include <openssl/bn.h> |
5 | 5 | ||
6 | /* "First Oakley Default Group" from RFC2409, section 6.1. | 6 | /* "First Oakley Default Group" from RFC2409, section 6.1. |
7 | * | 7 | * |
diff --git a/src/lib/libcrypto/chacha/chacha.c b/src/lib/libcrypto/chacha/chacha.c index 1bc95f502d..f0e818eb66 100644 --- a/src/lib/libcrypto/chacha/chacha.c +++ b/src/lib/libcrypto/chacha/chacha.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "chacha.h" | 17 | #include <openssl/chacha.h> |
18 | #include "chacha-merged.c" | 18 | #include "chacha-merged.c" |
19 | 19 | ||
20 | void | 20 | void |
diff --git a/src/lib/libcrypto/o_init.c b/src/lib/libcrypto/o_init.c index 09c982098c..89c708752c 100644 --- a/src/lib/libcrypto/o_init.c +++ b/src/lib/libcrypto/o_init.c | |||
@@ -1,5 +1,6 @@ | |||
1 | /* Ted Unangst places this file in the public domain. */ | 1 | /* Ted Unangst places this file in the public domain. */ |
2 | #include <crypto.h> | 2 | |
3 | #include <openssl/crypto.h> | ||
3 | 4 | ||
4 | void | 5 | void |
5 | OPENSSL_init(void) | 6 | OPENSSL_init(void) |
diff --git a/src/lib/libcrypto/poly1305/poly1305.c b/src/lib/libcrypto/poly1305/poly1305.c index 96083fe7e9..c2c3906c94 100644 --- a/src/lib/libcrypto/poly1305/poly1305.c +++ b/src/lib/libcrypto/poly1305/poly1305.c | |||
@@ -14,7 +14,7 @@ | |||
14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 14 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include "poly1305.h" | 17 | #include <openssl/poly1305.h> |
18 | #include "poly1305-donna.c" | 18 | #include "poly1305-donna.c" |
19 | 19 | ||
20 | void | 20 | void |
diff --git a/src/lib/libcrypto/ts/ts_lib.c b/src/lib/libcrypto/ts/ts_lib.c index b9d92a3012..5018e959bb 100644 --- a/src/lib/libcrypto/ts/ts_lib.c +++ b/src/lib/libcrypto/ts/ts_lib.c | |||
@@ -61,7 +61,7 @@ | |||
61 | #include <openssl/objects.h> | 61 | #include <openssl/objects.h> |
62 | #include <openssl/bn.h> | 62 | #include <openssl/bn.h> |
63 | #include <openssl/x509v3.h> | 63 | #include <openssl/x509v3.h> |
64 | #include "ts.h" | 64 | #include <openssl/ts.h> |
65 | 65 | ||
66 | /* Local function declarations. */ | 66 | /* Local function declarations. */ |
67 | 67 | ||
diff --git a/src/lib/libcrypto/ts/ts_rsp_print.c b/src/lib/libcrypto/ts/ts_rsp_print.c index 248674f4e5..6615e20445 100644 --- a/src/lib/libcrypto/ts/ts_rsp_print.c +++ b/src/lib/libcrypto/ts/ts_rsp_print.c | |||
@@ -61,7 +61,7 @@ | |||
61 | #include <openssl/objects.h> | 61 | #include <openssl/objects.h> |
62 | #include <openssl/bn.h> | 62 | #include <openssl/bn.h> |
63 | #include <openssl/x509v3.h> | 63 | #include <openssl/x509v3.h> |
64 | #include "ts.h" | 64 | #include <openssl/ts.h> |
65 | 65 | ||
66 | struct status_map_st { | 66 | struct status_map_st { |
67 | int bit; | 67 | int bit; |