1 | =pod
|
---|
2 |
|
---|
3 | =head1 NAME
|
---|
4 |
|
---|
5 | EVP_MD-BLAKE2 - The BLAKE2 EVP_MD implementation
|
---|
6 |
|
---|
7 | =head1 DESCRIPTION
|
---|
8 |
|
---|
9 | Support for computing BLAKE2 digests through the B<EVP_MD> API.
|
---|
10 |
|
---|
11 | =head2 Identities
|
---|
12 |
|
---|
13 | This implementation is only available with the default provider, and
|
---|
14 | includes the following varieties:
|
---|
15 |
|
---|
16 | =over 4
|
---|
17 |
|
---|
18 | =item BLAKE2S-256
|
---|
19 |
|
---|
20 | Known names are "BLAKE2S-256" and "BLAKE2s256".
|
---|
21 |
|
---|
22 | =item BLAKE2B-512
|
---|
23 |
|
---|
24 | Known names are "BLAKE2B-512" and "BLAKE2b512".
|
---|
25 |
|
---|
26 | =back
|
---|
27 |
|
---|
28 | =head2 Gettable Parameters
|
---|
29 |
|
---|
30 | This implementation supports the common gettable parameters described
|
---|
31 | in L<EVP_MD-common(7)>.
|
---|
32 |
|
---|
33 | =head1 SEE ALSO
|
---|
34 |
|
---|
35 | L<provider-digest(7)>, L<OSSL_PROVIDER-default(7)>
|
---|
36 |
|
---|
37 | =head1 COPYRIGHT
|
---|
38 |
|
---|
39 | Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
|
---|
40 |
|
---|
41 | Licensed under the Apache License 2.0 (the "License"). You may not use
|
---|
42 | this file except in compliance with the License. You can obtain a copy
|
---|
43 | in the file LICENSE in the source distribution or at
|
---|
44 | L<https://www.openssl.org/source/license.html>.
|
---|
45 |
|
---|
46 | =cut
|
---|