System.Security.Cryptography.SHA256.Create(string)

Here are the examples of the csharp api System.Security.Cryptography.SHA256.Create(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : SHA256.cs
with MIT License
from GrapeCity

public static new SHA256 Create () 
		{
			return Create ("System.Security.Cryptography.SHA256");
		}

19 Source : SHA256.cs
with MIT License
from roozbehid

public static new SHA256 Create () 
		{
#if FULL_AOT_RUNTIME
			return new System.Security.Cryptography.SHA256Managed ();
#else
			return Create ("System.Security.Cryptography.SHA256");
#endif
		}