You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

mdc2.h 1.3 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. {
  23. #endif
  24. #define MDC2_DIGEST_LENGTH 16
  25. #if !defined(OPENSSL_NO_DEPRECATED_3_0)
  26. #define MDC2_BLOCK 8
  27. typedef struct mdc2_ctx_st
  28. {
  29. unsigned int num;
  30. unsigned char data[MDC2_BLOCK];
  31. DES_cblock h, hh;
  32. unsigned int pad_type; /* either 1 or 2, default 1 */
  33. } MDC2_CTX;
  34. #endif
  35. #ifndef OPENSSL_NO_DEPRECATED_3_0
  36. OSSL_DEPRECATEDIN_3_0 int MDC2_Init(MDC2_CTX* c);
  37. OSSL_DEPRECATEDIN_3_0 int MDC2_Update(MDC2_CTX* c, const unsigned char* data, size_t len);
  38. OSSL_DEPRECATEDIN_3_0 int MDC2_Final(unsigned char* md, MDC2_CTX* c);
  39. OSSL_DEPRECATEDIN_3_0 unsigned char* MDC2(const unsigned char* d, size_t n, unsigned char* md);
  40. #endif
  41. #ifdef __cplusplus
  42. }
  43. #endif
  44. #endif
  45. #endif