比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

Shibboleth SPでの記述例

AAL2を要求する記述例

コード ブロック
titleApache設定
<Location /restricted-attrviewer/ialaal.php>
    ShibRequestSetting authnContextClassRef https://www.gakunin.jp/profile/AAL2
</Location>

IAL2を受信する記述例

コード ブロック
titlePHPコード
$ary = preg_split("/(?<!¥¥¥);/", $_SERVER["assurance"]);
foreach ($ary as $val) {
    if ($val == "https://www.gakunin.jp/profile/IAL2") {
        ....
    }
}

AAL2を受信(要求に応えるのはSAML的にMUSTだが念の為)

コード ブロック
titlePHPコード
if ($_SERVER["Shib-AuthnContext-Class"] == "https://www.gakunin.jp/profile/AAL2") {

...

IAL2について:

  • eduPersonAssurance

...

  • 属性の設定は通常の属性と同じ

AAL2利用シナリオ例:ステップアップ認証パターン

...

東京大学での試行における技術情報提供: