Lines Matching defs:ukey
255 static int tipc_aead_init(struct tipc_aead **aead, struct tipc_aead_key *ukey,
328 int tipc_aead_key_validate(struct tipc_aead_key *ukey, struct genl_info *info)
333 if (unlikely(!crypto_has_alg(ukey->alg_name, 0, 0))) {
339 if (strcmp(ukey->alg_name, "gcm(aes)")) {
345 keylen = ukey->keylen - TIPC_AES_GCM_SALT_SIZE;
497 * @ukey: pointer to user key data
507 static int tipc_aead_init(struct tipc_aead **aead, struct tipc_aead_key *ukey,
525 keylen = ukey->keylen - TIPC_AES_GCM_SALT_SIZE;
536 tfm = crypto_alloc_aead(ukey->alg_name, 0, 0);
550 err |= crypto_aead_setkey(tfm, ukey->key, keylen);
585 bin2hex(tmp->hint, ukey->key + keylen - TIPC_AEAD_HINT_LEN,
592 tmp->key = kmemdup(ukey, tipc_aead_key_size(ukey), GFP_KERNEL);
597 memcpy(&tmp->salt, ukey->key + keylen, TIPC_AES_GCM_SALT_SIZE);
1114 * @ukey: the user key
1123 int tipc_crypto_key_init(struct tipc_crypto *c, struct tipc_aead_key *ukey,
1130 rc = tipc_aead_init(&aead, ukey, mode);