Update security.php

This commit is contained in:
Namhyeon Go 2018-09-07 18:04:35 +09:00 committed by GitHub
parent fea186e5ee
commit 8d36ff42e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -186,6 +186,10 @@ if(!function_exists("get_hashed_text")) {
break;
case "crypt":
$hashed_text = crypt($text);
break;
case "base64":
$hashed_text = base64_encode($text);
break;
default:
$hashed_text = "";
}