我使用softhsm
作为pkcs11提供程序,我的平台是ubuntu 64
我想使用softhsm
加密,所以我将一个密钥导入到插槽0中,它告诉该密钥已导入,当我尝试导入另一个具有该ID的密钥时,它表示使用了ID,因此提供商已导入密钥。但是当我尝试通过代码找到密钥时,包装器找不到任何密钥。我的代码有问题吗?或者什么??
Module pkcs11Module = Module.getInstance("libsofthsm.so");
pkcs11Module.initialize(null );
Info info = pkcs11Module.getInfo();
System.out.println(info);
Slot[] slotsWithToken = pkcs11Module.getSlotList(Module.SlotRequirement.TOKEN_PRESENT);
Token token = slotsWithToken[0].getToken();
Session session = token.openSession(Token.SessionType.SERIAL_SESSION,
Token.SessionReadWriteBehavior.RO_SESSION,
null,
null);
RSAPrivateKey searchTemplate = new RSAPrivateKey();
searchTemplate.getSign().setBooleanValue(Boolean.TRUE);
session.findObjectsInit(searchTemplate);
Object[] matchingKeys;
RSAPrivateKey signatureKey;
if ((matchingKeys = session.findObjects(1)).length > 0) {
signatureKey = (RSAPrivateKey) matchingKeys[0];
} else {
signatureKey = null; //It goes here so no key was found.
}