(PHP 4 >= 4.0.2, PHP 5)
mcrypt_list_algorithms — サポートされる全ての暗号を配列として取得する
lib_dir パラメータにあるサポートするすべてのアルゴリズムの一覧を取得します。
すべてのアルゴリズムが存在するディレクトリを指定します。 指定しない場合は、php.ini の mcrypt.algorithms_dir ディレクティブを使用します。
サポートするすべてのアルゴリズムを配列で返します。
例1 mcrypt_list_algorithms() の例
<?php
$algorithms = mcrypt_list_algorithms("/usr/local/lib/libmcrypt");
foreach ($algorithms as $cipher) {
echo "$cipher<br />\n";
}
?>
この例は、"/usr/local/lib/libmcrypt" ディレクトリにある全ての サポートされるアルゴリズムの一覧を表示します。