标签: java certificate digital-certificate
我的本地系统中安装了数字证书。在Windows中手动我可以使用certmgr.msc访问个人文件夹中的证书。(不确定文件的位置) 如何使用java程序访问相同的证书?
答案 0 :(得分:2)
我认为可以使用" Windows-MY"密钥库类型:
KeyStore personalKS = KeyStore.getInstance(" Windows-MY");
请参阅"Access Microsoft CryptoAPI and Its Cryptographic Services" section of the "Leveraging Security in the Native Platform Using Java SE 6 Technology" Oracle's article。