summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/whrlpool
diff options
context:
space:
mode:
authortb <>2024-06-01 07:44:11 +0000
committertb <>2024-06-01 07:44:11 +0000
commitf1d0891cbe8e9a0eb2a6b78725f11429b2224763 (patch)
tree3b11886e1986fdd282699df45052115c3b2ff3a5 /src/lib/libcrypto/whrlpool
parentf3bc6c83f92ef9b23bfc523ef1b24bfa27e1f6e4 (diff)
downloadopenbsd-f1d0891cbe8e9a0eb2a6b78725f11429b2224763.tar.gz
openbsd-f1d0891cbe8e9a0eb2a6b78725f11429b2224763.tar.bz2
openbsd-f1d0891cbe8e9a0eb2a6b78725f11429b2224763.zip
Reverse order of attributes
requested by jsing on review
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