mdc2.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright 1995-2020 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. #ifndef OPENSSL_MDC2_H
  10. # define OPENSSL_MDC2_H
  11. # pragma once
  12. # include <openssl/macros.h>
  13. # ifndef OPENSSL_NO_DEPRECATED_3_0
  14. # define HEADER_MDC2_H
  15. # endif
  16. # include <openssl/opensslconf.h>
  17. # ifndef OPENSSL_NO_MDC2
  18. # include <stdlib.h>
  19. # include <openssl/des.h>
  20. # ifdef __cplusplus
  21. extern "C" {
  22. # endif
  23. # define MDC2_DIGEST_LENGTH 16
  24. # if !defined(OPENSSL_NO_DEPRECATED_3_0)
  25. # define MDC2_BLOCK 8
  26. typedef struct mdc2_ctx_st {
  27. unsigned int num;
  28. unsigned char data[MDC2_BLOCK];
  29. DES_cblock h, hh;
  30. unsigned int pad_type; /* either 1 or 2, default 1 */
  31. } MDC2_CTX;
  32. # endif
  33. # ifndef OPENSSL_NO_DEPRECATED_3_0
  34. OSSL_DEPRECATEDIN_3_0 int MDC2_Init(MDC2_CTX *c);
  35. OSSL_DEPRECATEDIN_3_0 int MDC2_Update(MDC2_CTX *c, const unsigned char *data,
  36. size_t len);
  37. OSSL_DEPRECATEDIN_3_0 int MDC2_Final(unsigned char *md, MDC2_CTX *c);
  38. OSSL_DEPRECATEDIN_3_0 unsigned char *MDC2(const unsigned char *d, size_t n,
  39. unsigned char *md);
  40. # endif
  41. # ifdef __cplusplus
  42. }
  43. # endif
  44. # endif
  45. #endif