diff options
author | tb <> | 2024-06-01 07:44:11 +0000 |
---|---|---|
committer | tb <> | 2024-06-01 07:44:11 +0000 |
commit | f1d0891cbe8e9a0eb2a6b78725f11429b2224763 (patch) | |
tree | 3b11886e1986fdd282699df45052115c3b2ff3a5 /src/lib/libcrypto/ripemd | |
parent | f3bc6c83f92ef9b23bfc523ef1b24bfa27e1f6e4 (diff) | |
download | openbsd-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/ripemd')
-rw-r--r-- | src/lib/libcrypto/ripemd/ripemd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/ripemd/ripemd.h b/src/lib/libcrypto/ripemd/ripemd.h index 5925083c0c..98fd0f71ec 100644 --- a/src/lib/libcrypto/ripemd/ripemd.h +++ b/src/lib/libcrypto/ripemd/ripemd.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ripemd.h,v 1.16 2024/06/01 07:36:16 tb Exp $ */ | 1 | /* $OpenBSD: ripemd.h,v 1.17 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 | * |
@@ -97,8 +97,8 @@ int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len); | |||
97 | int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); | 97 | int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); |
98 | unsigned char *RIPEMD160(const unsigned char *d, size_t n, | 98 | unsigned char *RIPEMD160(const unsigned char *d, size_t n, |
99 | unsigned char *md) | 99 | unsigned char *md) |
100 | __attribute__ ((__nonnull__(3))) | 100 | __attribute__ ((__bounded__(__buffer__, 1, 2))) |
101 | __attribute__ ((__bounded__(__buffer__, 1, 2))); | 101 | __attribute__ ((__nonnull__(3))); |
102 | void RIPEMD160_Transform(RIPEMD160_CTX *c, const unsigned char *b); | 102 | void RIPEMD160_Transform(RIPEMD160_CTX *c, const unsigned char *b); |
103 | #ifdef __cplusplus | 103 | #ifdef __cplusplus |
104 | } | 104 | } |