summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/md4/md4.h
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/md4/md4.h
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/md4/md4.h')
-rw-r--r--src/lib/libcrypto/md4/md4.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/md4/md4.h b/src/lib/libcrypto/md4/md4.h
index bf4313b345..64bcfefeec 100644
--- a/src/lib/libcrypto/md4/md4.h
+++ b/src/lib/libcrypto/md4/md4.h
@@ -1,4 +1,4 @@
1/* $OpenBSD: md4.h,v 1.18 2024/06/01 07:36:16 tb Exp $ */ 1/* $OpenBSD: md4.h,v 1.19 2024/06/01 07:44:11 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -95,8 +95,8 @@ int MD4_Update(MD4_CTX *c, const void *data, size_t len);
95 __attribute__ ((__bounded__(__buffer__, 2, 3))); 95 __attribute__ ((__bounded__(__buffer__, 2, 3)));
96int MD4_Final(unsigned char *md, MD4_CTX *c); 96int MD4_Final(unsigned char *md, MD4_CTX *c);
97unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md); 97unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
98 __attribute__ ((__nonnull__(3))) 98 __attribute__ ((__bounded__(__buffer__, 1, 2)))
99 __attribute__ ((__bounded__(__buffer__, 1, 2))); 99 __attribute__ ((__nonnull__(3)));
100void MD4_Transform(MD4_CTX *c, const unsigned char *b); 100void MD4_Transform(MD4_CTX *c, const unsigned char *b);
101#ifdef __cplusplus 101#ifdef __cplusplus
102} 102}