System.Security.Cryptography.Rijndael.Create C# (CSharp) Метод

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

public static Create ( ) : Rijndael
Результат Rijndael
        public static new Rijndael Create()
        {
            return new RijndaelImplementation();
        }

Same methods

Rijndael::Create ( string algName ) : Rijndael

Usage Example

 /// <summary>Creates a cryptographic object to perform the <see cref="T:System.Security.Cryptography.Rijndael" /> algorithm.</summary>
 /// <returns>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: 0x06002314 RID: 8980 RVA: 0x0007DD99 File Offset: 0x0007BF99
 public new static Rijndael Create()
 {
     return(Rijndael.Create("System.Security.Cryptography.Rijndael"));
 }