Update ciphers/monoAlphabeticCipher.php decrypt function

Co-authored-by: Brandon Johnson <bbj1979@gmail.com>
This commit is contained in:
YvonneChong18 2022-07-27 18:51:45 +08:00 committed by GitHub
parent b3fa7c7961
commit 9e10db292e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,8 @@ function maEncrypt($key, $alphabet, $text){
return cipher($key, $alphabet, $text);
}
function decrypt($key, $alphabet, $text){
function maDecrypt($key, $alphabet, $text){
return cipher($alphabet, $key, $text);
}