diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2024-06-01 18:42:50 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2024-06-01 18:42:50 +0000 |
commit | 70750a7ee573f3639203017d466fe8cc42c02b3f (patch) | |
tree | 3aa80eb0c4f85bab49a67b7d8a1e08a22d33659c /lib/libcrypto/md4 | |
parent | 208f9333ba928c74ff449eebedc4bb1402ffa8e7 (diff) |
md4/ripemd: remove misplaced semicolons
Diffstat (limited to 'lib/libcrypto/md4')
-rw-r--r-- | lib/libcrypto/md4/md4.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/md4/md4.h b/lib/libcrypto/md4/md4.h index f0a9daeb507..2d0169e7197 100644 --- a/lib/libcrypto/md4/md4.h +++ b/lib/libcrypto/md4/md4.h @@ -1,4 +1,4 @@ -/* $OpenBSD: md4.h,v 1.20 2024/06/01 17:56:44 tb Exp $ */ +/* $OpenBSD: md4.h,v 1.21 2024/06/01 18:42:49 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -95,10 +95,10 @@ typedef struct MD4state_st { } MD4_CTX; int MD4_Init(MD4_CTX *c); -int MD4_Update(MD4_CTX *c, const void *data, size_t len); +int MD4_Update(MD4_CTX *c, const void *data, size_t len) __attribute__ ((__bounded__(__buffer__, 2, 3))); int MD4_Final(unsigned char *md, MD4_CTX *c); -unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md); +unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md) __attribute__ ((__bounded__(__buffer__, 1, 2))) __attribute__ ((__nonnull__(3))); void MD4_Transform(MD4_CTX *c, const unsigned char *b); |