0

I write a program to verify this website:

www.alipay.com

which root CA cert should I download from VeriSign, Inc.?

thlgood
  • 1,275
  • 3
  • 18
  • 36

2 Answers2

4

The curl project itself provides the Mozilla bundle converted to PEM if you'd like that:

http://curl.haxx.se/docs/caextract.html

Daniel Stenberg
  • 54,736
  • 17
  • 146
  • 222
0

You can use this one:

https://knowledge.rapidssl.com/library/VERISIGN/ALL_OTHER/RapidSSL%20Intermediate/RapidSSL_CA_bundle.pem

Or this one from mozilla:

https://mxr.mozilla.org/mozilla/source/security/nss/lib/ckfw/builtins/certdata.txt?raw=1

John Bachir
  • 22,495
  • 29
  • 154
  • 227
  • Beware not to use certificates that are explicitly distrusted in the Mozilla list. (Curl's `caextract` script seems to do this correctly.) – Bruno Apr 26 '12 at 20:39