1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | EVP_MD-RIPEMD160 - The RIPEMD160 EVP_MD implementation
|
---|
6 |
|
---|
7 | =head1 DESCRIPTION
|
---|
8 |
|
---|
9 | Support for computing RIPEMD160 digests through the B<EVP_MD> API.
|
---|
10 |
|
---|
11 | =head2 Identities
|
---|
12 |
|
---|
13 | This implementation is available in both the default and legacy providers, and is
|
---|
14 | identified with any of the names "RIPEMD-160", "RIPEMD160", "RIPEMD" and
|
---|
15 | "RMD160".
|
---|
16 |
|
---|
17 | =head2 Gettable Parameters
|
---|
18 |
|
---|
19 | This implementation supports the common gettable parameters described
|
---|
20 | in L<EVP_MD-common(7)>.
|
---|
21 |
|
---|
22 | =head1 SEE ALSO
|
---|
23 |
|
---|
24 | L<provider-digest(7)>, L<OSSL_PROVIDER-default(7)>
|
---|
25 |
|
---|
26 | =head1 HISTORY
|
---|
27 |
|
---|
28 | This digest was added to the default provider in OpenSSL 3.0.7.
|
---|
29 |
|
---|
30 | =head1 COPYRIGHT
|
---|
31 |
|
---|
32 | Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
|
---|
33 |
|
---|
34 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
35 | this file except in compliance with the License. You can obtain a copy
|
---|
36 | in the file LICENSE in the source distribution or at
|
---|
37 | L<https://www.openssl.org/source/license.html>.
|
---|
38 |
|
---|
39 | =cut
|
---|