Example #1
0
 public SymmetricCipherType(int keySize, CryptographyStandard cryptographyStandard, CipherMode cipherMode)
     : base(keySize, cryptographyStandard, cipherMode)
 {
 }
Example #2
0
 public override string ToString()
 {
     return($"{CryptographyStandard.ToString()}-{KeySize}-{CipherMode.ToString()}".ToLower());
 }
Example #3
0
 public BaseCipherType(int keySize, CryptographyStandard cryptographyStandard, CipherMode cipherMode)
 {
     KeySize = keySize;
     CryptographyStandard = cryptographyStandard;
     CipherMode           = cipherMode;
 }