Sha256: 4df95adfcebdd793103c91a85891adb2da38f8e04b1a097ea152b541c47f17b1
Contents?: true
Size: 695 Bytes
Versions: 3
Compression:
Stored size: 695 Bytes
Contents
#ifndef core_hchacha20_H #define core_hchacha20_H #include <stdint.h> #include <stdlib.h> #include <string.h> #define U8C(v) (v##U) #define U32C(v) (v##U) #define U8V(v) ((uint8_t)(v) & U8C(0xFF)) #define U32V(v) ((uint32_t)(v) & U32C(0xFFFFFFFF)) #define ROTL32(v, n) (U32V((v) << (n)) | ((v) >> (32 - (n)))) #define ROTATE(v, c) (ROTL32(v, c)) #define XOR(v, w) ((v) ^ (w)) #define PLUS(v, w) (U32V((v) + (w))) #define QUARTERROUND(a, b, c, d) \ do { \ a = PLUS(a, b); d = ROTATE(XOR(d, a), 16); \ c = PLUS(c, d); b = ROTATE(XOR(b, c), 12); \ a = PLUS(a, b); d = ROTATE(XOR(d, a), 8); \ c = PLUS(c, d); b = ROTATE(XOR(b, c), 7); \ } while(0) #endif
Version data entries
3 entries across 3 versions & 1 rubygems