diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-17 16:15:55 -0500 |
commit | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch) | |
tree | a8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /include/crypto/internal | |
parent | 406089d01562f1e2bf9f089fd7637009ebaad589 (diff) |
Patched in Tegra support.
Diffstat (limited to 'include/crypto/internal')
-rw-r--r-- | include/crypto/internal/aead.h | 2 | ||||
-rw-r--r-- | include/crypto/internal/hash.h | 2 | ||||
-rw-r--r-- | include/crypto/internal/skcipher.h | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/include/crypto/internal/aead.h b/include/crypto/internal/aead.h index 2eba340230a..d838c945575 100644 --- a/include/crypto/internal/aead.h +++ b/include/crypto/internal/aead.h | |||
@@ -31,8 +31,6 @@ static inline void crypto_set_aead_spawn( | |||
31 | crypto_set_spawn(&spawn->base, inst); | 31 | crypto_set_spawn(&spawn->base, inst); |
32 | } | 32 | } |
33 | 33 | ||
34 | struct crypto_alg *crypto_lookup_aead(const char *name, u32 type, u32 mask); | ||
35 | |||
36 | int crypto_grab_aead(struct crypto_aead_spawn *spawn, const char *name, | 34 | int crypto_grab_aead(struct crypto_aead_spawn *spawn, const char *name, |
37 | u32 type, u32 mask); | 35 | u32 type, u32 mask); |
38 | 36 | ||
diff --git a/include/crypto/internal/hash.h b/include/crypto/internal/hash.h index 821eae8cbd8..5bfad8c8059 100644 --- a/include/crypto/internal/hash.h +++ b/include/crypto/internal/hash.h | |||
@@ -83,8 +83,6 @@ struct hash_alg_common *ahash_attr_alg(struct rtattr *rta, u32 type, u32 mask); | |||
83 | 83 | ||
84 | int crypto_register_shash(struct shash_alg *alg); | 84 | int crypto_register_shash(struct shash_alg *alg); |
85 | int crypto_unregister_shash(struct shash_alg *alg); | 85 | int crypto_unregister_shash(struct shash_alg *alg); |
86 | int crypto_register_shashes(struct shash_alg *algs, int count); | ||
87 | int crypto_unregister_shashes(struct shash_alg *algs, int count); | ||
88 | int shash_register_instance(struct crypto_template *tmpl, | 86 | int shash_register_instance(struct crypto_template *tmpl, |
89 | struct shash_instance *inst); | 87 | struct shash_instance *inst); |
90 | void shash_free_instance(struct crypto_instance *inst); | 88 | void shash_free_instance(struct crypto_instance *inst); |
diff --git a/include/crypto/internal/skcipher.h b/include/crypto/internal/skcipher.h index 06e8b32d541..3a748a6bf77 100644 --- a/include/crypto/internal/skcipher.h +++ b/include/crypto/internal/skcipher.h | |||
@@ -34,8 +34,6 @@ static inline void crypto_set_skcipher_spawn( | |||
34 | int crypto_grab_skcipher(struct crypto_skcipher_spawn *spawn, const char *name, | 34 | int crypto_grab_skcipher(struct crypto_skcipher_spawn *spawn, const char *name, |
35 | u32 type, u32 mask); | 35 | u32 type, u32 mask); |
36 | 36 | ||
37 | struct crypto_alg *crypto_lookup_skcipher(const char *name, u32 type, u32 mask); | ||
38 | |||
39 | static inline void crypto_drop_skcipher(struct crypto_skcipher_spawn *spawn) | 37 | static inline void crypto_drop_skcipher(struct crypto_skcipher_spawn *spawn) |
40 | { | 38 | { |
41 | crypto_drop_spawn(&spawn->base); | 39 | crypto_drop_spawn(&spawn->base); |