1EVP_MDC2(3) OpenSSL EVP_MDC2(3)
2
3
4
6 EVP_mdc2 - MDC-2 For EVP
7
9 #include <openssl/evp.h>
10
11 const EVP_MD *EVP_mdc2(void);
12
14 MDC-2 (Modification Detection Code 2 or Meyer-Schilling) is a
15 cryptographic hash function based on a block cipher.
16
17 EVP_mdc2()
18 The MDC-2DES algorithm of using MDC-2 with the DES block cipher. It
19 produces a 128-bit output from a given input.
20
22 These functions return a EVP_MD structure that contains the
23 implementation of the symmetric cipher. See EVP_MD_meth_new(3) for
24 details of the EVP_MD structure.
25
27 ISO/IEC 10118-2:2000 Hash-Function 2, with DES as the underlying block
28 cipher.
29
31 evp(7), EVP_DigestInit(3)
32
34 Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
35
36 Licensed under the OpenSSL license (the "License"). You may not use
37 this file except in compliance with the License. You can obtain a copy
38 in the file LICENSE in the source distribution or at
39 <https://www.openssl.org/source/license.html>.
40
41
42
431.1.1q 2022-07-07 EVP_MDC2(3)