0

Using https://example.com, I wonder if it is possible to use its SSL certificate for ftps://example.com ? The used certificate is basic like (RapidSSL, PositiveSSL, etc ...)

Sami-L
  • 253
  • 2
  • 6
  • 17

2 Answers2

2

Sure, why shouldn't it? A server certificate identifies a host (by DNS name or IP), not a service. All services on a host can (IMHO even should) use the same certificate.

mschuett
  • 3,146
  • 21
  • 21
  • So, it is possible to use http, ftp, on the same static IP since the domain name is the same ? – Sami-L Oct 17 '12 at 23:25
  • Yes. A client will basically compare the server's name (the one it connects to) with the subject of the certificate -- if they match the cert is accepted. [ignoring wildcards, CAs, etc. for now] So in theory a DNS based certificate will even work with a dynamic IP, as long as the client's name resolution is up to date. – mschuett Oct 17 '12 at 23:39
0

Yes you can without any issues.

sarge
  • 63
  • 1
  • 7