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.

whrlpool.h 1.7 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. {
  23. #endif
  24. #define WHIRLPOOL_DIGEST_LENGTH (512 / 8)
  25. #if !defined(OPENSSL_NO_DEPRECATED_3_0)
  26. #define WHIRLPOOL_BBLOCK 512
  27. #define WHIRLPOOL_COUNTER (256 / 8)
  28. typedef struct
  29. {
  30. union
  31. {
  32. unsigned char c[WHIRLPOOL_DIGEST_LENGTH];
  33. /* double q is here to ensure 64-bit alignment */
  34. double q[WHIRLPOOL_DIGEST_LENGTH / sizeof(double)];
  35. } H;
  36. unsigned char data[WHIRLPOOL_BBLOCK / 8];
  37. unsigned int bitoff;
  38. size_t bitlen[WHIRLPOOL_COUNTER / sizeof(size_t)];
  39. } WHIRLPOOL_CTX;
  40. #endif
  41. #ifndef OPENSSL_NO_DEPRECATED_3_0
  42. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Init(WHIRLPOOL_CTX* c);
  43. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Update(WHIRLPOOL_CTX* c, const void* inp, size_t bytes);
  44. OSSL_DEPRECATEDIN_3_0 void WHIRLPOOL_BitUpdate(WHIRLPOOL_CTX* c, const void* inp, size_t bits);
  45. OSSL_DEPRECATEDIN_3_0 int WHIRLPOOL_Final(unsigned char* md, WHIRLPOOL_CTX* c);
  46. OSSL_DEPRECATEDIN_3_0 unsigned char* WHIRLPOOL(const void* inp, size_t bytes, unsigned char* md);
  47. #endif
  48. #ifdef __cplusplus
  49. }
  50. #endif
  51. #endif
  52. #endif