diff options
Diffstat (limited to 'checks/mds.test')
-rwxr-xr-x | checks/mds.test | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/checks/mds.test b/checks/mds.test index eb36193a4..a83c03a13 100755 --- a/checks/mds.test +++ b/checks/mds.test @@ -20,14 +20,12 @@ test_one ":1:" "D41D8CD98F00B204E9800998ECF8427E" test_one ":2:" "DA39A3EE5E6B4B0D3255BFEF95601890AFD80709" # RMD160 test_one ":3:" "9C1185A5C5E9FC54612808977EE8F548B2258D31" -# TIGER -if have_hash_algo "TIGER192"; then - test_one ":6:" "24F0130C63AC933216166E76B1BB925FF373DE2D49584E7A" +# SHA-256 +if have_hash_algo "SHA256"; then + test_one ":8:" "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855" else - echo "Hash algorithm TIGER/192 is not installed (not an error)" + echo "Hash algorithm SHA-256 is not installed (not an error)" fi -# SHA-256 -test_one ":8:" "E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855" # SHA-384 if have_hash_algo "SHA384"; then test_one ":9:" "38B060A751AC96384CD9327EB1B1E36A21FDB71114BE07434C0CC7BF63F6E1DA274EDEBFE76F65FBD51AD2F14898B95B" @@ -58,8 +56,6 @@ if have_hash_algo "SHA512"; then test_one ":10:" "4DBFF86CC2CA1BAE1E16468A05CB9881C97F1753BCE3619034898FAA1AABE429955A1BF8EC483D7421FE3C1646613A59ED5441FB0F321389F77F48A879C7B1F1" fi - [ "$failed" != "" ] && error "$failed failed for a..z" exit 0 - |