sm3_local.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * Copyright 2017-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. * Copyright 2017 Ribose Inc. All Rights Reserved.
  4. * Ported from Ribose contributions from Botan.
  5. *
  6. * Licensed under the Apache License 2.0 (the "License"). You may not use
  7. * this file except in compliance with the License. You can obtain a copy
  8. * in the file LICENSE in the source distribution or at
  9. * https://www.openssl.org/source/license.html
  10. */
  11. #include <string.h>
  12. #include "internal/sm3.h"
  13. #define DATA_ORDER_IS_BIG_ENDIAN
  14. #define HASH_LONG SM3_WORD
  15. #define HASH_CTX SM3_CTX
  16. #define HASH_CBLOCK SM3_CBLOCK
  17. #define HASH_UPDATE ossl_sm3_update
  18. #define HASH_TRANSFORM ossl_sm3_transform
  19. #define HASH_FINAL ossl_sm3_final
  20. #define HASH_MAKE_STRING(c, s) \
  21. do { \
  22. unsigned long ll; \
  23. ll=(c)->A; (void)HOST_l2c(ll, (s)); \
  24. ll=(c)->B; (void)HOST_l2c(ll, (s)); \
  25. ll=(c)->C; (void)HOST_l2c(ll, (s)); \
  26. ll=(c)->D; (void)HOST_l2c(ll, (s)); \
  27. ll=(c)->E; (void)HOST_l2c(ll, (s)); \
  28. ll=(c)->F; (void)HOST_l2c(ll, (s)); \
  29. ll=(c)->G; (void)HOST_l2c(ll, (s)); \
  30. ll=(c)->H; (void)HOST_l2c(ll, (s)); \
  31. } while (0)
  32. #if defined(OPENSSL_SM3_ASM)
  33. # if defined(__aarch64__) || defined(_M_ARM64)
  34. # include "crypto/arm_arch.h"
  35. # define HWSM3_CAPABLE (OPENSSL_armcap_P & ARMV8_SM3)
  36. void ossl_hwsm3_block_data_order(SM3_CTX *c, const void *p, size_t num);
  37. # endif
  38. # if defined(__riscv) && __riscv_xlen == 64
  39. # include "crypto/riscv_arch.h"
  40. # define HWSM3_CAPABLE 1
  41. void ossl_hwsm3_block_data_order(SM3_CTX *c, const void *p, size_t num);
  42. # endif
  43. #endif
  44. #if defined(HWSM3_CAPABLE)
  45. # define HASH_BLOCK_DATA_ORDER (HWSM3_CAPABLE ? ossl_hwsm3_block_data_order \
  46. : ossl_sm3_block_data_order)
  47. #else
  48. # define HASH_BLOCK_DATA_ORDER ossl_sm3_block_data_order
  49. #endif
  50. void ossl_sm3_block_data_order(SM3_CTX *c, const void *p, size_t num);
  51. void ossl_sm3_transform(SM3_CTX *c, const unsigned char *data);
  52. #include "crypto/md32_common.h"
  53. #ifndef PEDANTIC
  54. # if defined(__GNUC__) && __GNUC__>=2 && \
  55. !defined(OPENSSL_NO_ASM) && !defined(OPENSSL_NO_INLINE_ASM)
  56. # if defined(__riscv_zksh)
  57. # define P0(x) ({ MD32_REG_T ret; \
  58. asm ("sm3p0 %0, %1" \
  59. : "=r"(ret) \
  60. : "r"(x)); ret; })
  61. # define P1(x) ({ MD32_REG_T ret; \
  62. asm ("sm3p1 %0, %1" \
  63. : "=r"(ret) \
  64. : "r"(x)); ret; })
  65. # endif
  66. # endif
  67. #endif
  68. #ifndef P0
  69. # define P0(X) (X ^ ROTATE(X, 9) ^ ROTATE(X, 17))
  70. #endif
  71. #ifndef P1
  72. # define P1(X) (X ^ ROTATE(X, 15) ^ ROTATE(X, 23))
  73. #endif
  74. #define FF0(X,Y,Z) (X ^ Y ^ Z)
  75. #define GG0(X,Y,Z) (X ^ Y ^ Z)
  76. #define FF1(X,Y,Z) ((X & Y) | ((X | Y) & Z))
  77. #define GG1(X,Y,Z) ((Z ^ (X & (Y ^ Z))))
  78. #define EXPAND(W0,W7,W13,W3,W10) \
  79. (P1(W0 ^ W7 ^ ROTATE(W13, 15)) ^ ROTATE(W3, 7) ^ W10)
  80. #define RND(A, B, C, D, E, F, G, H, TJ, Wi, Wj, FF, GG) \
  81. do { \
  82. const SM3_WORD A12 = ROTATE(A, 12); \
  83. const SM3_WORD A12_SM = A12 + E + TJ; \
  84. const SM3_WORD SS1 = ROTATE(A12_SM, 7); \
  85. const SM3_WORD TT1 = FF(A, B, C) + D + (SS1 ^ A12) + (Wj); \
  86. const SM3_WORD TT2 = GG(E, F, G) + H + SS1 + Wi; \
  87. B = ROTATE(B, 9); \
  88. D = TT1; \
  89. F = ROTATE(F, 19); \
  90. H = P0(TT2); \
  91. } while(0)
  92. #define R1(A,B,C,D,E,F,G,H,TJ,Wi,Wj) \
  93. RND(A,B,C,D,E,F,G,H,TJ,Wi,Wj,FF0,GG0)
  94. #define R2(A,B,C,D,E,F,G,H,TJ,Wi,Wj) \
  95. RND(A,B,C,D,E,F,G,H,TJ,Wi,Wj,FF1,GG1)
  96. #define SM3_A 0x7380166fUL
  97. #define SM3_B 0x4914b2b9UL
  98. #define SM3_C 0x172442d7UL
  99. #define SM3_D 0xda8a0600UL
  100. #define SM3_E 0xa96f30bcUL
  101. #define SM3_F 0x163138aaUL
  102. #define SM3_G 0xe38dee4dUL
  103. #define SM3_H 0xb0fb0e4eUL