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

Create() public static method

public static Create ( ) : SHA384
return SHA384
        public static new SHA384 Create()
        {
            return new Implementation();
        }

Same methods

SHA384::Create ( string hashName ) : SHA384

Usage Example

Beispiel #1
0
 /// <summary>Creates an instance of the default implementation of <see cref="T:System.Security.Cryptography.SHA384" />.</summary>
 /// <returns>A new instance of <see cref="T:System.Security.Cryptography.SHA384" />.</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>
 /// <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 SHA384 Create()
 {
     return(SHA384.Create("System.Security.Cryptography.SHA384"));
 }