|
@@ -219,6 +219,29 @@ static int ghash_async_final(struct ahash_request *req)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+static int ghash_async_import(struct ahash_request *req, const void *in)
|
|
|
+{
|
|
|
+ struct ahash_request *cryptd_req = ahash_request_ctx(req);
|
|
|
+ struct shash_desc *desc = cryptd_shash_desc(cryptd_req);
|
|
|
+ struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
|
|
|
+
|
|
|
+ ghash_async_init(req);
|
|
|
+ memcpy(dctx, in, sizeof(*dctx));
|
|
|
+ return 0;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+static int ghash_async_export(struct ahash_request *req, void *out)
|
|
|
+{
|
|
|
+ struct ahash_request *cryptd_req = ahash_request_ctx(req);
|
|
|
+ struct shash_desc *desc = cryptd_shash_desc(cryptd_req);
|
|
|
+ struct ghash_desc_ctx *dctx = shash_desc_ctx(desc);
|
|
|
+
|
|
|
+ memcpy(out, dctx, sizeof(*dctx));
|
|
|
+ return 0;
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
static int ghash_async_digest(struct ahash_request *req)
|
|
|
{
|
|
|
struct crypto_ahash *tfm = crypto_ahash_reqtfm(req);
|
|
@@ -288,8 +311,11 @@ static struct ahash_alg ghash_async_alg = {
|
|
|
.final = ghash_async_final,
|
|
|
.setkey = ghash_async_setkey,
|
|
|
.digest = ghash_async_digest,
|
|
|
+ .export = ghash_async_export,
|
|
|
+ .import = ghash_async_import,
|
|
|
.halg = {
|
|
|
.digestsize = GHASH_DIGEST_SIZE,
|
|
|
+ .statesize = sizeof(struct ghash_desc_ctx),
|
|
|
.base = {
|
|
|
.cra_name = "ghash",
|
|
|
.cra_driver_name = "ghash-clmulni",
|