1RIPEMD160_INIT(3) OpenSSL RIPEMD160_INIT(3)
2
3
4
6 RIPEMD160, RIPEMD160_Init, RIPEMD160_Update, RIPEMD160_Final -
7 RIPEMD-160 hash function
8
10 #include <openssl/ripemd.h>
11
12 unsigned char *RIPEMD160(const unsigned char *d, unsigned long n,
13 unsigned char *md);
14
15 int RIPEMD160_Init(RIPEMD160_CTX *c);
16 int RIPEMD160_Update(RIPEMD160_CTX *c, const void *data, unsigned long len);
17 int RIPEMD160_Final(unsigned char *md, RIPEMD160_CTX *c);
18
20 RIPEMD-160 is a cryptographic hash function with a 160 bit output.
21
22 RIPEMD160() computes the RIPEMD-160 message digest of the n bytes at d
23 and places it in md (which must have space for RIPEMD160_DIGEST_LENGTH
24 == 20 bytes of output). If md is NULL, the digest is placed in a static
25 array.
26
27 The following functions may be used if the message is not completely
28 stored in memory:
29
30 RIPEMD160_Init() initializes a RIPEMD160_CTX structure.
31
32 RIPEMD160_Update() can be called repeatedly with chunks of the message
33 to be hashed (len bytes at data).
34
35 RIPEMD160_Final() places the message digest in md, which must have
36 space for RIPEMD160_DIGEST_LENGTH == 20 bytes of output, and erases the
37 RIPEMD160_CTX.
38
40 RIPEMD160() returns a pointer to the hash value.
41
42 RIPEMD160_Init(), RIPEMD160_Update() and RIPEMD160_Final() return 1 for
43 success, 0 otherwise.
44
46 Applications should use the higher level functions EVP_DigestInit(3)
47 etc. instead of calling these functions directly.
48
50 ISO/IEC 10118-3:2016 Dedicated Hash-Function 1 (RIPEMD-160).
51
53 EVP_DigestInit(3)
54
56 Copyright 2000-2019 The OpenSSL Project Authors. All Rights Reserved.
57
58 Licensed under the OpenSSL license (the "License"). You may not use
59 this file except in compliance with the License. You can obtain a copy
60 in the file LICENSE in the source distribution or at
61 <https://www.openssl.org/source/license.html>.
62
63
64
651.1.1g 2020-04-23 RIPEMD160_INIT(3)