diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/crypto/algapi.h | 10 | ||||
-rw-r--r-- | include/linux/crypto.h | 4 |
2 files changed, 13 insertions, 1 deletions
diff --git a/include/crypto/algapi.h b/include/crypto/algapi.h index 5fb6d8618d4d..986db68548f6 100644 --- a/include/crypto/algapi.h +++ b/include/crypto/algapi.h | |||
@@ -22,8 +22,18 @@ struct seq_file; | |||
22 | 22 | ||
23 | struct crypto_type { | 23 | struct crypto_type { |
24 | unsigned int (*ctxsize)(struct crypto_alg *alg, u32 type, u32 mask); | 24 | unsigned int (*ctxsize)(struct crypto_alg *alg, u32 type, u32 mask); |
25 | unsigned int (*extsize)(struct crypto_alg *alg, | ||
26 | const struct crypto_type *frontend); | ||
25 | int (*init)(struct crypto_tfm *tfm, u32 type, u32 mask); | 27 | int (*init)(struct crypto_tfm *tfm, u32 type, u32 mask); |
28 | int (*init_tfm)(struct crypto_tfm *tfm, | ||
29 | const struct crypto_type *frontend); | ||
26 | void (*show)(struct seq_file *m, struct crypto_alg *alg); | 30 | void (*show)(struct seq_file *m, struct crypto_alg *alg); |
31 | struct crypto_alg *(*lookup)(const char *name, u32 type, u32 mask); | ||
32 | |||
33 | unsigned int type; | ||
34 | unsigned int maskclear; | ||
35 | unsigned int maskset; | ||
36 | unsigned int tfmsize; | ||
27 | }; | 37 | }; |
28 | 38 | ||
29 | struct crypto_instance { | 39 | struct crypto_instance { |
diff --git a/include/linux/crypto.h b/include/linux/crypto.h index ea52cd944fd9..ffaaa418cf59 100644 --- a/include/linux/crypto.h +++ b/include/linux/crypto.h | |||
@@ -546,7 +546,9 @@ struct crypto_attr_u32 { | |||
546 | * Transform user interface. | 546 | * Transform user interface. |
547 | */ | 547 | */ |
548 | 548 | ||
549 | struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, u32 tfm_flags); | 549 | struct crypto_tfm *crypto_alloc_tfm(const char *alg_name, |
550 | const struct crypto_type *frontend, | ||
551 | u32 type, u32 mask); | ||
550 | struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask); | 552 | struct crypto_tfm *crypto_alloc_base(const char *alg_name, u32 type, u32 mask); |
551 | void crypto_free_tfm(struct crypto_tfm *tfm); | 553 | void crypto_free_tfm(struct crypto_tfm *tfm); |
552 | 554 | ||