1EVP_RIPEMD160(3ossl) OpenSSL EVP_RIPEMD160(3ossl)
2
3
4
6 EVP_ripemd160 - RIPEMD160 For EVP
7
9 #include <openssl/evp.h>
10
11 const EVP_MD *EVP_ripemd160(void);
12
14 RIPEMD-160 is a cryptographic hash function first published in 1996
15 belonging to the RIPEMD family (RACE Integrity Primitives Evaluation
16 Message Digest). This implementation is only available with the legacy
17 provider.
18
19 EVP_ripemd160()
20 The RIPEMD-160 algorithm which produces a 160-bit output from a
21 given input.
22
24 Developers should be aware of the negative performance implications of
25 calling this function multiple times and should consider using
26 EVP_MD_fetch(3) instead. See "Performance" in crypto(7) for further
27 information.
28
30 These functions return a EVP_MD structure that contains the
31 implementation of the message digest. See EVP_MD_meth_new(3) for
32 details of the EVP_MD structure.
33
35 ISO/IEC 10118-3:2016 Dedicated Hash-Function 1 (RIPEMD-160).
36
38 evp(7), provider(7), EVP_DigestInit(3)
39
41 Copyright 2017-2023 The OpenSSL Project Authors. All Rights Reserved.
42
43 Licensed under the Apache License 2.0 (the "License"). You may not use
44 this file except in compliance with the License. You can obtain a copy
45 in the file LICENSE in the source distribution or at
46 <https://www.openssl.org/source/license.html>.
47
48
49
503.0.9 2023-07-27 EVP_RIPEMD160(3ossl)