You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.0 KiB
36 lines
1.0 KiB
2 years ago
|
From a9fed51fbf159a98fcd4a9dddf4fef243bb433af Mon Sep 17 00:00:00 2001
|
||
|
From: Ingo Franzki <ifranzki@linux.ibm.com>
|
||
|
Date: Fri, 20 Jan 2023 11:04:18 +0100
|
||
|
Subject: [PATCH] zkey: Support EP11 host library version 4 (#2165812)
|
||
|
MIME-Version: 1.0
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
|
||
|
Try to load libep11.so.4 if available, but fallback to older
|
||
|
library versions if not.
|
||
|
|
||
|
Reviewed-by: Jörg Schmidbauer <jschmidb@de.ibm.com>
|
||
|
Signed-off-by: Ingo Franzki <ifranzki@linux.ibm.com>
|
||
|
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
|
||
|
(cherry picked from commit 6222c384958729bc4b5bad61ad38967647cc3248)
|
||
|
---
|
||
|
zkey/ep11.c | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/zkey/ep11.c b/zkey/ep11.c
|
||
|
index 58dc3c5..8359929 100644
|
||
|
--- a/zkey/ep11.c
|
||
|
+++ b/zkey/ep11.c
|
||
|
@@ -35,7 +35,7 @@
|
||
|
* Definitions for the EP11 library
|
||
|
*/
|
||
|
#define EP11_LIBRARY_NAME "libep11.so"
|
||
|
-#define EP11_LIBRARY_VERSION 3
|
||
|
+#define EP11_LIBRARY_VERSION 4
|
||
|
#define EP11_WEB_PAGE "http://www.ibm.com/security/cryptocards"
|
||
|
|
||
|
/**
|
||
|
--
|
||
|
2.39.1
|
||
|
|