Home
last modified time | relevance | path

Searched refs:u08b_t (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/crypto/skein/
H A Dskein.h99 int Skein_256_Update(Skein_256_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt);
100 int Skein_512_Update(Skein_512_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt);
103 int Skein_256_Final (Skein_256_Ctxt_t *ctx, u08b_t * hashVal);
104 int Skein_512_Final (Skein_512_Ctxt_t *ctx, u08b_t * hashVal);
105 int Skein1024_Final (Skein1024_Ctxt_t *ctx, u08b_t * hashVal);
130 int Skein_256_Final_Pad(Skein_256_Ctxt_t *ctx, u08b_t * hashVal);
131 int Skein_512_Final_Pad(Skein_512_Ctxt_t *ctx, u08b_t * hashVal);
132 int Skein1024_Final_Pad(Skein1024_Ctxt_t *ctx, u08b_t * hashVal);
138 int Skein_256_Output (Skein_256_Ctxt_t *ctx, u08b_t * hashVal);
139 int Skein_512_Output (Skein_512_Ctxt_t *ctx, u08b_t * hashVal);
[all …]
H A Dskein.c43 u08b_t b[SKEIN_256_STATE_BYTES]; in Skein_256_Init()
87 u08b_t b[SKEIN_256_STATE_BYTES]; in Skein_256_InitExt()
225 return ((u08b_t *) Skein_256_API_CodeSize) - in Skein_256_API_CodeSize()
226 ((u08b_t *) Skein_256_Init); in Skein_256_API_CodeSize()
240 u08b_t b[SKEIN_512_STATE_BYTES]; in Skein_512_Init()
285 u08b_t b[SKEIN_512_STATE_BYTES]; in Skein_512_InitExt()
423 return ((u08b_t *) Skein_512_API_CodeSize) - in Skein_512_API_CodeSize()
424 ((u08b_t *) Skein_512_Init); in Skein_512_API_CodeSize()
438 u08b_t b[SKEIN1024_STATE_BYTES]; in Skein1024_Init()
482 u08b_t b[SKEIN1024_STATE_BYTES]; in Skein1024_InitExt()
[all …]
H A Dskein_debug.c44 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 Dskein_port.h24 typedef uint8_t u08b_t; /* 8-bit unsigned integer */ typedef
59 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt);
60 void Skein_Get64_LSB_First(u64b_t *dst,const u08b_t *src,size_t wCnt);
88 void Skein_Put64_LSB_First(u08b_t *dst,const u64b_t *src,size_t bCnt) in Skein_Put64_LSB_First()
103 void Skein_Get64_LSB_First(u64b_t *dst,const u08b_t *src,size_t wCnt) in Skein_Get64_LSB_First()
H A Dskein_debug.h15 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 Dskein_block.c51 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt…
52 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt…
53 void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byt…
57 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()
230 return ((u08b_t *) Skein_256_Process_Block_CodeSize) - in Skein_256_Process_Block_CodeSize()
231 ((u08b_t *) Skein_256_Process_Block); in Skein_256_Process_Block_CodeSize()
242 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()
438 return ((u08b_t *) Skein_512_Process_Block_CodeSize) - in Skein_512_Process_Block_CodeSize()
439 ((u08b_t *) Skein_512_Process_Block); in Skein_512_Process_Block_CodeSize()
696 return ((u08b_t *) Skein1024_Process_Block_CodeSize) - in Skein1024_Process_Block_CodeSize()
[all …]