コード例 #1
0
ファイル: CeasarCipher.cs プロジェクト: bargross/Ciphers
 public CeasarCipher()
 {
     _globalShifter = new WordShifter();
 }
コード例 #2
0
 public ROT13Cipher()
 {
     _globalShifter = new WordShifter();
 }