public class Rot47
extends Object
ROT47 is an interesting symmetric obfuscation technique that rotates a partial range of ASCII characters by circularly shifting them 47 positions within the range of ASCII character 33 through 126, while leaving all other characters unchanged. ROT47 provides a greater degree of obfuscation than either ROT13 or ROT13.5 do.
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 ROT47 algorithm.
|
public static final String VERSION