You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
[CRYPTO] api: Allow algorithm lookup by type
This patch also adds the infrastructure to pick an algorithm based on their type. For example, this allows you to select the encryption algorithm "aes", instead of any algorithm registered under the name "aes". For now this is only accessible internally. Eventually it will be made available through crypto_alloc_tfm. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
+6
-1
@@ -31,6 +31,8 @@ struct cryptomgr_param {
|
||||
} alg;
|
||||
|
||||
struct {
|
||||
u32 type;
|
||||
u32 mask;
|
||||
char name[CRYPTO_MAX_ALG_NAME];
|
||||
} larval;
|
||||
|
||||
@@ -62,7 +64,8 @@ out:
|
||||
return;
|
||||
|
||||
err:
|
||||
crypto_larval_error(param->larval.name);
|
||||
crypto_larval_error(param->larval.name, param->larval.type,
|
||||
param->larval.mask);
|
||||
goto out;
|
||||
}
|
||||
|
||||
@@ -101,6 +104,8 @@ static int cryptomgr_schedule_probe(struct crypto_larval *larval)
|
||||
param->alg.data.name[len] = 0;
|
||||
|
||||
memcpy(param->larval.name, larval->alg.cra_name, CRYPTO_MAX_ALG_NAME);
|
||||
param->larval.type = larval->alg.cra_flags;
|
||||
param->larval.mask = larval->mask;
|
||||
|
||||
INIT_WORK(¶m->work, cryptomgr_probe, param);
|
||||
schedule_work(¶m->work);
|
||||
|
||||
Reference in New Issue
Block a user