mdc2.h 1.1 KB

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