Artifact c3c9570f449cca51677fc333adb7313c80436b267b05eee297182b56e750e432:
- File build/argon2/patches/argon2-20181109-monocypherblock.diff — part of check-in [4cee3b7e59] at 2019-01-16 21:38:45 on branch trunk — Moved some of the argon2 patches to a patch file (user: rkeene, size: 408) [annotate] [blame] [check-ins using]
--- a/core.h +++ b/core.h @@ -49,7 +49,9 @@ * Memory blocks can be copied, XORed. Internal words can be accessed by [] (no * bounds checking). */ -typedef struct block_ { uint64_t v[ARGON2_QWORDS_IN_BLOCK]; } block; +#ifndef TCL_NANO_AMALGAMATION +typedef struct block_ { uint64_t a[ARGON2_QWORDS_IN_BLOCK]; } block; +#endif /*****************Functions that work with the block******************/