Beispiel #1
0
 public virtual void Dispose()
 {
     if (_cipher != null)
     {
         _cipher.Dispose();
         _cipher = null;
     }
 }
Beispiel #2
0
 protected LengthPadEncryptImpl(CipherModeImpl cipher) : base(cipher)
 {
 }
Beispiel #3
0
 public LengthPadDecryptImpl(CipherModeImpl cipher) : base(cipher)
 {
     _bufferData = false;
 }
Beispiel #4
0
 public ZerosPadEncryptImpl(CipherModeImpl cipher) : base(cipher)
 {
 }
Beispiel #5
0
 public ISO10126PadEncryptImpl(CipherModeImpl cipher) : base(cipher)
 {
 }
Beispiel #6
0
 public ANSIX923PadEncryptImpl(CipherModeImpl cipher) : base(cipher)
 {
 }
Beispiel #7
0
 public PKCS7PadEncryptImpl(CipherModeImpl cipher) : base(cipher)
 {
 }
Beispiel #8
0
 protected PaddingModeImpl(CipherModeImpl cipher)
 {
     _cipher = cipher;
 }
Beispiel #9
0
 public NoPadImpl(CipherModeImpl cipher) : base(cipher)
 {
 }