Searched refs:u08b_t (Results 1 – 6 of 6) sorted by relevance
| /f-stack/freebsd/crypto/skein/ |
| H A D | skein.h | 100 int Skein_256_Update(Skein_256_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt); 101 int Skein_512_Update(Skein_512_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt); 104 int Skein_256_Final (Skein_256_Ctxt_t *ctx, u08b_t * hashVal); 105 int Skein_512_Final (Skein_512_Ctxt_t *ctx, u08b_t * hashVal); 106 int Skein1024_Final (Skein1024_Ctxt_t *ctx, u08b_t * hashVal); 131 int Skein_256_Final_Pad(Skein_256_Ctxt_t *ctx, u08b_t * hashVal); 132 int Skein_512_Final_Pad(Skein_512_Ctxt_t *ctx, u08b_t * hashVal); 133 int Skein1024_Final_Pad(Skein1024_Ctxt_t *ctx, u08b_t * hashVal); 139 int Skein_256_Output (Skein_256_Ctxt_t *ctx, u08b_t * hashVal); 140 int Skein_512_Output (Skein_512_Ctxt_t *ctx, u08b_t * hashVal); [all …]
|
| H A D | skein.c | 45 u08b_t b[SKEIN_256_STATE_BYTES]; in Skein_256_Init() 89 u08b_t b[SKEIN_256_STATE_BYTES]; in Skein_256_InitExt() 227 return ((u08b_t *) Skein_256_API_CodeSize) - in Skein_256_API_CodeSize() 228 ((u08b_t *) Skein_256_Init); in Skein_256_API_CodeSize() 242 u08b_t b[SKEIN_512_STATE_BYTES]; in Skein_512_Init() 287 u08b_t b[SKEIN_512_STATE_BYTES]; in Skein_512_InitExt() 425 return ((u08b_t *) Skein_512_API_CodeSize) - in Skein_512_API_CodeSize() 426 ((u08b_t *) Skein_512_Init); in Skein_512_API_CodeSize() 440 u08b_t b[SKEIN1024_STATE_BYTES]; in Skein1024_Init() 484 u08b_t b[SKEIN1024_STATE_BYTES]; in Skein1024_InitExt() [all …]
|
| H A D | skein_debug.c | 44 static void Show08(size_t cnt,const u08b_t *b) in Show08() 76 void Skein_Show_Final(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t cnt,const u08b_t *outPtr) in Skein_Show_Final() 126 const u08b_t *perm; in Skein_Show_Round() 127 … const static u08b_t PERM_256 [4][ 4] = { { 0,1,2,3 }, { 0,3,2,1 }, { 0,1,2,3 }, { 0,3,2,1 } }; in Skein_Show_Round() 128 const static u08b_t PERM_512 [4][ 8] = { { 0,1,2,3,4,5,6,7 }, in Skein_Show_Round() 133 … const static u08b_t PERM_1024[4][16] = { { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10,11,12,13,14,15 }, in Skein_Show_Round() 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() 237 void Skein_Show_Key(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u08b_t *key,size_t keyBytes) in Skein_Show_Key()
|
| H A D | skein_port.h | 25 typedef uint8_t u08b_t; /* 8-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_debug.h | 15 void Skein_Show_Block(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u64b_t *X,const u08b_t *blkPtr, 19 void Skein_Show_Final(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t cnt,const u08b_t *outPtr); 20 void Skein_Show_Key (uint_t bits,const Skein_Ctxt_Hdr_t *h,const u08b_t *key,size_t keyBytes);
|
| H A D | skein_block.c | 53 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt… 54 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt… 55 void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt… 59 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCn… in Skein_256_Process_Block() 232 return ((u08b_t *) Skein_256_Process_Block_CodeSize) - in Skein_256_Process_Block_CodeSize() 233 ((u08b_t *) Skein_256_Process_Block); in Skein_256_Process_Block_CodeSize() 244 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCn… in Skein_512_Process_Block() 440 return ((u08b_t *) Skein_512_Process_Block_CodeSize) - in Skein_512_Process_Block_CodeSize() 441 ((u08b_t *) Skein_512_Process_Block); in Skein_512_Process_Block_CodeSize() 698 return ((u08b_t *) Skein1024_Process_Block_CodeSize) - in Skein1024_Process_Block_CodeSize() [all …]
|