Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SHA512T2 (0.05 sec)

  1. lib/fips140/v1.0.0-c2097c7c.zip

    (y AND z) // = ((y XOR z) AND x) XOR (y AND z) #define SHA512T2(a, b, c) \ ROR $28, a, X6; \ ROR $34, a, X7; \ ROR $39, a, X8; \ XOR X7, X6; \ XOR b, c, X9; \ AND b, c, X7; \ AND a, X9; \ XOR X8, X6; \ XOR X7, X9; \ ADD X9, X6 // Calculate T1 and T2, then e = d + T1 and a = T1 + T2. // The values for e and a are stored in d and h, ready for rotation. #define SHA512ROUND(index, a, b, c, d, e, f, g, h) \ SHA512T1(index, e, f, g, h); \ SHA512T2(a, b, c); \ MOV X6, h; \ ADD X5, d; \ ADD X5, h #define...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Sep 25 19:53:19 UTC 2025
    - 642.7K bytes
    - Viewed (0)
  2. lib/fips140/v1.1.0-rc1.zip

    (y AND z) // = ((y XOR z) AND x) XOR (y AND z) #define SHA512T2(a, b, c) \ ROR $28, a, X6; \ ROR $34, a, X7; \ ROR $39, a, X8; \ XOR X7, X6; \ XOR b, c, X9; \ AND b, c, X7; \ AND a, X9; \ XOR X8, X6; \ XOR X7, X9; \ ADD X9, X6 // Calculate T1 and T2, then e = d + T1 and a = T1 + T2. // The values for e and a are stored in d and h, ready for rotation. #define SHA512ROUND(index, a, b, c, d, e, f, g, h) \ SHA512T1(index, e, f, g, h); \ SHA512T2(a, b, c); \ ADD X5, d; \ ADD X6, X5, h #define SHA512ROUND0(index,...
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Thu Dec 11 16:27:41 UTC 2025
    - 663K bytes
    - Viewed (0)
Back to top