Lines Matching refs:thash

397 	struct auth_hash *thash;  in cse_create()  local
439 thash = NULL; in cse_create()
442 thash = &auth_hash_poly1305; in cse_create()
445 thash = &auth_hash_hmac_sha1; in cse_create()
448 thash = &auth_hash_hmac_sha2_224; in cse_create()
451 thash = &auth_hash_hmac_sha2_256; in cse_create()
454 thash = &auth_hash_hmac_sha2_384; in cse_create()
457 thash = &auth_hash_hmac_sha2_512; in cse_create()
460 thash = &auth_hash_hmac_ripemd_160; in cse_create()
477 thash = &auth_hash_nist_gmac_aes_128; in cse_create()
480 thash = &auth_hash_nist_gmac_aes_192; in cse_create()
483 thash = &auth_hash_nist_gmac_aes_256; in cse_create()
494 thash = &auth_hash_ccm_cbc_mac_128; in cse_create()
497 thash = &auth_hash_ccm_cbc_mac_192; in cse_create()
500 thash = &auth_hash_ccm_cbc_mac_256; in cse_create()
509 thash = &auth_hash_sha1; in cse_create()
512 thash = &auth_hash_sha2_224; in cse_create()
515 thash = &auth_hash_sha2_256; in cse_create()
518 thash = &auth_hash_sha2_384; in cse_create()
521 thash = &auth_hash_sha2_512; in cse_create()
525 thash = &auth_hash_null; in cse_create()
529 thash = &auth_hash_blake2b; in cse_create()
532 thash = &auth_hash_blake2s; in cse_create()
541 if (txform == NULL && thash == NULL) { in cse_create()
579 thash = NULL; in cse_create()
589 } else if (txform != NULL && thash != NULL) in cse_create()
626 if (thash != NULL) { in cse_create()
627 csp.csp_auth_alg = thash->type; in cse_create()
629 if (sop->mackeylen > thash->keysize || sop->mackeylen < 0) { in cse_create()
676 if (thash != NULL) in cse_create()
677 cse->hashsize = thash->hashsize; in cse_create()