-
Notifications
You must be signed in to change notification settings - Fork 0
/
sasl.html
70 lines (70 loc) · 2.42 KB
/
sasl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<meta http-equiv="content-language" content="ja">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/style.css">
<title>SASL</title>
</head>
<body>
<artcle class="article">
<div class="article__heading">
<h1 class="article__heading__title">SASL</h1>
<p class="article__heading__lead">
<em>S</em>imple <em>A</em>uthentication and <em>S</em>ecurity <em>L</em>ayer<br>
アプリケーションプロトコル(SMTP、POPなど)から、認証機構を分離したもの<br>
RFC4422 / RFC4505 / RFC4752<br>
SMTP-Auth でも採用されている<br>
</p>
</div>
<section class="section">
<div class="section__heading">
<h1 class="section__heading__title">認証方式</h1>
</div>
<div class="section__content">
<table>
<tr>
<th>PLAIN</th>
<td>
平文でID、パスワードを送信する。<br>
TLSなど他の暗号方式と合わせて使うべき。
</td>
</tr>
<tr>
<th>LOGIN</th>
<td>
平文でID、パスワードを送信する。<br>
明確な定義がないらしい。
</td>
</tr>
<tr>
<th>CRAM-MD5</th>
<td>
チャレンジレスポンス方式による認証<br>
MD5でハッシュ化する
</td>
</tr>
<tr>
<th>DIGEST-MD5</th>
<td>
CRAM-MD5を強化したもの
</td>
</tr>
</table>
</div>
</section>
<section class="section">
<div class="section__heading">
<h1 class="section__heading__title">参考リンク</h1>
</div>
<div class="section__content">
<ul class="linklist">
<li class="linklist__item"><a href="https://ja.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer">https://ja.wikipedia.org/wiki/Simple_Authentication_and_Security_Layer</a></li>
<li class="linklist__item"><a href="http://www.wdic.org/w/WDIC/SASL">http://www.wdic.org/w/WDIC/SASL</a></li>
</ul>
</div>
</section>
</artcle>
</body>
</html>