EVP_mdc2.pod 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. =pod
  2. =head1 NAME
  3. EVP_mdc2
  4. - MDC-2 For EVP
  5. =head1 SYNOPSIS
  6. #include <openssl/evp.h>
  7. const EVP_MD *EVP_mdc2(void);
  8. =head1 DESCRIPTION
  9. MDC-2 (Modification Detection Code 2 or Meyer-Schilling) is a cryptographic
  10. hash function based on a block cipher.
  11. =over 4
  12. =item EVP_mdc2()
  13. The MDC-2DES algorithm of using MDC-2 with the DES block cipher. It produces a
  14. 128-bit output from a given input.
  15. =back
  16. =head1 RETURN VALUES
  17. These functions return a B<EVP_MD> structure that contains the
  18. implementation of the symmetric cipher. See L<EVP_MD_meth_new(3)> for
  19. details of the B<EVP_MD> structure.
  20. =head1 CONFORMING TO
  21. ISO/IEC 10118-2:2000 Hash-Function 2, with DES as the underlying block cipher.
  22. =head1 SEE ALSO
  23. L<evp(7)>,
  24. L<EVP_DigestInit(3)>
  25. =head1 COPYRIGHT
  26. Copyright 2017 The OpenSSL Project Authors. All Rights Reserved.
  27. Licensed under the OpenSSL license (the "License"). You may not use
  28. this file except in compliance with the License. You can obtain a copy
  29. in the file LICENSE in the source distribution or at
  30. L<https://www.openssl.org/source/license.html>.
  31. =cut