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

/freebsd-12-stable/sys/crypto/skein/
H A Dskein.h78 u08b_t b[SKEIN_256_BLOCK_BYTES]; /* partial block buffer (8-byte aligned) */
85 u08b_t b[SKEIN_512_BLOCK_BYTES]; /* partial block buffer (8-byte aligned) */
92 u08b_t b[SKEIN1024_BLOCK_BYTES]; /* partial block buffer (8-byte aligned) */
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);
102 int Skein1024_Update(Skein1024_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);
122 int Skein_256_InitExt(Skein_256_Ctxt_t *ctx, size_t hashBitLen, u64b_t treeInfo, const u08b_t *ke
[all...]
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_port.h25 typedef u_int8_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)
104 void Skein_Get64_LSB_First(u64b_t *dst,const u08b_t *src,size_t wCnt)
H A Dskein_debug.c44 static void Show08(size_t cnt,const u08b_t *b)
76 void Skein_Show_Final(uint_t bits,const Skein_Ctxt_Hdr_t *h,size_t cnt,const u08b_t *outPtr)
126 const u08b_t *perm;
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 } };
128 const static u08b_t PERM_512 [4][ 8] = { { 0,1,2,3,4,5,6,7 },
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 },
174 void Skein_Show_Block(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u64b_t *X,const u08b_t *blkPtr,
237 void Skein_Show_Key(uint_t bits,const Skein_Ctxt_Hdr_t *h,const u08b_t *key,size_t keyBytes)
H A Dskein.c31 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
32 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
33 void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
45 u08b_t b[SKEIN_256_STATE_BYTES];
85 int Skein_256_InitExt(Skein_256_Ctxt_t *ctx,size_t hashBitLen,u64b_t treeInfo, const u08b_t *key, size_t keyBytes)
89 u08b_t b[SKEIN_256_STATE_BYTES];
143 int Skein_256_Update(Skein_256_Ctxt_t *ctx, const u08b_t *msg, size_t msgByteCnt)
191 int Skein_256_Final(Skein_256_Ctxt_t *ctx, u08b_t *hashVal)
227 return ((u08b_t *) Skein_256_API_CodeSize) -
228 ((u08b_t *) Skein_256_Ini
[all...]
H A Dskein_block.c53 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
54 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
55 void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd);
59 void Skein_256_Process_Block(Skein_256_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd)
232 return ((u08b_t *) Skein_256_Process_Block_CodeSize) -
233 ((u08b_t *) Skein_256_Process_Block);
244 void Skein_512_Process_Block(Skein_512_Ctxt_t *ctx,const u08b_t *blkPtr,size_t blkCnt,size_t byteCntAdd)
440 return ((u08b_t *) Skein_512_Process_Block_CodeSize) -
441 ((u08b_t *) Skein_512_Process_Block);
452 void Skein1024_Process_Block(Skein1024_Ctxt_t *ctx,const u08b_t *blkPt
[all...]

Completed in 208 milliseconds