md4.h 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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_MD4_H
  10. # define OPENSSL_MD4_H
  11. # pragma once
  12. # include <openssl/macros.h>
  13. # if !OPENSSL_API_3
  14. # define HEADER_MD4_H
  15. # endif
  16. # include <openssl/opensslconf.h>
  17. # ifndef OPENSSL_NO_MD4
  18. # include <openssl/e_os2.h>
  19. # include <stddef.h>
  20. # ifdef __cplusplus
  21. extern "C" {
  22. # endif
  23. /*-
  24. * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  25. * ! MD4_LONG has to be at least 32 bits wide. !
  26. * !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  27. */
  28. # define MD4_LONG unsigned int
  29. # define MD4_CBLOCK 64
  30. # define MD4_LBLOCK (MD4_CBLOCK/4)
  31. # define MD4_DIGEST_LENGTH 16
  32. typedef struct MD4state_st {
  33. MD4_LONG A, B, C, D;
  34. MD4_LONG Nl, Nh;
  35. MD4_LONG data[MD4_LBLOCK];
  36. unsigned int num;
  37. } MD4_CTX;
  38. int MD4_Init(MD4_CTX *c);
  39. int MD4_Update(MD4_CTX *c, const void *data, size_t len);
  40. int MD4_Final(unsigned char *md, MD4_CTX *c);
  41. unsigned char *MD4(const unsigned char *d, size_t n, unsigned char *md);
  42. void MD4_Transform(MD4_CTX *c, const unsigned char *b);
  43. # ifdef __cplusplus
  44. }
  45. # endif
  46. # endif
  47. #endif