System.Security.Cryptography.RijndaelManaged.CreateEncryptor C# (CSharp) 메소드

CreateEncryptor() 공개 메소드

public CreateEncryptor ( ) : ICryptoTransform
리턴 ICryptoTransform
        public override ICryptoTransform CreateEncryptor() => _impl.CreateEncryptor();
        public override ICryptoTransform CreateEncryptor(byte[] rgbKey, byte[] rgbIV) => _impl.CreateEncryptor(rgbKey, rgbIV);

Same methods

RijndaelManaged::CreateEncryptor ( byte rgbKey, byte rgbIV ) : ICryptoTransform

Usage Example

예제 #1
1
 public AuthenticationHelper()
 {
     var rm = new RijndaelManaged();
     encryptor = rm.CreateEncryptor(key, vector);
     decryptor = rm.CreateDecryptor(key, vector);
     encoder = new UTF8Encoding();
 }
All Usage Examples Of System.Security.Cryptography.RijndaelManaged::CreateEncryptor