module ROT26
Overview
TODO Write documentation for Rot26
Defined in:
rot26.crConstant Summary
-
ROTATE =
('z' - 'a') + 1
Class Method Summary
- .decrypt(input : String)
- .decrypt_any(input : String, amount : Int32)
- .decrypt_rot13(input : String)
- .encrypt(input : String)
- .encrypt_any(input : String, amount : Int32)
- .encrypt_rot13(input : String)
Class Method Detail
def self.decrypt_any(input : String, amount : Int32)
#
Decrypt using any amount.
Warning: Please carefully choose the right amount.
New users are recommended to use rot26 for the best security.
def self.decrypt_rot13(input : String)
#
Decrypts the input using rot13.
Warning: Security researchers have managed to crack rot13.
New users are recommended to use rot26 for the best security.
def self.encrypt_any(input : String, amount : Int32)
#
Encrypt using any amount.
Warning: Please carefully choose the right amount.
New users are recommended to use rot26 for the best security.
def self.encrypt_rot13(input : String)
#