Fabcoin Core  0.16.2
P2P Digital Currency
Macros
chacha.cpp File Reference
#include "pch.h"
#include "config.h"
#include "chacha.h"
#include "argnames.h"
#include "misc.h"
#include "cpu.h"
Include dependency graph for chacha.cpp:

Go to the source code of this file.

Macros

#define CHACHA_QUARTER_ROUND(a, b, c, d)
 
#define CHACHA_OUTPUT(x)
 

Macro Definition Documentation

#define CHACHA_OUTPUT (   x)
#define CHACHA_QUARTER_ROUND (   a,
  b,
  c,
  d 
)
Value:
a += b; d ^= a; d = rotlFixed<word32>(d,16); \
c += d; b ^= c; b = rotlFixed<word32>(b,12); \
a += b; d ^= a; d = rotlFixed<word32>(d, 8); \
c += d; b ^= c; b = rotlFixed<word32>(b, 7);
#define c(i)
#define a(i)
#define b(i, j)
#define d(i)
Definition: sha.cpp:732

Definition at line 15 of file chacha.cpp.