Blame doc/man3/EVP_sha1.pod

Packit c4476c
=pod
Packit c4476c
Packit c4476c
=head1 NAME
Packit c4476c
Packit c4476c
EVP_sha1
Packit c4476c
- SHA-1 For EVP
Packit c4476c
Packit c4476c
=head1 SYNOPSIS
Packit c4476c
Packit c4476c
 #include <openssl/evp.h>
Packit c4476c
Packit c4476c
 const EVP_MD *EVP_sha1(void);
Packit c4476c
Packit c4476c
=head1 DESCRIPTION
Packit c4476c
Packit c4476c
SHA-1 (Secure Hash Algorithm 1) is a cryptographic hash function standardized
Packit c4476c
in NIST FIPS 180-4. The algorithm was designed by the United States National
Packit c4476c
Security Agency and initially published in 1995.
Packit c4476c
Packit c4476c
=over 4
Packit c4476c
Packit c4476c
=item EVP_sha1()
Packit c4476c
Packit c4476c
The SHA-1 algorithm which produces a 160-bit output from a given input.
Packit c4476c
Packit c4476c
=back
Packit c4476c
Packit c4476c
Packit c4476c
=head1 RETURN VALUES
Packit c4476c
Packit c4476c
These functions return a B<EVP_MD> structure that contains the
Packit c4476c
implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
Packit c4476c
details of the B<EVP_MD> structure.
Packit c4476c
Packit c4476c
=head1 CONFORMING TO
Packit c4476c
Packit c4476c
NIST FIPS 180-4.
Packit c4476c
Packit c4476c
=head1 SEE ALSO
Packit c4476c
Packit c4476c
L<evp(7)>,
Packit c4476c
L<EVP_DigestInit(3)>
Packit c4476c
Packit c4476c
=head1 COPYRIGHT
Packit c4476c
Packit c4476c
Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
Packit c4476c
Packit c4476c
Licensed under the OpenSSL license (the "License").  You may not use
Packit c4476c
this file except in compliance with the License.  You can obtain a copy
Packit c4476c
in the file LICENSE in the source distribution or at
Packit c4476c
L<https://www.openssl.org/source/license.html>.
Packit c4476c
Packit c4476c
=cut
Packit c4476c