sha3.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /* sha3.h
  2. *
  3. * Copyright (C) 2006-2022 wolfSSL Inc.
  4. *
  5. * This file is part of wolfSSL.
  6. *
  7. * wolfSSL is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * wolfSSL is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1335, USA
  20. */
  21. #ifndef WOLF_CRYPT_SHA3_H
  22. #define WOLF_CRYPT_SHA3_H
  23. #include <wolfssl/wolfcrypt/types.h>
  24. #ifdef WOLFSSL_SHA3
  25. #ifdef HAVE_FIPS
  26. /* for fips @wc_fips */
  27. #include <wolfssl/wolfcrypt/fips.h>
  28. #endif
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32. #ifdef WOLFSSL_ASYNC_CRYPT
  33. #include <wolfssl/wolfcrypt/async.h>
  34. #endif
  35. /* in bytes */
  36. enum {
  37. WC_SHA3_224 = WC_HASH_TYPE_SHA3_224,
  38. WC_SHA3_224_DIGEST_SIZE = 28,
  39. WC_SHA3_224_COUNT = 18,
  40. WC_SHA3_256 = WC_HASH_TYPE_SHA3_256,
  41. WC_SHA3_256_DIGEST_SIZE = 32,
  42. WC_SHA3_256_COUNT = 17,
  43. WC_SHA3_384 = WC_HASH_TYPE_SHA3_384,
  44. WC_SHA3_384_DIGEST_SIZE = 48,
  45. WC_SHA3_384_COUNT = 13,
  46. WC_SHA3_512 = WC_HASH_TYPE_SHA3_512,
  47. WC_SHA3_512_DIGEST_SIZE = 64,
  48. WC_SHA3_512_COUNT = 9,
  49. #ifndef WOLFSSL_NO_SHAKE256
  50. WC_SHAKE128 = WC_HASH_TYPE_SHAKE128,
  51. WC_SHAKE256 = WC_HASH_TYPE_SHAKE256,
  52. #endif
  53. #if !defined(HAVE_SELFTEST) || \
  54. defined(HAVE_SELFTEST_VERSION) && (HAVE_SELFTEST_VERSION >= 2)
  55. /* These values are used for HMAC, not SHA-3 directly.
  56. * They come from from FIPS PUB 202. */
  57. WC_SHA3_224_BLOCK_SIZE = 144,
  58. WC_SHA3_256_BLOCK_SIZE = 136,
  59. WC_SHA3_384_BLOCK_SIZE = 104,
  60. WC_SHA3_512_BLOCK_SIZE = 72,
  61. #endif
  62. };
  63. #ifndef NO_OLD_WC_NAMES
  64. #define SHA3_224 WC_SHA3_224
  65. #define SHA3_224_DIGEST_SIZE WC_SHA3_224_DIGEST_SIZE
  66. #define SHA3_256 WC_SHA3_256
  67. #define SHA3_256_DIGEST_SIZE WC_SHA3_256_DIGEST_SIZE
  68. #define SHA3_384 WC_SHA3_384
  69. #define SHA3_384_DIGEST_SIZE WC_SHA3_384_DIGEST_SIZE
  70. #define SHA3_512 WC_SHA3_512
  71. #define SHA3_512_DIGEST_SIZE WC_SHA3_512_DIGEST_SIZE
  72. #define Sha3 wc_Sha3
  73. #ifndef WOLFSSL_NO_SHAKE256
  74. #define SHAKE128 WC_SHAKE128
  75. #define SHAKE256 WC_SHAKE256
  76. #endif
  77. #endif
  78. #ifdef WOLFSSL_XILINX_CRYPT
  79. #include "wolfssl/wolfcrypt/port/xilinx/xil-sha3.h"
  80. #elif defined(WOLFSSL_AFALG_XILINX_SHA3)
  81. #include <wolfssl/wolfcrypt/port/af_alg/afalg_hash.h>
  82. #else
  83. /* Sha3 digest */
  84. struct wc_Sha3 {
  85. /* State data that is processed for each block. */
  86. word64 s[25];
  87. /* Unprocessed message data. */
  88. byte t[200];
  89. /* Index into unprocessed data to place next message byte. */
  90. byte i;
  91. void* heap;
  92. #ifdef WOLFSSL_ASYNC_CRYPT
  93. WC_ASYNC_DEV asyncDev;
  94. #endif /* WOLFSSL_ASYNC_CRYPT */
  95. #ifdef WOLFSSL_HASH_FLAGS
  96. word32 flags; /* enum wc_HashFlags in hash.h */
  97. #endif
  98. };
  99. #ifndef WC_SHA3_TYPE_DEFINED
  100. typedef struct wc_Sha3 wc_Sha3;
  101. #define WC_SHA3_TYPE_DEFINED
  102. #endif
  103. #endif
  104. #ifndef WOLFSSL_NO_SHAKE256
  105. typedef wc_Sha3 wc_Shake;
  106. #endif
  107. #if defined(WOLFSSL_ARMASM) && defined(WOLFSSL_ARMASM_CRYPTO_SHA3)
  108. WOLFSSL_LOCAL void BlockSha3(word64 *s);
  109. #endif
  110. WOLFSSL_API int wc_InitSha3_224(wc_Sha3* sha3, void* heap, int devId);
  111. WOLFSSL_API int wc_Sha3_224_Update(wc_Sha3* sha3, const byte* data, word32 len);
  112. WOLFSSL_API int wc_Sha3_224_Final(wc_Sha3* sha3, byte* hash);
  113. WOLFSSL_API void wc_Sha3_224_Free(wc_Sha3* sha3);
  114. WOLFSSL_API int wc_Sha3_224_GetHash(wc_Sha3* sha3, byte* hash);
  115. WOLFSSL_API int wc_Sha3_224_Copy(wc_Sha3* src, wc_Sha3* dst);
  116. WOLFSSL_API int wc_InitSha3_256(wc_Sha3* sha3, void* heap, int devId);
  117. WOLFSSL_API int wc_Sha3_256_Update(wc_Sha3* sha3, const byte* data, word32 len);
  118. WOLFSSL_API int wc_Sha3_256_Final(wc_Sha3* sha3, byte* hash);
  119. WOLFSSL_API void wc_Sha3_256_Free(wc_Sha3* sha3);
  120. WOLFSSL_API int wc_Sha3_256_GetHash(wc_Sha3* sha3, byte* hash);
  121. WOLFSSL_API int wc_Sha3_256_Copy(wc_Sha3* src, wc_Sha3* dst);
  122. WOLFSSL_API int wc_InitSha3_384(wc_Sha3* sha3, void* heap, int devId);
  123. WOLFSSL_API int wc_Sha3_384_Update(wc_Sha3* sha3, const byte* data, word32 len);
  124. WOLFSSL_API int wc_Sha3_384_Final(wc_Sha3* sha3, byte* hash);
  125. WOLFSSL_API void wc_Sha3_384_Free(wc_Sha3* sha3);
  126. WOLFSSL_API int wc_Sha3_384_GetHash(wc_Sha3* sha3, byte* hash);
  127. WOLFSSL_API int wc_Sha3_384_Copy(wc_Sha3* src, wc_Sha3* dst);
  128. WOLFSSL_API int wc_InitSha3_512(wc_Sha3* sha3, void* heap, int devId);
  129. WOLFSSL_API int wc_Sha3_512_Update(wc_Sha3* sha3, const byte* data, word32 len);
  130. WOLFSSL_API int wc_Sha3_512_Final(wc_Sha3* sha3, byte* hash);
  131. WOLFSSL_API void wc_Sha3_512_Free(wc_Sha3* sha3);
  132. WOLFSSL_API int wc_Sha3_512_GetHash(wc_Sha3* sha3, byte* hash);
  133. WOLFSSL_API int wc_Sha3_512_Copy(wc_Sha3* src, wc_Sha3* dst);
  134. #ifndef WOLFSSL_NO_SHAKE256
  135. WOLFSSL_API int wc_InitShake256(wc_Shake* shake, void* heap, int devId);
  136. WOLFSSL_API int wc_Shake256_Update(wc_Shake* shake, const byte* data, word32 len);
  137. WOLFSSL_API int wc_Shake256_Final(wc_Shake* shake, byte* hash, word32 hashLen);
  138. WOLFSSL_API void wc_Shake256_Free(wc_Shake* shake);
  139. WOLFSSL_API int wc_Shake256_Copy(wc_Shake* src, wc_Sha3* dst);
  140. #endif
  141. #ifdef WOLFSSL_HASH_FLAGS
  142. WOLFSSL_API int wc_Sha3_SetFlags(wc_Sha3* sha3, word32 flags);
  143. WOLFSSL_API int wc_Sha3_GetFlags(wc_Sha3* sha3, word32* flags);
  144. #endif
  145. #ifdef __cplusplus
  146. } /* extern "C" */
  147. #endif
  148. #endif /* WOLFSSL_SHA3 */
  149. #endif /* WOLF_CRYPT_SHA3_H */