Lines Matching refs:tb
183 struct rtattr **tb, u32 mask) in __hmac_create_shash() argument
200 crypto_attr_alg_name(tb[1]), 0, mask); in __hmac_create_shash()
448 static int hmac_create_ahash(struct crypto_template *tmpl, struct rtattr **tb, in hmac_create_ahash() argument
464 crypto_attr_alg_name(tb[1]), 0, mask); in hmac_create_ahash()
519 static int hmac_create(struct crypto_template *tmpl, struct rtattr **tb) in hmac_create() argument
524 algt = crypto_get_attr_type(tb); in hmac_create()
532 return hmac_create_ahash(tmpl, tb, mask); in hmac_create()
538 return __hmac_create_shash(tmpl, tb, mask); in hmac_create()
541 static int hmac_create_shash(struct crypto_template *tmpl, struct rtattr **tb) in hmac_create_shash() argument
546 err = crypto_check_attr_type(tb, CRYPTO_ALG_TYPE_SHASH, &mask); in hmac_create_shash()
550 return __hmac_create_shash(tmpl, tb, mask); in hmac_create_shash()