Sha256: 4f66348e523c4284585845d9263bf653dcd0be7ac66aa7cbd242b6a4a40b516e
Contents?: true
Size: 912 Bytes
Versions: 3
Compression:
Stored size: 912 Bytes
Contents
/* K12 based on the eXtended Keccak Code Package (XKCP) https://github.com/XKCP/XKCP KangarooTwelve, designed by Guido Bertoni, Joan Daemen, Michaël Peeters, Gilles Van Assche, Ronny Van Keer and Benoît Viguier. Implementation by Gilles Van Assche and 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/ */ #ifndef _align_h_ #define _align_h_ #ifdef ALIGN #undef ALIGN #endif #if defined(__GNUC__) #define ALIGN(x) __attribute__ ((aligned(x))) #elif defined(_MSC_VER) #define ALIGN(x) __declspec(align(x)) #elif defined(__ARMCC_VERSION) #define ALIGN(x) __align(x) #else #define ALIGN(x) #endif #endif
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
sleeping_kangaroo12-0.0.6 | ext/k12/lib/align.h |
sleeping_kangaroo12-0.0.5 | ext/k12/lib/align.h |
sleeping_kangaroo12-0.0.4 | ext/k12/lib/align.h |