Remove extra `the` in SSL_SESSION_set1_id.pod
[openssl.git] / doc / man3 / EVP_sha224.pod
1 =pod
2
3 =head1 NAME
4
5 EVP_sha224,
6 EVP_sha256,
7 EVP_sha384,
8 EVP_sha512
9 - SHA-2 For EVP
10
11 =head1 SYNOPSIS
12
13  #include <openssl/evp.h>
14
15  const EVP_MD *EVP_sha224(void);
16  const EVP_MD *EVP_sha256(void);
17  const EVP_MD *EVP_sha384(void);
18  const EVP_MD *EVP_sha512(void);
19
20 =head1 DESCRIPTION
21
22 SHA-2 (Secure Hash Algorithm 2) is a family of cryptographic hash functions
23 standardized in NIST FIPS 180-4, first published in 2001.
24
25 =over 4
26
27 =item EVP_sha224(),
28 EVP_sha256(),
29 EVP_sha384(),
30 EVP_sha512()
31
32 The SHA-2 SHA-224, SHA-256, SHA-384, SHA-512 algorithms respectively, which
33 generates 224, 256, 384 and 512 bits of output from a given input.
34
35 =back
36
37
38 =head1 RETURN VALUES
39
40 These functions return a B<EVP_MD> structure that contains the
41 implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
42 details of the B<EVP_MD> structure.
43
44 =head1 CONFORMING TO
45
46 NIST FIPS 180-4.
47
48 =head1 SEE ALSO
49
50 L<evp(7)>,
51 L<EVP_DigestInit(3)>
52
53 =head1 COPYRIGHT
54
55 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
56
57 Licensed under the OpenSSL license (the "License").  You may not use
58 this file except in compliance with the License.  You can obtain a copy
59 in the file LICENSE in the source distribution or at
60 L<https://www.openssl.org/source/license.html>.
61
62 =cut
63