RosettaCodeData/Task/Substitution-cipher/00-TASK.txt
2023-07-01 13:44:08 -04:00

19 lines
613 B
Text

Substitution Cipher Implementation - File Encryption/Decryption
;Task:
Encrypt an input/source file by replacing every upper/lower case alphabets of the source file with another predetermined upper/lower case alphabets or symbols and save it into another output/encrypted file and then again convert that output/encrypted file into original/decrypted file.
This type of Encryption/Decryption scheme is often called a Substitution Cipher.
;Related tasks:
* [[Caesar cipher]]
* [[Rot-13]]
* [[Vigenère Cipher/Cryptanalysis]]
;See also:
* [[wp:Substitution_cipher|Wikipedia: Substitution cipher]]
<br><br>