diff options
Diffstat (limited to 'src/lib/libcrypto/sha/sha3_internal.h')
-rw-r--r-- | src/lib/libcrypto/sha/sha3_internal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/sha/sha3_internal.h b/src/lib/libcrypto/sha/sha3_internal.h index 5156ad9d80..889f12c8e9 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.7 2023/04/15 18:30:27 jsing Exp $ */ | 1 | /* $OpenBSD: sha3_internal.h,v 1.8 2023/04/15 18:32:55 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * The MIT License (MIT) | 3 | * The MIT License (MIT) |
4 | * | 4 | * |
@@ -33,7 +33,7 @@ typedef struct { | |||
33 | union { | 33 | union { |
34 | uint8_t b[200]; /* State as 8 bit bytes. */ | 34 | uint8_t b[200]; /* State as 8 bit bytes. */ |
35 | uint64_t q[25]; /* State as 64 bit words. */ | 35 | uint64_t q[25]; /* State as 64 bit words. */ |
36 | } st; | 36 | } state; |
37 | int pt, rsiz, mdlen; | 37 | int pt, rsiz, mdlen; |
38 | } sha3_ctx; | 38 | } sha3_ctx; |
39 | 39 | ||