Class Rot13
- Namespace
- SunamoConverters.Converts
- Assembly
- SunamoConverters.dll
Provides ROT13 cipher encoding/decoding methods. ROT13 is a simple letter substitution cipher that replaces a letter with the letter 13 positions after it in the alphabet.
public static class Rot13
- Inheritance
-
Rot13
- Inherited Members
Methods
Transform(string)
Performs the ROT13 character rotation. This method is its own inverse - applying ROT13 twice returns the original text.
public static string Transform(string value)
Parameters
valuestringThe text to transform.
Returns
- string
The ROT13 transformed text.