diff options
author | Paul Selkirk <paul@psgd.org> | 2018-08-27 17:20:19 -0400 |
---|---|---|
committer | Paul Selkirk <paul@psgd.org> | 2018-08-27 17:20:19 -0400 |
commit | 5c390f6fafcb85bbc665c3471d848d992b2614c6 (patch) | |
tree | 0122413b73329788f9e91db743512480e0021167 | |
parent | e16d7c29b738e6f7abff80f0220c6fc4633bb15c (diff) |
Fix shared library name
-rw-r--r-- | scripts/py11-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/py11-test.py b/scripts/py11-test.py index 87af29d..7a0e1d8 100644 --- a/scripts/py11-test.py +++ b/scripts/py11-test.py @@ -65,7 +65,7 @@ ec_curve_oid_p256 = "".join(chr(i) for i in (0x06, 0x08, 0x2a, 0x86, 0x48, 0xce, ec_curve_oid_p384 = "".join(chr(i) for i in (0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x22)) ec_curve_oid_p521 = "".join(chr(i) for i in (0x06, 0x05, 0x2b, 0x81, 0x04, 0x00, 0x23)) -p11 = PKCS11("./libpkcs11.so") +p11 = PKCS11("./libcryptech-pkcs11.so") if False: print "Not using MUTEXes at all" |