public DoubleTranspositionCipher(IKeywordedEncryption encryption, IKeywordedDecryption decryption)
 {
     this.encryption = encryption;
     this.decryption = decryption;
 }
 public DoubleTranspositionCipher()
 {
     this.encryption = new DTEncryption();
     this.decryption = new DTDecryption();
 }