タグ

saslと認証に関するkgbuのブックマーク (2)

  • SASL: Simple Authentication and Security Layer

    SASL is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols. To use SASL, a protocol includes a command for identifying and authenticating a user to a server and for optionally negotiating protection of subsequent protocol interactions. If its use is negotiated, a security layer is inserted between the protocol and the connection.

  • SMTP AUTHENTICATION

    いろいろなところで SMTP サーバーが必要になってきました。しかし、sendmail を不正使用されないような設定や SPAM 対策がされています。そこで、sendmail に認証のメカニズムを組み込み、認証が正常に行なわれたら SMTP サーバーとして利用できるようにします。それを実現する機能として、SMTP AUTH を利用します。しかし、OutLook Express, Netscape Messanger といったメジャーな MUA はセキュリティーレベルの低い認証方式を利用しているので SMTP over SSLを設定して暗号化しておく必要があります(ここでは SSL の設定は省略しています)。 認証の機構には、SASL(Simple Authentication and Security Layer)を利用します。SASLは、認証方式(メカニズム)と照合方法が数多くサ

  • 1