Searched refs:GG (Results 1 – 2 of 2) sorted by relevance
/NetX-Duo-v6.2.1/common/src/ |
D | nx_md5.c | 71 #define GG(a, b, c, d, x, s, ac) { \ macro 466 GG(a, b, c, d, x[ 1], 5, 0xf61e2562UL); in _nx_md5_process_buffer() 467 GG(d, a, b, c, x[ 6], 9, 0xc040b340UL); in _nx_md5_process_buffer() 468 GG(c, d, a, b, x[11], 14, 0x265e5a51UL); in _nx_md5_process_buffer() 469 GG(b, c, d, a, x[ 0], 20, 0xe9b6c7aaUL); in _nx_md5_process_buffer() 470 GG(a, b, c, d, x[ 5], 5, 0xd62f105dUL); in _nx_md5_process_buffer() 471 GG(d, a, b, c, x[10], 9, 0x02441453UL); in _nx_md5_process_buffer() 472 GG(c, d, a, b, x[15], 14, 0xd8a1e681UL); in _nx_md5_process_buffer() 473 GG(b, c, d, a, x[ 4], 20, 0xe7d3fbc8UL); in _nx_md5_process_buffer() 474 GG(a, b, c, d, x[ 9], 5, 0x21e1cde6UL); in _nx_md5_process_buffer() [all …]
|
/NetX-Duo-v6.2.1/crypto_libraries/src/ |
D | nx_crypto_md5.c | 72 #define GG(a, b, c, d, x, s, ac) { \ macro 483 GG(a, b, c, d, x[1], 5, 0xf61e2562UL); in _nx_crypto_md5_process_buffer() 484 GG(d, a, b, c, x[6], 9, 0xc040b340UL); in _nx_crypto_md5_process_buffer() 485 GG(c, d, a, b, x[11], 14, 0x265e5a51UL); in _nx_crypto_md5_process_buffer() 486 GG(b, c, d, a, x[0], 20, 0xe9b6c7aaUL); in _nx_crypto_md5_process_buffer() 487 GG(a, b, c, d, x[5], 5, 0xd62f105dUL); in _nx_crypto_md5_process_buffer() 488 GG(d, a, b, c, x[10], 9, 0x02441453UL); in _nx_crypto_md5_process_buffer() 489 GG(c, d, a, b, x[15], 14, 0xd8a1e681UL); in _nx_crypto_md5_process_buffer() 490 GG(b, c, d, a, x[4], 20, 0xe7d3fbc8UL); in _nx_crypto_md5_process_buffer() 491 GG(a, b, c, d, x[9], 5, 0x21e1cde6UL); in _nx_crypto_md5_process_buffer() [all …]
|