Lines Matching defs:L
35 des_encrypt1(char *block, char *L, char *IP, char *R, char *preS, char *E,
46 L[j] = block[IP[j]-1];
53 * which will be the new L.
89 * The new R is L ^ f(R, K).
93 R[j] = L[j] ^ f[P[j]-1];
95 * Finally, the new L (the original R)
99 L[j] = tempL[j];
102 * The output L and R are reversed.
105 t2 = L[j];
106 L[j] = R[j];
114 block[j] = L[FP[j]-1];