1EVP_MD5(3) OpenSSL EVP_MD5(3)
2
3
4
6 EVP_md5 - MD5 For EVP
7
9 #include <openssl/evp.h>
10
11 const EVP_MD *EVP_md5(void);
12
14 MD5 is a cryptographic hash function standardized in RFC 1321 and
15 designed by Ronald Rivest.
16
17 The CMU Software Engineering Institute considers MD5 unsuitable for
18 further use since its security has been severely compromised.
19
20 EVP_md5()
21 The MD5 algorithm which produces a 128-bit output from a given
22 input.
23
24 EVP_md5_sha1()
25 A hash algorithm of SSL v3 that combines MD5 with SHA-1 as decirbed
26 in RFC 6101.
27
28 WARNING: this algorithm is not intended for non-SSL usage.
29
31 These functions return a EVP_MD structure that contains the
32 implementation of the symmetric cipher. See EVP_MD_meth_new(3) for
33 details of the EVP_MD structure.
34
36 IETF RFC 1321.
37
39 evp(7), EVP_DigestInit(3)
40
42 Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
43
44 Licensed under the OpenSSL license (the "License"). You may not use
45 this file except in compliance with the License. You can obtain a copy
46 in the file LICENSE in the source distribution or at
47 <https://www.openssl.org/source/license.html>.
48
49
50
511.1.1 2018-09-11 EVP_MD5(3)