Home | History | Annotate | Download | only in crypto

Lines Matching refs:dk

427 void des_key_setup(const u8 *key, u32 *ek, u32 *dk)
430 deskey(key, 1, dk);
445 void des_block_decrypt(const u8 *crypt, const u32 *dk, u8 *plain)
450 desfunc(work, dk);
462 deskey(key, 1, dkey->dk[2]);
463 deskey(key + 8, 0, dkey->dk[1]);
464 deskey(key + 16, 1, dkey->dk[0]);
488 desfunc(work, key->dk[0]);
489 desfunc(work, key->dk[1]);
490 desfunc(work, key->dk[2]);