whrlpool.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * Copyright 2005-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_WHRLPOOL_H
  10. #define OPENSSL_WHRLPOOL_H
  11. #pragma once
  12. #include <openssl/macros.h>
  13. #ifndef OPENSSL_NO_DEPRECATED_3_0
  14. #define HEADER_WHRLPOOL_H
  15. #endif
  16. #include <openssl/opensslconf.h>
  17. #ifndef OPENSSL_NO_WHIRLPOOL
  18. #include <openssl/e_os2.h>
  19. #include <stddef.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. #define WHIRLPOOL_DIGEST_LENGTH (512 / 8)
  24. #if !defined(OPENSSL_NO_DEPRECATED_3_0)
  25. #define WHIRLPOOL_BBLOCK 512
  26. #define WHIRLPOOL_COUNTER (256 / 8)
  27. typedef struct {
  28. union {
  29. unsigned char c[WHIRLPOOL_DIGEST_LENGTH];
  30. /* double q is here to ensure 64-bit alignment */
  31. double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)];
  32. } H;
  33. unsigned char data[WHIRLPOOL_BBLOCK / 8];
  34. unsigned int bitoff;
  35. size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)];
  36. } WHIRLPOOL_CTX;
  37. #endif
  38. #ifndef OPENSSL_NO_DEPRECATED_3_0
  39. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Init(WHIRLPOOL_CTX *c);
  40. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Update(WHIRLPOOL_CTX *c,
  41. const void *inp, size_t bytes);
  42. OSSL_DEPRECATEDIN_3_0 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX *c,
  43. const void *inp, size_t bits);
  44. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Final(unsigned char *md, WHIRLPOOL_CTX *c);
  45. OSSL_DEPRECATEDIN_3_0 unsigned char *WHIRLPOOL(const void *inp, size_t bytes,
  46. unsigned char *md);
  47. #endif
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif
  52. #endif