Searched defs:tfm_michael (Results 1 - 3 of 3) sorted by relevance

/drivers/net/wireless/orinoco/
H A Dmic.c46 int orinoco_mic(struct crypto_hash *tfm_michael, u8 *key, argument
54 if (tfm_michael == NULL) {
55 printk(KERN_WARNING "orinoco_mic: tfm_michael == NULL\n");
72 if (crypto_hash_setkey(tfm_michael, key, MIC_KEYLEN))
75 desc.tfm = tfm_michael;
/drivers/staging/rtl8192e/
H A Drtllib_crypt_tkip.c498 static int michael_mic(struct crypto_hash *tfm_michael, u8 *key, u8 *hdr, argument
504 if (tfm_michael == NULL) {
505 printk(KERN_WARNING "michael_mic: tfm_michael == NULL\n");
512 if (crypto_hash_setkey(tfm_michael, key, 8))
515 desc.tfm = tfm_michael;
/drivers/staging/rtl8192u/ieee80211/
H A Dieee80211_crypt_tkip.c502 static int michael_mic(struct crypto_hash *tfm_michael, u8 *key, u8 *hdr, argument
508 if (tfm_michael == NULL) {
509 printk(KERN_WARNING "michael_mic: tfm_michael == NULL\n");
517 if (crypto_hash_setkey(tfm_michael, key, 8))
520 desc.tfm = tfm_michael;

Completed in 66 milliseconds