mirror of
https://github.com/TheAlgorithms/PHP.git
synced 2025-07-11 12:06:20 +02:00
Update ciphers/monoAlphabeticCipher.php
Co-authored-by: Brandon Johnson <bbj1979@gmail.com>
This commit is contained in:
@ -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){
|
||||
|
Reference in New Issue
Block a user