diff options
author | bcook <> | 2021-11-09 18:40:21 +0000 |
---|---|---|
committer | bcook <> | 2021-11-09 18:40:21 +0000 |
commit | 32252b67905445c5f332781497a1509d803f7aee (patch) | |
tree | 3d08be06ef36588938f48b03e786f7f3d32b03f2 /src/lib/libcrypto/whrlpool | |
parent | 07305e812277e705090ef12fc544cfaca761f7b0 (diff) | |
download | openbsd-32252b67905445c5f332781497a1509d803f7aee.tar.gz openbsd-32252b67905445c5f332781497a1509d803f7aee.tar.bz2 openbsd-32252b67905445c5f332781497a1509d803f7aee.zip |
Switch to <endian.h> from <machine/endian.h> for better portability.
ok tb@
Diffstat (limited to 'src/lib/libcrypto/whrlpool')
-rw-r--r-- | src/lib/libcrypto/whrlpool/wp_block.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/whrlpool/wp_block.c b/src/lib/libcrypto/whrlpool/wp_block.c index 1e00a01330..b2137d643d 100644 --- a/src/lib/libcrypto/whrlpool/wp_block.c +++ b/src/lib/libcrypto/whrlpool/wp_block.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: wp_block.c,v 1.13 2016/11/04 17:30:30 miod Exp $ */ | 1 | /* $OpenBSD: wp_block.c,v 1.14 2021/11/09 18:40:21 bcook Exp $ */ |
2 | /** | 2 | /** |
3 | * The Whirlpool hashing function. | 3 | * The Whirlpool hashing function. |
4 | * | 4 | * |
@@ -36,9 +36,9 @@ | |||
36 | * | 36 | * |
37 | */ | 37 | */ |
38 | 38 | ||
39 | #include <endian.h> | ||
39 | #include <string.h> | 40 | #include <string.h> |
40 | #include <openssl/crypto.h> | 41 | #include <openssl/crypto.h> |
41 | #include <machine/endian.h> | ||
42 | 42 | ||
43 | #include "wp_locl.h" | 43 | #include "wp_locl.h" |
44 | 44 | ||