xref: /netbsd-src/crypto/external/bsd/openssl.old/dist/doc/man3/EVP_md2.pod (revision 4724848cf0da353df257f730694b7882798e5daf)
1*4724848cSchristos=pod
2*4724848cSchristos
3*4724848cSchristos=head1 NAME
4*4724848cSchristos
5*4724848cSchristosEVP_md2
6*4724848cSchristos- MD2 For EVP
7*4724848cSchristos
8*4724848cSchristos=head1 SYNOPSIS
9*4724848cSchristos
10*4724848cSchristos #include <openssl/evp.h>
11*4724848cSchristos
12*4724848cSchristos const EVP_MD *EVP_md2(void);
13*4724848cSchristos
14*4724848cSchristos=head1 DESCRIPTION
15*4724848cSchristos
16*4724848cSchristosMD2 is a cryptographic hash function standardized in RFC 1319 and designed by
17*4724848cSchristosRonald Rivest.
18*4724848cSchristos
19*4724848cSchristos=over 4
20*4724848cSchristos
21*4724848cSchristos=item EVP_md2()
22*4724848cSchristos
23*4724848cSchristosThe MD2 algorithm which produces a 128-bit output from a given input.
24*4724848cSchristos
25*4724848cSchristos=back
26*4724848cSchristos
27*4724848cSchristos
28*4724848cSchristos=head1 RETURN VALUES
29*4724848cSchristos
30*4724848cSchristosThese functions return a B<EVP_MD> structure that contains the
31*4724848cSchristosimplementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
32*4724848cSchristosdetails of the B<EVP_MD> structure.
33*4724848cSchristos
34*4724848cSchristos=head1 CONFORMING TO
35*4724848cSchristos
36*4724848cSchristosIETF RFC 1319.
37*4724848cSchristos
38*4724848cSchristos=head1 SEE ALSO
39*4724848cSchristos
40*4724848cSchristosL<evp(7)>,
41*4724848cSchristosL<EVP_DigestInit(3)>
42*4724848cSchristos
43*4724848cSchristos=head1 COPYRIGHT
44*4724848cSchristos
45*4724848cSchristosCopyright 2017 The OpenSSL Project Authors. All Rights Reserved.
46*4724848cSchristos
47*4724848cSchristosLicensed under the OpenSSL license (the "License").  You may not use
48*4724848cSchristosthis file except in compliance with the License.  You can obtain a copy
49*4724848cSchristosin the file LICENSE in the source distribution or at
50*4724848cSchristosL<https://www.openssl.org/source/license.html>.
51*4724848cSchristos
52*4724848cSchristos=cut
53*4724848cSchristos
54