Searched refs:setkey (Results 1 - 25 of 33) sorted by relevance

12

/crypto/
H A Daead.c45 ret = aead->setkey(tfm, alignbuffer, keylen);
51 static int setkey(struct crypto_aead *tfm, const u8 *key, unsigned int keylen) function
59 return aead->setkey(tfm, key, keylen);
101 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ?
102 alg->setkey : setkey;
185 crt->setkey = setkey;
350 inst->alg.cra_aead.setkey = alg->cra_aead.setkey;
[all...]
H A Dblkcipher.c390 ret = cipher->setkey(tfm, alignbuffer, keylen);
396 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) function
409 return cipher->setkey(tfm, key, keylen);
415 return setkey(crypto_ablkcipher_tfm(tfm), key, keylen);
465 crt->setkey = async_setkey;
485 crt->setkey = setkey;
585 int (*setkey)(struct crypto_ablkcipher *tfm, const u8 *key,
637 balg.setkey = async_setkey;
647 balg.setkey
[all...]
H A Dcipher.c46 static int setkey(struct crypto_tfm *tfm, const u8 *key, unsigned int keylen) function
111 ops->cit_setkey = setkey;
H A Dcrypto_null.c99 .setkey = null_hash_setkey,
138 .setkey = null_setkey,
H A Dsalsa20_generic.c169 static int setkey(struct crypto_tfm *tfm, const u8 *key, function
226 .setkey = setkey,
H A Dahash.c164 ret = tfm->setkey(tfm, alignbuffer, keylen);
177 return tfm->setkey(tfm, key, keylen);
371 hash->setkey = ahash_nosetkey;
384 if (alg->setkey)
385 hash->setkey = alg->setkey;
H A Dcrc32.c124 .setkey = crc32_setkey,
H A Dcrc32c.c138 .setkey = chksum_setkey,
H A Dablkcipher.c325 ret = cipher->setkey(tfm, alignbuffer, keylen);
331 static int setkey(struct crypto_ablkcipher *tfm, const u8 *key, function
345 return cipher->setkey(tfm, key, keylen);
373 crt->setkey = setkey;
455 crt->setkey = tfm->__crt_alg->cra_flags & CRYPTO_ALG_GENIV ?
456 alg->setkey : setkey;
H A Dshash.c49 err = shash->setkey(tfm, alignbuffer, keylen);
63 return shash->setkey(tfm, key, keylen);
357 if (alg->setkey)
358 crt->setkey = shash_async_setkey;
486 crt->setkey = shash_compat_setkey;
608 if (!alg->setkey)
609 alg->setkey = shash_no_setkey;
H A Dlrw.c79 static int setkey(struct crypto_tfm *parent, const u8 *key, function
366 inst->alg.cra_blkcipher.setkey = setkey;
H A Dxts.c33 static int setkey(struct crypto_tfm *parent, const u8 *key, function
328 inst->alg.cra_blkcipher.setkey = setkey;
H A Darc4.c146 .setkey = arc4_set_key,
H A Dghash-generic.c146 .setkey = ghash_setkey,
H A Dmichael_mic.c155 .setkey = michael_setkey,
H A Daf_alg.c187 err = type->setkey(ask->private, key, keylen);
213 if (!type->setkey)
H A Dctr.c224 inst->alg.cra_blkcipher.setkey = crypto_ctr_setkey;
405 inst->alg.cra_ablkcipher.setkey = crypto_rfc3686_setkey;
H A Dcryptd.c358 inst->alg.cra_ablkcipher.setkey = cryptd_blkcipher_setkey;
615 inst->alg.setkey = cryptd_hash_setkey;
747 inst->alg.cra_aead.setkey = alg->cra_aead.setkey;
H A Decb.c151 inst->alg.cra_blkcipher.setkey = crypto_ecb_setkey;
H A Dxcbc.c254 inst->alg.setkey = crypto_xcbc_digest_setkey;
H A Dalgif_hash.c303 .setkey = hash_setkey,
H A Dcbc.c255 inst->alg.cra_blkcipher.setkey = crypto_cbc_setkey;
H A Dcmac.c281 inst->alg.setkey = crypto_cmac_digest_setkey;
H A Dcts.c316 inst->alg.cra_blkcipher.setkey = crypto_cts_setkey;
H A Dhmac.c239 inst->alg.setkey = hmac_setkey;

Completed in 119 milliseconds

12