summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto
diff options
context:
space:
mode:
authorjsing <>2023-04-15 18:22:53 +0000
committerjsing <>2023-04-15 18:22:53 +0000
commite00485bd79b5c92df588a19b36459e55798cabeb (patch)
tree1afe66174744d0fe869e9dbd6e7604effd0605b0 /src/lib/libcrypto
parentd4cb6da488778f0a0cc4fcdef3110f6406a3cb86 (diff)
downloadopenbsd-e00485bd79b5c92df588a19b36459e55798cabeb.tar.gz
openbsd-e00485bd79b5c92df588a19b36459e55798cabeb.tar.bz2
openbsd-e00485bd79b5c92df588a19b36459e55798cabeb.zip
Revise header guards.
Diffstat (limited to 'src/lib/libcrypto')
-rw-r--r--src/lib/libcrypto/sha/sha3_internal.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/sha/sha3_internal.h b/src/lib/libcrypto/sha/sha3_internal.h
index 3227e6120f..1ed4b02f7c 100644
--- a/src/lib/libcrypto/sha/sha3_internal.h
+++ b/src/lib/libcrypto/sha/sha3_internal.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: sha3_internal.h,v 1.4 2023/04/15 18:14:21 jsing Exp $ */ 1/* $OpenBSD: sha3_internal.h,v 1.5 2023/04/15 18:22:53 jsing Exp $ */
2/* 2/*
3 * The MIT License (MIT) 3 * The MIT License (MIT)
4 * 4 *
@@ -23,12 +23,12 @@
23 * SOFTWARE. 23 * SOFTWARE.
24 */ 24 */
25 25
26#ifndef SHA3_H
27#define SHA3_H
28
29#include <stddef.h> 26#include <stddef.h>
30#include <stdint.h> 27#include <stdint.h>
31 28
29#ifndef HEADER_SHA3_INTERNAL_H
30#define HEADER_SHA3_INTERNAL_H
31
32#ifndef KECCAKF_ROUNDS 32#ifndef KECCAKF_ROUNDS
33#define KECCAKF_ROUNDS 24 33#define KECCAKF_ROUNDS 24
34#endif 34#endif