Update ciphers/monoAlphabeticCipher.php

Co-authored-by: Brandon Johnson <bbj1979@gmail.com>
This commit is contained in:
YvonneChong18 2022-07-31 16:49:04 +08:00 committed by GitHub
parent 6cb2d4c495
commit 6d02dccbae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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