I hereby claim:
- I am deus42 on github.
- I am deus (https://keybase.io/deus) on keybase.
- I have a public key whose fingerprint is 6812 CCC2 87DD 3F8F B50D 2BD4 9C78 60DE A555 B4DE
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
public class CaesarCipher | |
{ | |
private readonly int _shift; | |
private readonly char[] _alphabet; | |
public CaesarCipher(char[] alphabet, int shift = 2) | |
{ | |
_alphabet = alphabet; | |
_shift = shift; | |
} |