Reputation: 113
Is https different from http with ssl? If so, when should one use https and when ssl?
Upvotes: 9
Views: 14934
Reputation: 30847
HTTPS
is a transfer protocol in web and it uses SSL
in its underlying (Socket) layer. Its possible for HTTPS
to use other technologies for achieving security for transferring HTTP
traffic in the future.
SSL
is a way of securing data transfer at socket layer. It could be used for other purposes (i.e FTPS
).
Upvotes: 17