1EVP_WHIRLPOOL(3ossl) OpenSSL EVP_WHIRLPOOL(3ossl)
2
3
4
6 EVP_whirlpool - WHIRLPOOL For EVP
7
9 #include <openssl/evp.h>
10
11 const EVP_MD *EVP_whirlpool(void);
12
14 WHIRLPOOL is a cryptographic hash function standardized in ISO/IEC
15 10118-3:2004 designed by Vincent Rijmen and Paulo S. L. M. Barreto.
16 This implementation is only available with the legacy provider.
17
18 EVP_whirlpool()
19 The WHIRLPOOL algorithm that produces a message digest of 512-bits
20 from a given input.
21
23 These functions return a EVP_MD structure that contains the
24 implementation of the message digest. See EVP_MD_meth_new(3) for
25 details of the EVP_MD structure.
26
28 ISO/IEC 10118-3:2004.
29
31 evp(7), provider(7), EVP_DigestInit(3)
32
34 Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
35
36 Licensed under the Apache License 2.0 (the "License"). You may not use
37 this file except in compliance with the License. You can obtain a copy
38 in the file LICENSE in the source distribution or at
39 <https://www.openssl.org/source/license.html>.
40
41
42
433.0.5 2022-11-01 EVP_WHIRLPOOL(3ossl)