使用java从Windows访问个人证书

时间:2015-01-10 14:07:32

标签: java certificate digital-certificate

我的本​​地系统中安装了数字证书。在Windows中手动我可以使用certmgr.msc访问个人文件夹中的证书。(不确定文件的位置) 如何使用java程序访问相同的证书?

1 个答案:

答案 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