System.Security.Cryptography.RC2.Create C# (CSharp) Method

Create() public static method

public static Create ( ) : RC2
return RC2
        public static new RC2 Create()
        {
            return new RC2Implementation();
        }

Same methods

RC2::Create ( string AlgName ) : RC2

Usage Example

Beispiel #1
0
 public RC2CryptoServiceProvider()
 {
     _impl = RC2.Create();
     _impl.FeedbackSize = 8;
 }
All Usage Examples Of System.Security.Cryptography.RC2::Create