public string Decrypt(string ciphertext)
 {
     return(_vigenère.Decrypt(ciphertext, this.Charset));
 }
 public string Encrypt(string plaintext, string key)
 {
     return(_vigenère.Decrypt(plaintext, key));
 }
 public string Decrypt(string ciphertext, GronsfeldKey key)
 {
     return(_vigenère.Decrypt(ciphertext, GetVigenèreKey(key)));
 }