summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGustavo Zacarias <gustavo@zacarias.com.ar>2013-07-10 17:26:19 -0300
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2013-07-11 10:54:56 +0200
commitc77fb1cb8806b1badb255abea8c0b94a484f84d0 (patch)
treeb0b47dd7776a2d2828e2f4c68d5c4696ded5cc9d
parent2ffce7ee339db34b40e107fe35db20c81b4427e4 (diff)
downloadgnutls-c77fb1cb8806b1badb255abea8c0b94a484f84d0.tar.gz
Eliminate reset from cryptodev hashes and mac
It wasn't done in 73ec74c2 and 6f0ecbf4 for cryptodev causing build failures. Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
-rw-r--r--lib/accelerated/cryptodev.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/accelerated/cryptodev.c b/lib/accelerated/cryptodev.c
index f0c583d319..7bb9478794 100644
--- a/lib/accelerated/cryptodev.c
+++ b/lib/accelerated/cryptodev.c
@@ -49,7 +49,6 @@ struct cryptodev_ctx
struct session_op sess;
struct crypt_op cryp;
uint8_t iv[EALG_MAX_BLOCK_LEN];
- int reset;
int cfd;
};
@@ -355,7 +354,6 @@ static const gnutls_crypto_mac_st mac_struct = {
.hash = NULL,
.output = NULL,
.deinit = NULL,
- .reset = NULL,
.fast = cryptodev_mac_fast
};
@@ -406,7 +404,6 @@ static const gnutls_crypto_digest_st digest_struct = {
.hash = NULL,
.output = NULL,
.deinit = NULL,
- .reset = NULL,
.fast = cryptodev_digest_fast
};