mdc2.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*
  2. * Copyright 1995-2016 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. DEPRECATEDIN_3_0(int MDC2_Init(MDC2_CTX *c))
  34. DEPRECATEDIN_3_0(int MDC2_Update(MDC2_CTX *c, const unsigned char *data,
  35. size_t len))
  36. DEPRECATEDIN_3_0(int MDC2_Final(unsigned char *md, MDC2_CTX *c))
  37. DEPRECATEDIN_3_0(unsigned char *MDC2(const unsigned char *d, size_t n,
  38. unsigned char *md))
  39. # ifdef __cplusplus
  40. }
  41. # endif
  42. # endif
  43. #endif