10 #include <openssl/evp.h>
12 const EVP_MD *EVP_md5(void);
16 MD5 is a cryptographic hash function standardized in RFC 1321 and designed by
19 The CMU Software Engieneering Institute considers MD5 unsuitable for further
20 use since its security has been severely compromised.
26 The MD5 algorithm which produces a 128-bit output from a given input.
30 A hash algorithm of SSL v3 that combines MD5 with SHA-1 as decirbed in RFC
33 WARNING: this algorithm is not intended for non-SSL usage.
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.
55 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
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>.