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

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

Creates an instance of the default implementation of the RIPEMD160 hash algorithm.
public static Create ( ) : RIPEMD160
Результат RIPEMD160
		public static new RIPEMD160 Create () 
		{
			return Create ("System.Security.Cryptography.RIPEMD160");
		}

Same methods

RIPEMD160::Create ( string hashName ) : RIPEMD160

Usage Example

Пример #1
0
 /// <summary>Creates an instance of the default implementation of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm.</summary>
 /// <returns>A new instance of the <see cref="T:System.Security.Cryptography.RIPEMD160" /> hash algorithm.</returns>
 /// <exception cref="T:System.Reflection.TargetInvocationException">The algorithm was used with Federal Information Processing Standards (FIPS) mode enabled, but it 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 RIPEMD160 Create()
 {
     return(RIPEMD160.Create("System.Security.Cryptography.RIPEMD160"));
 }