Create() публичный статический Метод

public static Create ( ) : RC2
Результат RC2
Пример #1
0
 public RC2CryptoServiceProvider()
 {
     _impl = RC2.Create();
     _impl.FeedbackSize = 8;
 }
Пример #2
0
 /// <summary>Creates an instance of a cryptographic object to perform the <see cref="T:System.Security.Cryptography.RC2" /> algorithm.</summary>
 /// <returns>An instance of a cryptographic object.</returns>
 /// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but is not FIPS compatible.</exception>
 // Token: 0x0600224A RID: 8778 RVA: 0x00079284 File Offset: 0x00077484
 public new static RC2 Create()
 {
     return(RC2.Create("System.Security.Cryptography.RC2"));
 }