summaryrefslogtreecommitdiff
path: root/package/cryptodev-linux/patches/patch-cryptlib_c
blob: 02e8d9b357febdd2c53e9477379a53234c9fbdef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
--- cryptodev-linux-1.8.orig/cryptlib.c	2015-11-28 02:07:11.000000000 +0100
+++ cryptodev-linux-1.8/cryptlib.c	2016-12-13 02:21:39.899840926 +0100
@@ -36,6 +36,7 @@
 #include <crypto/aead.h>
 #include <linux/rtnetlink.h>
 #include <crypto/authenc.h>
+#include <crypto/skcipher.h>
 #include "cryptodev_int.h"
 
 
@@ -131,11 +132,13 @@ int cryptodev_cipher_init(struct cipher_
 				uint8_t *keyp, size_t keylen, int stream, int aead)
 {
 	int ret;
+	struct crypto_skcipher *tfm;
 
 	if (aead == 0) {
 		struct ablkcipher_alg *alg;
 
-		out->async.s = crypto_alloc_ablkcipher(alg_name, 0, 0);
+		tfm = crypto_alloc_skcipher(alg_name, 0, 0);
+		out->async.s->base = tfm->base;
 		if (unlikely(IS_ERR(out->async.s))) {
 			ddebug(1, "Failed to load cipher %s", alg_name);
 				return -EINVAL;