1

我正在使用来自网络的代码:

import iaik.pkcs.pkcs11.Module;
import iaik.pkcs.pkcs11.Info;

public class PKCS11Test {

public static void main(String[] args) {
    if (args.length == 1) {
        try {
            Module pkcs11Module = Module.getInstance(args[0], "C:/Temp/pkcs11wrapper.dll");
            pkcs11Module.initialize(null);
            Info info = pkcs11Module.getInfo();
            System.out.println(info);
            pkcs11Module.finalize(null);
        } catch (Throwable ex) {
            ex.printStackTrace();
        }
    } else {
        printUsage();
        System.exit(1);
    }
}

protected static void printUsage() {
    System.out.println("ModuleInfo <PKCS#11 module name>");
    System.out.println("e.g.: ModuleInfo pk2priv.dll");
}

}

带参数:pkcs11wrapper.dll 和 VM 参数 -Djava.library.path=C:/Temp。

代码中的“C:/Temp/pkcs11wrapper.dll”不是必需的......

我得到的是:

java.io.IOException: The specified procedure could not be found.

at iaik.pkcs.pkcs11.wrapper.PKCS11Implementation.connect(Native Method)
at iaik.pkcs.pkcs11.wrapper.PKCS11Implementation.<init>(PKCS11Implementation.java:183)
at iaik.pkcs.pkcs11.wrapper.PKCS11Connector.connectToPKCS11Module(PKCS11Connector.java:92)
at iaik.pkcs.pkcs11.Module.getInstance(Module.java:223)
at PKCS11Test.main(PKCS11Test.java:11)

我的 JRE 是 64 位,dll 也是 64 位(用 32 位版本替换它会给出关于错误 dll 版本的明确定义的错误)JRE 是 v1.7.0.21,iaik 包装器 v1.2.18。如果我使用 32 位 JRE 和 32 位 dll,错误是一样的。

这里有什么问题?

我得到了 iaikPkcs11Wrapper v1.3 的源代码,当在 DEBUG 模式下运行时,我到达 line : PKCS11Connector.connectToPKCS11Module(String, String) line: 92
where return new PKCS11Implementation(pkcs11ModulePath, pkcs11WrapperPath);gets 被调用。尽管源中存在 PKCS11Implementation 类,但调试器不想跳转到构造函数代码中:

ClassNotFoundException(Throwable).<init>(String, Throwable) line: 286   
ClassNotFoundException(Exception).<init>(String, Throwable) line: not available 
ClassNotFoundException(ReflectiveOperationException).<init>(String, Throwable) line: not available  
ClassNotFoundException.<init>(String) line: not available   
URLClassLoader$1.run() line: not available  
URLClassLoader$1.run() line: not available  
AccessController.doPrivileged(PrivilegedExceptionAction<T>, AccessControlContext) line: not available [native method]   
Launcher$ExtClassLoader(URLClassLoader).findClass(String) line: not available   
Launcher$ExtClassLoader(ClassLoader).loadClass(String, boolean) line: not available 
Launcher$AppClassLoader(ClassLoader).loadClass(String, boolean) line: not available 
Launcher$AppClassLoader.loadClass(String, boolean) line: not available  
Launcher$AppClassLoader(ClassLoader).loadClass(String) line: not available  
PKCS11Connector.connectToPKCS11Module(String, String) line: 92  

这些结果是在运行仅包含 IAIK 源和测试类的项目时实现的。

4

1 回答 1

3

例外

java.io.IOException: The specified procedure could not be found.
at iaik.pkcs.pkcs11.wrapper.PKCS11Implementation.connect(Native Method)

表示在 DLL pk2priv.dll(或它动态喜欢的 DLL)中,包装器方法找不到要连接的预期本机函数。您使用的是什么驱动程序和硬件?

于 2013-12-02T11:50:16.243 回答