#include "crypto/common.h"
#include "crypto/chacha20.h"
#include <string.h>
Go to the source code of this file.
◆ QUARTERROUND
| #define QUARTERROUND |
( |
|
a, |
|
|
|
b, |
|
|
|
c, |
|
|
|
d |
|
) |
| |
Value: a +=
b; d = rotl32(d ^ a, 16); \
c += d;
b = rotl32(
b ^ c, 12); \
a +=
b; d = rotl32(d ^ a, 8); \
c += d;
b = rotl32(
b ^ c, 7);
Definition at line 15 of file chacha20.cpp.