我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.
}