]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/crypto.h
crypto: hash - Removed vestigial ahash fields
[linux-2.6-omap-h63xx.git] / include / linux / crypto.h
index b6efe569128d8cf5a786100346a65789ad8fdd08..68ef293644d37afa081a3aaeacf8b23718bf4135 100644 (file)
@@ -137,8 +137,6 @@ struct ablkcipher_request {
 struct ahash_request {
        struct crypto_async_request base;
 
-       void *info;
-
        unsigned int nbytes;
        struct scatterlist *src;
        u8                 *result;
@@ -420,7 +418,6 @@ struct ahash_tfm {
                        unsigned int keylen);
 
        unsigned int digestsize;
-       struct crypto_ahash *base;
        unsigned int reqsize;
 };
 
@@ -1384,7 +1381,7 @@ static inline int crypto_ahash_setkey(struct crypto_ahash *tfm,
 {
        struct ahash_tfm *crt = crypto_ahash_crt(tfm);
 
-       return crt->setkey(crt->base, key, keylen);
+       return crt->setkey(tfm, key, keylen);
 }
 
 static inline int crypto_ahash_digest(struct ahash_request *req)
@@ -1396,7 +1393,7 @@ static inline int crypto_ahash_digest(struct ahash_request *req)
 static inline void ahash_request_set_tfm(struct ahash_request *req,
                                         struct crypto_ahash *tfm)
 {
-       req->base.tfm = crypto_ahash_tfm(crypto_ahash_crt(tfm)->base);
+       req->base.tfm = crypto_ahash_tfm(tfm);
 }
 
 static inline struct ahash_request *ahash_request_alloc(