summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/whrlpool
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/whrlpool')
-rw-r--r--src/lib/libcrypto/whrlpool/whrlpool.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/whrlpool/whrlpool.h b/src/lib/libcrypto/whrlpool/whrlpool.h
index 1b4fac1993..1670a81b37 100644
--- a/src/lib/libcrypto/whrlpool/whrlpool.h
+++ b/src/lib/libcrypto/whrlpool/whrlpool.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: whrlpool.h,v 1.6 2024/06/01 07:36:17 tb Exp $ */ 1/* $OpenBSD: whrlpool.h,v 1.7 2024/06/01 07:44:11 tb Exp $ */
2 2
3#include <stddef.h> 3#include <stddef.h>
4 4
@@ -33,8 +33,8 @@ int WHIRLPOOL_Update (WHIRLPOOL_CTX *c,const void *inp,size_t bytes)
33void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *inp,size_t bits); 33void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,const void *inp,size_t bits);
34int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c); 34int WHIRLPOOL_Final (unsigned char *md,WHIRLPOOL_CTX *c);
35unsigned char *WHIRLPOOL(const void *inp,size_t bytes,unsigned char *md) 35unsigned char *WHIRLPOOL(const void *inp,size_t bytes,unsigned char *md)
36 __attribute__ ((__nonnull__(3))) 36 __attribute__ ((__bounded__(__buffer__, 1, 2)))
37 __attribute__ ((__bounded__(__buffer__, 1, 2))); 37 __attribute__ ((__nonnull__(3)));
38#endif 38#endif
39 39
40#ifdef __cplusplus 40#ifdef __cplusplus