Sha256: 45ae4f719b3a6e627ac075b78541fff13d54052fb982812f4cc733f34f836c89
Contents?: true
Size: 1.36 KB
Versions: 3
Compression:
Stored size: 1.36 KB
Contents
/* The eXtended Keccak Code Package (XKCP) https://github.com/XKCP/XKCP The Xoodoo permutation, designed by Joan Daemen, Seth Hoffert, Gilles Van Assche and Ronny Van Keer. Implementation by Ronny Van Keer, hereby denoted as "the implementer". For more information, feedback or questions, please refer to the Keccak Team website: https://keccak.team/ To the extent possible under law, the implementer has waived all copyright and related or neighboring rights to the source code in this file. http://creativecommons.org/publicdomain/zero/1.0/ --- This file implements Xoodoo×4 in a PlSnP-compatible way. Please refer to PlSnP-documentation.h for more details. This implementation comes with Xoodoo-times4-SnP.h in the same folder. Please refer to LowLevel.build for the exact list of other files it must be combined with. */ #include "Xoodoo-SnP.h" #define prefix Xoodootimes4 #define PlSnP_baseParallelism 1 #define PlSnP_targetParallelism 4 #define SnP_laneLengthInBytes 4 #define SnP Xoodoo #define SnP_Permute Xoodoo_Permute_6rounds #define SnP_Permute_12rounds Xoodoo_Permute_12rounds #define PlSnP_PermuteAll Xoodootimes4_PermuteAll_6rounds #define PlSnP_PermuteAll_12rounds Xoodootimes4_PermuteAll_12rounds #include "PlSnP-Fallback.inc"
Version data entries
3 entries across 3 versions & 1 rubygems