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

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

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

Same methods

TripleDES::Create ( string str ) : TripleDES

Usage Example

Пример #1
0
 /// <summary>Creates an instance of a cryptographic object to perform the <see cref="T:System.Security.Cryptography.TripleDES" /> algorithm.</summary>
 /// <returns>An instance of a cryptographic object.</returns>
 /// <PermissionSet>
 ///   <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="UnmanagedCode" />
 /// </PermissionSet>
 public new static TripleDES Create()
 {
     return(TripleDES.Create("System.Security.Cryptography.TripleDES"));
 }
All Usage Examples Of System.Security.Cryptography.TripleDES::Create