public class Rot13point5
extends Object
This class provides a static method that transforms data using the ROT-13.5 (also possibly known as EBG-13.5) alphabetic and numeric digit rotation technique, typically used for the purpose of disguising information where strong encryption isn't required but some simple obfuscation is useful.
ROT13 (or EBG13) is an interesting case-insensitive symmetric obfuscation technique that rotates letters by circularly shifting them 13 positions within the confines of the English alphabet, while leaving all other characters unchanged. Where most messages are written using letters from the English alphabet, this method provides a useful disguise.
Modifier and Type | Field and Description |
---|---|
static String |
VERSION
Version number of this Package (read-only).
|
Modifier and Type | Method and Description |
---|---|
static String |
transform(String message)
Transforms a message using the ROT13.5 algorithm.
|
public static final String VERSION