diff options
author | tb <> | 2024-06-01 18:42:49 +0000 |
---|---|---|
committer | tb <> | 2024-06-01 18:42:49 +0000 |
commit | 6b756272189c862805133e3beb28ad09ae9acb3f (patch) | |
tree | 138dceff84930eae0772b44e7efa7ee597d485dd /src/lib/libcrypto/ripemd | |
parent | e8fd0aebd3bba5eeb4eb38d2c9640450f3634294 (diff) | |
download | openbsd-6b756272189c862805133e3beb28ad09ae9acb3f.tar.gz openbsd-6b756272189c862805133e3beb28ad09ae9acb3f.tar.bz2 openbsd-6b756272189c862805133e3beb28ad09ae9acb3f.zip |
md4/ripemd: remove misplaced semicolons
Diffstat (limited to 'src/lib/libcrypto/ripemd')
-rw-r--r-- | src/lib/libcrypto/ripemd/ripemd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ripemd/ripemd.h b/src/lib/libcrypto/ripemd/ripemd.h index 3dc6bd8b25..83f7b36bc0 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.18 2024/06/01 17:56:44 tb Exp $ */ | 1 | /* $OpenBSD: ripemd.h,v 1.19 2024/06/01 18:42:49 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 | * |
@@ -96,7 +96,7 @@ typedef struct RIPEMD160state_st { | |||
96 | } RIPEMD160_CTX; | 96 | } RIPEMD160_CTX; |
97 | 97 | ||
98 | int RIPEMD160_Init(RIPEMD160_CTX *c); | 98 | int RIPEMD160_Init(RIPEMD160_CTX *c); |
99 | int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len); | 99 | int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, size_t len) |
100 | __attribute__ ((__bounded__(__buffer__, 2, 3))); | 100 | __attribute__ ((__bounded__(__buffer__, 2, 3))); |
101 | int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); | 101 | int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c); |
102 | unsigned char *RIPEMD160(const unsigned char *d, size_t n, | 102 | unsigned char *RIPEMD160(const unsigned char *d, size_t n, |