Lines Matching refs:num
64 * 64bit block we have used is contained in *num;
70 DES_cblock *ivec, int *num, int enc)
74 register int n= *num;
133 *num=n;
139 int *num, int enc)
141 DES_ede3_cfb64_encrypt(in,out,length,ks1,ks2,ks1,ivec,num,enc);
156 register int num=numbits,i;
161 if (num > 64) return;
181 if (num == 32)
183 else if (num == 64)
193 memmove(ovec,ovec+num/8,8+(num%8 ? 1 : 0));
195 if(num%8 != 0)
198 ovec[i]<<=num%8;
199 ovec[i]|=ovec[i+1]>>(8-num%8);
219 if (num == 32)
221 else if (num == 64)
231 memmove(ovec,ovec+num/8,8+(num%8 ? 1 : 0));
233 if(num%8 != 0)
236 ovec[i]<<=num%8;
237 ovec[i]|=ovec[i+1]>>(8-num%8);