Lines Matching refs:j
39 int t, j, k; in des_encrypt1() local
45 for (j = 0; j < 64; j++) in des_encrypt1()
46 L[j] = block[IP[j]-1]; in des_encrypt1()
55 for (j = 0; j < 32; j++) in des_encrypt1()
56 tempL[j] = R[j]; in des_encrypt1()
61 for (j = 0; j < 48; j++) in des_encrypt1()
62 preS[j] = R[E[j]-1] ^ KS[i][j]; in des_encrypt1()
74 for (j = 0; j < 8; j++) { in des_encrypt1()
75 t = 6*j; in des_encrypt1()
76 k = S[j][(preS[t+0]<<5)+ in des_encrypt1()
82 t = 4*j; in des_encrypt1()
92 for (j = 0; j < 32; j++) in des_encrypt1()
93 R[j] = L[j] ^ f[P[j]-1]; in des_encrypt1()
98 for (j = 0; j < 32; j++) in des_encrypt1()
99 L[j] = tempL[j]; in des_encrypt1()
104 for (j = 0; j < 32; j++) { in des_encrypt1()
105 t2 = L[j]; in des_encrypt1()
106 L[j] = R[j]; in des_encrypt1()
107 R[j] = t2; in des_encrypt1()
113 for (j = 0; j < 64; j++) in des_encrypt1()
114 block[j] = L[FP[j]-1]; in des_encrypt1()