Subversion 使用什么作为其 CA 列表?

Subversion 使用什么作为其 CA 列表?

我在 Mac OS X 上使用 SVN。通常,当我从 SourceForge 检出某些内容时,我会看到:

$ svn checkout https://svn.code.sf.net/p/cryptopp/code/trunk/c5 cryptopp-ecies
Error validating server certificate for 'https://svn.code.sf.net:443':
 - The certificate is not issued by a trusted authority. Use the
   fingerprint to validate the certificate manually!
Certificate information:
 - Hostname: *.code.sf.net
 - Valid: from Thu, 16 Apr 2015 00:00:00 GMT until Sun, 15 May 2016 23:59:59 GMT
 - Issuer: GeoTrust Inc., US
 - Fingerprint: 1f:7b:73:d5:cf:71:18:76:d5:23:f3:07:c9:2f:f5:4a:52:67:0f:68

OpenSSLs_client显示最顶层的 CA 是Equifax 安全证书颁发机构

$ openssl s_client -connect svn.code.sf.net:443 -showcerts
...
---
Certificate chain
 0 s:/C=US/ST=New York/L=New York/O=Dice Career Solutions/OU=code.sf.net/CN=*.code.sf.net
   i:/C=US/O=GeoTrust Inc./CN=GeoTrust SSL CA - G3
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
 1 s:/C=US/O=GeoTrust Inc./CN=GeoTrust SSL CA - G3
   i:/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----
 2 s:/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA
   i:/C=US/O=Equifax/OU=Equifax Secure Certificate Authority
-----BEGIN CERTIFICATE-----
...
-----END CERTIFICATE-----

Equifax 安全证书颁发机构 存在于 OS X 的 Keychain 中:

在此处输入图片描述

所以我不太清楚为什么 Subversion 会提示我。

问题:Subversion 使用什么作为其 CA 列表?


这是 Apple 的 1.7.10 版本的 SVN(而不是 Brew 或 Macports):

$ which svn
/usr/bin/svn
$ svn --version
svn, version 1.7.10 (r1485443)
   compiled Jan 15 2014, 11:22:16

Apple 的manSVN 页面仅用一段话描述了该程序。它甚至没有详细说明开关。

答案1

默认情况下,svn 客户端不使用任何证书。您有两个选择:

1.

ca-bundle.crt从以下链接下载最新的 Mozilla CA 证书文件cURL 网页

servers在您的主目录中查找名为 的 svn 配置文件: ~/.subversion/servers。如果文件和.subversion文件夹不存在,则创建它们。

servers在配置部分添加证书包的路径global

[global]
ssl-authority-files = /path/to/the/ca-bundle.crt

2.

安装 OpenSSL 的 CA 证书并将以下行添加到您的servers配置文件的global部分:

[global]
ssl-trust-default-ca = yes

最初我以为第二个选项在 OS X 上不起作用,但经过测试,它确实起作用。

相关内容