diff options
Diffstat (limited to 'src/lib/libcrypto/md5/md5.h')
-rw-r--r-- | src/lib/libcrypto/md5/md5.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/md5/md5.h b/src/lib/libcrypto/md5/md5.h index 9191ff2131..a3529f486d 100644 --- a/src/lib/libcrypto/md5/md5.h +++ b/src/lib/libcrypto/md5/md5.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: md5.h,v 1.22 2024/06/01 07:36:16 tb Exp $ */ | 1 | /* $OpenBSD: md5.h,v 1.23 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 | * |
@@ -98,8 +98,8 @@ int MD5_Update(MD5_CTX *c, const void *data, size_t len) | |||
98 | __attribute__ ((__bounded__(__buffer__, 2, 3))); | 98 | __attribute__ ((__bounded__(__buffer__, 2, 3))); |
99 | int MD5_Final(unsigned char *md, MD5_CTX *c); | 99 | int MD5_Final(unsigned char *md, MD5_CTX *c); |
100 | unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md) | 100 | unsigned char *MD5(const unsigned char *d, size_t n, unsigned char *md) |
101 | __attribute__ ((__nonnull__(3))) | 101 | __attribute__ ((__bounded__(__buffer__, 1, 2))) |
102 | __attribute__ ((__bounded__(__buffer__, 1, 2))); | 102 | __attribute__ ((__nonnull__(3))); |
103 | void MD5_Transform(MD5_CTX *c, const unsigned char *b); | 103 | void MD5_Transform(MD5_CTX *c, const unsigned char *b); |
104 | #ifdef __cplusplus | 104 | #ifdef __cplusplus |
105 | } | 105 | } |