Home | History | Annotate | Download | only in src

Lines Matching defs:des_key

95 MakeKey(u_char *key, u_char *des_key)
97 des_key[0] = Get7Bits(key, 0);
98 des_key[1] = Get7Bits(key, 7);
99 des_key[2] = Get7Bits(key, 14);
100 des_key[3] = Get7Bits(key, 21);
101 des_key[4] = Get7Bits(key, 28);
102 des_key[5] = Get7Bits(key, 35);
103 des_key[6] = Get7Bits(key, 42);
104 des_key[7] = Get7Bits(key, 49);
106 des_set_odd_parity((des_cblock *)des_key);
112 des_cblock des_key;
115 MakeKey(key, des_key);
116 des_set_key(&des_key, key_schedule);