Home | History | Annotate | Download | only in modes

Lines Matching refs:ivec

109  * of the IV (ivec), and that the application has full control over
116 unsigned char ivec[16], unsigned char ecount_buf[16],
136 if (((size_t)in|(size_t)out|(size_t)ivec)%sizeof(size_t) != 0)
140 (*block)(ivec, ecount_buf, key);
141 ctr128_inc_aligned(ivec);
151 (*block)(ivec, ecount_buf, key);
152 ctr128_inc_aligned(ivec);
165 (*block)(ivec, ecount_buf, key);
166 ctr128_inc(ivec);
192 unsigned char ivec[16], unsigned char ecount_buf[16],
208 ctr32 = GETU32(ivec+12);
229 (*func)(in,out,blocks,key,ivec);
230 /* (*ctr) does not update ivec, caller does: */
231 PUTU32(ivec+12,ctr32);
233 if (ctr32 == 0) ctr96_inc(ivec);
241 (*func)(ecount_buf,ecount_buf,1,key,ivec);
243 PUTU32(ivec+12,ctr32);
244 if (ctr32 == 0) ctr96_inc(ivec);