sha256_arm.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #include "cpusupport.h"
  2. #ifdef CPUSUPPORT_ARM_SHA256
  3. /**
  4. * CPUSUPPORT CFLAGS: ARM_SHA256
  5. */
  6. #include <assert.h>
  7. #include <stddef.h>
  8. #include <stdint.h>
  9. #ifdef __ARM_NEON
  10. #include <arm_neon.h>
  11. #endif
  12. #include "sha256_arm.h"
  13. /* SHA256 round constants. */
  14. static const uint32_t Krnd[64] = {
  15. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  16. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  17. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  18. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  19. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  20. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  21. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  22. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  23. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  24. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  25. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  26. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  27. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  28. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  29. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  30. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  31. };
  32. /* Round computation. */
  33. #define RND4(S, M, Kp) do { \
  34. uint32x4_t S0_step; \
  35. uint32x4_t Wk; \
  36. S0_step = S[0]; \
  37. Wk = vaddq_u32(M, vld1q_u32(Kp)); \
  38. S[0] = vsha256hq_u32(S[0], S[1], Wk); \
  39. S[1] = vsha256h2q_u32(S[1], S0_step, Wk); \
  40. } while (0)
  41. /* Message schedule computation */
  42. #define MSG4(X0, X1, X2, X3) \
  43. X0 = vsha256su1q_u32(vsha256su0q_u32(X0, X1), X2, X3)
  44. /**
  45. * SHA256_Transform_arm(state, block, W, S):
  46. * Compute the SHA256 block compression function, transforming ${state} using
  47. * the data in ${block}. This implementation uses ARM SHA256 instructions,
  48. * and should only be used if _SHA256 is defined and cpusupport_arm_sha256()
  49. * returns nonzero. The arrays W and S may be filled with sensitive data, and
  50. * should be cleared by the callee.
  51. */
  52. #ifdef POSIXFAIL_ABSTRACT_DECLARATOR
  53. void
  54. SHA256_Transform_arm(uint32_t state[8], const uint8_t block[64])
  55. #else
  56. void
  57. SHA256_Transform_arm(uint32_t state[static restrict 8],
  58. const uint8_t block[static restrict 64])
  59. #endif
  60. {
  61. uint32x4_t Y[4];
  62. uint32x4_t S[2];
  63. uint32x4_t _state[2];
  64. int i;
  65. /* 1. Prepare the first part of the message schedule W. */
  66. Y[0] = vreinterpretq_u32_u8(vrev32q_u8(vld1q_u8(&block[0])));
  67. Y[1] = vreinterpretq_u32_u8(vrev32q_u8(vld1q_u8(&block[16])));
  68. Y[2] = vreinterpretq_u32_u8(vrev32q_u8(vld1q_u8(&block[32])));
  69. Y[3] = vreinterpretq_u32_u8(vrev32q_u8(vld1q_u8(&block[48])));
  70. /* 2. Initialize working variables. */
  71. S[0] = _state[0] = vld1q_u32(&state[0]);
  72. S[1] = _state[1] = vld1q_u32(&state[4]);
  73. /* 3. Mix. */
  74. for (i = 0; i < 64; i += 16) {
  75. RND4(S, Y[0], &Krnd[i + 0]);
  76. RND4(S, Y[1], &Krnd[i + 4]);
  77. RND4(S, Y[2], &Krnd[i + 8]);
  78. RND4(S, Y[3], &Krnd[i + 12]);
  79. if (i == 48)
  80. break;
  81. MSG4(Y[0], Y[1], Y[2], Y[3]);
  82. MSG4(Y[1], Y[2], Y[3], Y[0]);
  83. MSG4(Y[2], Y[3], Y[0], Y[1]);
  84. MSG4(Y[3], Y[0], Y[1], Y[2]);
  85. }
  86. /* 4. Mix local working variables into global state. */
  87. vst1q_u32(&state[0], vaddq_u32(_state[0], S[0]));
  88. vst1q_u32(&state[4], vaddq_u32(_state[1], S[1]));
  89. }
  90. #endif /* CPUSUPPORT_ARM_SHA256 */