gpt4 book ai didi

java - 加载 MSCAPI Java keystore 而不加载私钥(硬 token )

转载 作者:搜寻专家 更新时间:2023-10-30 21:10:17 27 4
gpt4 key购买 nike

我想在 Java 中加载一个 MSCAPI keystore 并检查 MY 存储中的可用证书。但是,这些证书的一些 key 驻留在硬件 token 上,并且弹出窗口会在加载期间询问 token 。

有没有办法在加载 Windows keystore 时延迟加载私钥?

keyStore = KeyStore.getInstance("Windows-MY", "SunMSCAPI");
keystore.load(null,null);

最佳答案

弹出窗口是从 MS-CAPI 加密服务提供程序 (CSP) 激活的 - USB token 制造商提供的 DLL - 最后通过驱动程序(也由 token 制造商提供)与 token 通信。 KeyStore 只是进行调用,中间的层只是传递它; token 上的固件是抛出身份验证弹出窗口并维护 session 状态等的固件。

关键的 Java dll 是 sunmscapi.dll,它具有实现:

// Use CertEnumCertificatesInStore to get the certificates
// from the open store. pCertContext must be reset to
// NULL to retrieve the first certificate in the store.
while (pCertContext = ::CertEnumCertificatesInStore(hCertStore, pCertContext))
{
// Check if private key available - client authentication certificate
// must have private key available.
HCRYPTPROV hCryptProv = NULL;
DWORD dwKeySpec = 0;
HCRYPTKEY hUserKey = NULL;
BOOL bCallerFreeProv = FALSE;
BOOL bHasNoPrivateKey = FALSE;
DWORD dwPublicKeyLength = 0;

if (::CryptAcquireCertificatePrivateKey(pCertContext, NULL, NULL,
&hCryptProv, &dwKeySpec, &bCallerFreeProv) == FALSE)
{
bHasNoPrivateKey = TRUE;

} else {
// Private key is available

BOOL bGetUserKey = ::CryptGetUserKey(hCryptProv, dwKeySpec, &hUserKey);

// Skip certificate if cannot find private key
if (bGetUserKey == FALSE)
{
if (bCallerFreeProv)
::CryptReleaseContext(hCryptProv, NULL);

continue;
}
....

如您所见,它始终检查私钥。您必须修改此代码并创建 sunmscapi.dll 的自定义版本以避免此情况或以其他方式破坏此检查。

关于java - 加载 MSCAPI Java keystore 而不加载私钥(硬 token ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12937604/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com