SSL和Kerberos身份验证之间的区别?

问题描述:

我试图了解SSL和Kerberos身份验证之间的实际区别是什么,以及为什么有时我同时拥有SSL流量和Kerberos. 还是Kerberos以任何方式使用SSL?

I am trying to understand what's the actual difference between SSL and Kerberos authentications, and why sometimes I have both SSL traffic and Kerberos. Or does Kerberos use SSL in any way?

有人可以帮忙吗? 谢谢!

Anyone could help? Thank you!

Kerberos SSL 都是协议,Kerberos是身份验证协议,但SSL是加密协议. Kerberos使用 UDP ,SSL使用(大部分时间) RSA 来完成的. a>或 ECDSA 键嵌入到称为 Windows使用Kerberos 用于例如,在域中使用时.

While Kerberos and SSL are both protocols, Kerberos is an authentication protocol, but SSL is an encryption protocol. Kerberos uses UDP, SSL uses (most of the time) TCP. SSL authentication is usually done by checking the server's and the client's RSA or ECDSA keys embedded in something called X.509 certificates. You're authenticated by your certificate and the corresponding key. With Kerberos, you can be authenticated by your password, or some other way. Windows uses Kerberos for example, when used in domain.

相关说明:SSL的最新版本称为TLS,用于传输层安全性.

Related note: Recent versions of SSL are called TLS for Transport Layer Security.