如何访问苹果 OS X 中安装的证书

发布于 2024-11-29 05:39:04 字数 161 浏览 1 评论 0原文

就像在 Windows 中一样,我们有真正古老的 Capicom,它为我们提供了与 CryptoAPI 等效的接口,有什么东西可以帮助在苹果系统中获得证书吗?

如果没有,有什么方法可以访问它们吗?作者:bouncy Castle、Itext、java native...

谢谢

As in Windows, that we have the really old Capicom, that interfaces the CryptoAPI equivalent for us, is there something that helps getting a certificate in a apple system?

If not, is there some way to access them? By bouncy Castle, Itext, java native...

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风吹过旳痕迹 2024-12-06 05:39:04

您可以使用 Java KeyStore API 访问 KeyChain,如 @vcsjones 所说。这是一些代码示例:

KeyStore ks = KeyStore.getInstance("KeychainStore");
ks.load(null);
Enumeration<String> e = ks.aliases();
while (e.hasMoreElements()) {
    String alias = e.nextElement();
    if (ks.isCertificateEntry(alias)) {
        System.out.printf("%s (certificate)\n", alias);
    } else if (ks.isKeyEntry(alias)) {
        System.out.printf("%s (key)\n", alias);
    } else {
        System.out.printf("%s (???)\n", alias);
    }
}

You can access the KeyChain with the Java KeyStore API as said by @vcsjones. This is some code sample:

KeyStore ks = KeyStore.getInstance("KeychainStore");
ks.load(null);
Enumeration<String> e = ks.aliases();
while (e.hasMoreElements()) {
    String alias = e.nextElement();
    if (ks.isCertificateEntry(alias)) {
        System.out.printf("%s (certificate)\n", alias);
    } else if (ks.isKeyEntry(alias)) {
        System.out.printf("%s (key)\n", alias);
    } else {
        System.out.printf("%s (???)\n", alias);
    }
}
蓝咒 2024-12-06 05:39:04

您可能正在寻找 OSX 的钥匙串。 Java 有一个 API,它使用 <代码>KeyStore。您感兴趣的方法可能是getCertificate

You are probably looking for OSX's keychain. Java has an API which interacts with it using the KeyStore. The method of interest to you is probably getCertificate.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文