Lines Matching defs:D
80 * to yield C and D.
122 * The C and D arrays used to calculate the key schedule.
126 static char D[28];
161 * First, generate C and D by permuting
163 * 8-bit char is not used, so C and D are only 28
168 D[i] = key[PC1_D[i]-1];
171 * To generate Ki, rotate C and D according
184 t = D[0];
186 D[j] = D[j+1];
187 D[27] = (char)t;
190 * get Ki. Note C and D are concatenated.
194 KS[i][j+24] = D[PC2_D[j]-28-1];