45 #define SKEIN_MODIFIER_WORDS ( 2)
47 #define SKEIN_256_STATE_WORDS ( 4)
48 #define SKEIN_512_STATE_WORDS ( 8)
49 #define SKEIN1024_STATE_WORDS (16)
50 #define SKEIN_MAX_STATE_WORDS (16)
52 #define SKEIN_256_STATE_BYTES ( 8*SKEIN_256_STATE_WORDS)
53 #define SKEIN_512_STATE_BYTES ( 8*SKEIN_512_STATE_WORDS)
54 #define SKEIN1024_STATE_BYTES ( 8*SKEIN1024_STATE_WORDS)
56 #define SKEIN_256_STATE_BITS (64*SKEIN_256_STATE_WORDS)
57 #define SKEIN_512_STATE_BITS (64*SKEIN_512_STATE_WORDS)
58 #define SKEIN1024_STATE_BITS (64*SKEIN1024_STATE_WORDS)
60 #define SKEIN_256_BLOCK_BYTES ( 8*SKEIN_256_STATE_WORDS)
61 #define SKEIN_512_BLOCK_BYTES ( 8*SKEIN_512_STATE_WORDS)
62 #define SKEIN1024_BLOCK_BYTES ( 8*SKEIN1024_STATE_WORDS)
132 #ifndef SKEIN_TREE_HASH
133 #define SKEIN_TREE_HASH (1)
150 #define SKEIN_T1_BIT(BIT) ((BIT) - 64)
152 #define SKEIN_T1_POS_TREE_LVL SKEIN_T1_BIT(112)
153 #define SKEIN_T1_POS_BIT_PAD SKEIN_T1_BIT(119)
154 #define SKEIN_T1_POS_BLK_TYPE SKEIN_T1_BIT(120)
155 #define SKEIN_T1_POS_FIRST SKEIN_T1_BIT(126)
156 #define SKEIN_T1_POS_FINAL SKEIN_T1_BIT(127)
159 #define SKEIN_T1_FLAG_FIRST (((u64b_t) 1 ) << SKEIN_T1_POS_FIRST)
160 #define SKEIN_T1_FLAG_FINAL (((u64b_t) 1 ) << SKEIN_T1_POS_FINAL)
161 #define SKEIN_T1_FLAG_BIT_PAD (((u64b_t) 1 ) << SKEIN_T1_POS_BIT_PAD)
164 #define SKEIN_T1_TREE_LVL_MASK (((u64b_t)0x7F) << SKEIN_T1_POS_TREE_LVL)
165 #define SKEIN_T1_TREE_LEVEL(n) (((u64b_t) (n)) << SKEIN_T1_POS_TREE_LVL)
168 #define SKEIN_BLK_TYPE_KEY ( 0)
169 #define SKEIN_BLK_TYPE_CFG ( 4)
170 #define SKEIN_BLK_TYPE_PERS ( 8)
171 #define SKEIN_BLK_TYPE_PK (12)
172 #define SKEIN_BLK_TYPE_KDF (16)
173 #define SKEIN_BLK_TYPE_NONCE (20)
174 #define SKEIN_BLK_TYPE_MSG (48)
175 #define SKEIN_BLK_TYPE_OUT (63)
176 #define SKEIN_BLK_TYPE_MASK (63)
178 #define SKEIN_T1_BLK_TYPE(T) (((u64b_t) (SKEIN_BLK_TYPE_##T)) << SKEIN_T1_POS_BLK_TYPE)
179 #define SKEIN_T1_BLK_TYPE_KEY SKEIN_T1_BLK_TYPE(KEY)
180 #define SKEIN_T1_BLK_TYPE_CFG SKEIN_T1_BLK_TYPE(CFG)
181 #define SKEIN_T1_BLK_TYPE_PERS SKEIN_T1_BLK_TYPE(PERS)
182 #define SKEIN_T1_BLK_TYPE_PK SKEIN_T1_BLK_TYPE(PK)
183 #define SKEIN_T1_BLK_TYPE_KDF SKEIN_T1_BLK_TYPE(KDF)
184 #define SKEIN_T1_BLK_TYPE_NONCE SKEIN_T1_BLK_TYPE(NONCE)
185 #define SKEIN_T1_BLK_TYPE_MSG SKEIN_T1_BLK_TYPE(MSG)
186 #define SKEIN_T1_BLK_TYPE_OUT SKEIN_T1_BLK_TYPE(OUT)
187 #define SKEIN_T1_BLK_TYPE_MASK SKEIN_T1_BLK_TYPE(MASK)
189 #define SKEIN_T1_BLK_TYPE_CFG_FINAL (SKEIN_T1_BLK_TYPE_CFG | SKEIN_T1_FLAG_FINAL)
190 #define SKEIN_T1_BLK_TYPE_OUT_FINAL (SKEIN_T1_BLK_TYPE_OUT | SKEIN_T1_FLAG_FINAL)
192 #define SKEIN_VERSION (1)
194 #ifndef SKEIN_ID_STRING_LE
195 #define SKEIN_ID_STRING_LE (0x33414853)
198 #define SKEIN_MK_64(hi32,lo32) ((lo32) + (((u64b_t) (hi32)) << 32))
199 #define SKEIN_SCHEMA_VER SKEIN_MK_64(SKEIN_VERSION,SKEIN_ID_STRING_LE)
200 #define SKEIN_KS_PARITY SKEIN_MK_64(0x1BD11BDA,0xA9FC1A22)
202 #define SKEIN_CFG_STR_LEN (4*8)
205 #define SKEIN_CFG_TREE_LEAF_SIZE_POS ( 0)
206 #define SKEIN_CFG_TREE_NODE_SIZE_POS ( 8)
207 #define SKEIN_CFG_TREE_MAX_LEVEL_POS (16)
209 #define SKEIN_CFG_TREE_LEAF_SIZE_MSK (((u64b_t) 0xFF) << SKEIN_CFG_TREE_LEAF_SIZE_POS)
210 #define SKEIN_CFG_TREE_NODE_SIZE_MSK (((u64b_t) 0xFF) << SKEIN_CFG_TREE_NODE_SIZE_POS)
211 #define SKEIN_CFG_TREE_MAX_LEVEL_MSK (((u64b_t) 0xFF) << SKEIN_CFG_TREE_MAX_LEVEL_POS)
213 #define SKEIN_CFG_TREE_INFO(leaf,node,maxLvl) \
214 ( (((u64b_t)(leaf )) << SKEIN_CFG_TREE_LEAF_SIZE_POS) | \
215 (((u64b_t)(node )) << SKEIN_CFG_TREE_NODE_SIZE_POS) | \
216 (((u64b_t)(maxLvl)) << SKEIN_CFG_TREE_MAX_LEVEL_POS) )
218 #define SKEIN_CFG_TREE_INFO_SEQUENTIAL SKEIN_CFG_TREE_INFO(0,0,0)
224 #define Skein_Get_Tweak(ctxPtr,TWK_NUM) ((ctxPtr)->h.T[TWK_NUM])
225 #define Skein_Set_Tweak(ctxPtr,TWK_NUM,tVal) {(ctxPtr)->h.T[TWK_NUM] = (tVal);}
227 #define Skein_Get_T0(ctxPtr) Skein_Get_Tweak(ctxPtr,0)
228 #define Skein_Get_T1(ctxPtr) Skein_Get_Tweak(ctxPtr,1)
229 #define Skein_Set_T0(ctxPtr,T0) Skein_Set_Tweak(ctxPtr,0,T0)
230 #define Skein_Set_T1(ctxPtr,T1) Skein_Set_Tweak(ctxPtr,1,T1)
233 #define Skein_Set_T0_T1(ctxPtr,T0,T1) \
235 Skein_Set_T0(ctxPtr,(T0)); \
236 Skein_Set_T1(ctxPtr,(T1)); \
239 #define Skein_Set_Type(ctxPtr,BLK_TYPE) \
240 Skein_Set_T1(ctxPtr,SKEIN_T1_BLK_TYPE_##BLK_TYPE)
243 #define Skein_Start_New_Type(ctxPtr,BLK_TYPE) \
244 { Skein_Set_T0_T1(ctxPtr,0,SKEIN_T1_FLAG_FIRST | SKEIN_T1_BLK_TYPE_##BLK_TYPE); (ctxPtr)->h.bCnt=0; }
246 #define Skein_Clear_First_Flag(hdr) { (hdr).T[1] &= ~SKEIN_T1_FLAG_FIRST; }
247 #define Skein_Set_Bit_Pad_Flag(hdr) { (hdr).T[1] |= SKEIN_T1_FLAG_BIT_PAD; }
249 #define Skein_Set_Tree_Level(hdr,height) { (hdr).T[1] |= SKEIN_T1_TREE_LEVEL(height);}
255 #include "skein_debug.h"
257 #define Skein_Show_Block(bits,ctx,X,blkPtr,wPtr,ksEvenPtr,ksOddPtr)
258 #define Skein_Show_Round(bits,ctx,r,X)
259 #define Skein_Show_R_Ptr(bits,ctx,r,X_ptr)
260 #define Skein_Show_Final(bits,ctx,cnt,outPtr)
261 #define Skein_Show_Key(bits,ctx,key,keyBytes)
264 #ifndef SKEIN_ERR_CHECK
265 #define Skein_Assert(x,retCode)
266 #define Skein_assert(x)
267 #elif defined(SKEIN_ASSERT)
269 #define Skein_Assert(x,retCode) assert(x)
270 #define Skein_assert(x) assert(x)
273 #define Skein_Assert(x,retCode) { if (!(x)) return retCode; }
274 #define Skein_assert(x) assert(x)
314 #define SKEIN_256_ROUNDS_TOTAL (72)
315 #define SKEIN_512_ROUNDS_TOTAL (72)
316 #define SKEIN1024_ROUNDS_TOTAL (80)
318 #define SKEIN_256_ROUNDS_TOTAL (8*((((SKEIN_ROUNDS/100) + 5) % 10) + 5))
319 #define SKEIN_512_ROUNDS_TOTAL (8*((((SKEIN_ROUNDS/ 10) + 5) % 10) + 5))
320 #define SKEIN1024_ROUNDS_TOTAL (8*((((SKEIN_ROUNDS ) + 5) % 10) + 5))
int Skein_256_InitExt(Skein_256_Ctxt_t *ctx, size_t hashBitLen, u64b_t treeInfo, const u08b_t *key, size_t keyBytes)
int Skein_512_InitExt(Skein_512_Ctxt_t *ctx, size_t hashBitLen, u64b_t treeInfo, const u08b_t *key, size_t keyBytes)
int Skein_256_Final_Pad(Skein_256_Ctxt_t *ctx, u08b_t *hashVal)
int Skein_256_Output(Skein_256_Ctxt_t *ctx, u08b_t *hashVal)
int Skein_512_Final_Pad(Skein_512_Ctxt_t *ctx, u08b_t *hashVal)
#define SKEIN1024_BLOCK_BYTES
#define SKEIN_MODIFIER_WORDS
int Skein_512_Init(Skein_512_Ctxt_t *ctx, size_t hashBitLen)
#define SKEIN1024_STATE_WORDS
int Skein_256_Final(Skein_256_Ctxt_t *ctx, u08b_t *hashVal)
int Skein1024_Init(Skein1024_Ctxt_t *ctx, size_t hashBitLen)
int Skein1024_Output(Skein1024_Ctxt_t *ctx, u08b_t *hashVal)
int Skein1024_Final_Pad(Skein1024_Ctxt_t *ctx, u08b_t *hashVal)
int Skein_256_Init(Skein_256_Ctxt_t *ctx, size_t hashBitLen)
#define SKEIN_512_STATE_WORDS
#define SKEIN_512_BLOCK_BYTES
int Skein_512_Update(Skein_512_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt)
int Skein_256_Update(Skein_256_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt)
#define SKEIN_256_STATE_WORDS
int Skein1024_Update(Skein1024_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt)
int Skein1024_Final(Skein1024_Ctxt_t *ctx, u08b_t *hashVal)
int Skein_512_Output(Skein_512_Ctxt_t *ctx, u08b_t *hashVal)
int Skein_512_Final(Skein_512_Ctxt_t *ctx, u08b_t *hashVal)
#define SKEIN_256_BLOCK_BYTES
int Skein1024_InitExt(Skein1024_Ctxt_t *ctx, size_t hashBitLen, u64b_t treeInfo, const u08b_t *key, size_t keyBytes)