Searched refs:u64b_t (Results 1 – 7 of 7) sorted by relevance
| /f-stack/freebsd/crypto/skein/ |
| H A D | skein_iv.h | 24 const u64b_t SKEIN_256_IV_128[] = 33 const u64b_t SKEIN_256_IV_160[] = 42 const u64b_t SKEIN_256_IV_224[] = 51 const u64b_t SKEIN_256_IV_256[] = 60 const u64b_t SKEIN_512_IV_128[] = 73 const u64b_t SKEIN_512_IV_160[] = 86 const u64b_t SKEIN_512_IV_224[] = 99 const u64b_t SKEIN_512_IV_256[] = 112 const u64b_t SKEIN_512_IV_384[] = 125 const u64b_t SKEIN_512_IV_512[] = [all …]
|
| H A D | skein.h | 77 u64b_t X[SKEIN_256_STATE_WORDS]; /* chaining variables */ 84 u64b_t X[SKEIN_512_STATE_WORDS]; /* chaining variables */ 91 u64b_t X[SKEIN1024_STATE_WORDS]; /* chaining variables */ 162 #define SKEIN_T1_FLAG_FIRST (((u64b_t) 1 ) << SKEIN_T1_POS_FIRST) 163 #define SKEIN_T1_FLAG_FINAL (((u64b_t) 1 ) << SKEIN_T1_POS_FINAL) 164 #define SKEIN_T1_FLAG_BIT_PAD (((u64b_t) 1 ) << SKEIN_T1_POS_BIT_PAD) 167 #define SKEIN_T1_TREE_LVL_MASK (((u64b_t)0x7F) << SKEIN_T1_POS_TREE_LVL) 201 #define SKEIN_MK_64(hi32,lo32) ((lo32) + (((u64b_t) (hi32)) << 32)) 217 ( (((u64b_t)(leaf )) << SKEIN_CFG_TREE_LEAF_SIZE_POS) | \ 218 (((u64b_t)(node )) << SKEIN_CFG_TREE_NODE_SIZE_POS) | \ [all …]
|
| H A D | skein_debug.h | 15 void Skein_Show_Block(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u64b_t *X,const u08b_t *blkPtr, 16 const u64b_t *wPtr,const u64b_t *ksPtr,const u64b_t *tsPtr); 17 void Skein_Show_Round(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t r,const u64b_t *X); 18 void Skein_Show_R_Ptr(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t r,const u64b_t *X_ptr[]);
|
| H A D | skein_debug.c | 19 static void Show64_step(size_t cnt,const u64b_t *X,size_t step) in Show64_step() 33 static void Show64_flag(size_t cnt,const u64b_t *X) in Show64_flag() 39 X = (const u64b_t *) (xptr & ~1); in Show64_flag() 89 void Skein_Show_Round(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t r,const u64b_t *X) in Skein_Show_Round() 125 u64b_t p[SKEIN_MAX_STATE_WORDS]; in Skein_Show_Round() 162 void Skein_Show_R_Ptr(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t r,const u64b_t *X_ptr[]) in Skein_Show_R_Ptr() 165 u64b_t X[SKEIN_MAX_STATE_WORDS]; in Skein_Show_R_Ptr() 174 void Skein_Show_Block(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u64b_t *X,const u08b_t *blkPtr, in Skein_Show_Block() 175 const u64b_t *wPtr, const u64b_t *ksPtr, const u64b_t *tsPtr) in Skein_Show_Block()
|
| H A D | skein.c | 46 u64b_t w[SKEIN_256_STATE_WORDS]; in Skein_256_Init() 194 u64b_t X[SKEIN_256_STATE_WORDS]; in Skein_256_Final() 211 ((u64b_t *)ctx->b)[0]= Skein_Swap64((u64b_t) i); /* build the counter block */ in Skein_256_Final() 392 u64b_t X[SKEIN_512_STATE_WORDS]; in Skein_512_Final() 409 ((u64b_t *)ctx->b)[0]= Skein_Swap64((u64b_t) i); /* build the counter block */ in Skein_512_Final() 589 u64b_t X[SKEIN1024_STATE_WORDS]; in Skein1024_Final() 606 ((u64b_t *)ctx->b)[0]= Skein_Swap64((u64b_t) i); /* build the counter block */ in Skein1024_Final() 684 u64b_t X[SKEIN_256_STATE_WORDS]; in Skein_256_Output() 695 ((u64b_t *)ctx->b)[0]= Skein_Swap64((u64b_t) i); /* build the counter block */ in Skein_256_Output() 724 ((u64b_t *)ctx->b)[0]= Skein_Swap64((u64b_t) i); /* build the counter block */ in Skein_512_Output() [all …]
|
| H A D | skein_port.h | 27 typedef uint64_t u64b_t; /* 64-bit unsigned integer */ typedef 60 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt); 61 void Skein_Get64_LSB_First(u64b_t *dst,const u08b_t *src,size_t wCnt); 89 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt) in Skein_Put64_LSB_First() 104 void Skein_Get64_LSB_First(u64b_t *dst,const u08b_t *src,size_t wCnt) in Skein_Get64_LSB_First()
|
| H A D | skein_block.c | 79 …u64b_t kw[WCNT+4+RCNT*2]; /* key schedule words : chaining vars + tweak + "rotat… in Skein_256_Process_Block() 81 u64b_t kw[WCNT+4]; /* key schedule words : chaining vars + tweak */ in Skein_256_Process_Block() 83 u64b_t X0,X1,X2,X3; /* local copy of context vars, for speed */ in Skein_256_Process_Block() 84 u64b_t w [WCNT]; /* local copy of input block */ in Skein_256_Process_Block() 86 …const u64b_t *Xptr[4]; /* use for debugging (help compiler put Xn in register… in Skein_256_Process_Block() 266 u64b_t kw[WCNT+4]; /* key schedule words : chaining vars + tweak */ in Skein_512_Process_Block() 268 u64b_t X0,X1,X2,X3,X4,X5,X6,X7; /* local copy of vars, for speed */ in Skein_512_Process_Block() 269 u64b_t w [WCNT]; /* local copy of input block */ in Skein_512_Process_Block() 474 u64b_t kw[WCNT+4]; /* key schedule words : chaining vars + tweak */ in Skein1024_Process_Block() 477 u64b_t X00,X01,X02,X03,X04,X05,X06,X07, /* local copy of vars, for speed */ in Skein1024_Process_Block() [all …]
|