Beispiel #1
0
		public static new GOST Create (string hashName)
		{
			object o = CryptoConfig.CreateFromName (hashName);
			// in case machine.config isn't configured to use any GOST implementation
			if (o == null) {
				o = new GOSTNative ();
			}
			return (GOST) o;
		}
Beispiel #2
0
 public static new GOST Create(string hashName)
 {
     object o = CryptoConfig.CreateFromName (hashName);
     // in case machine.config isn't configured to use any GOST implementation
     if (o == null) {
         o = new GOSTNative ();
     }
     return (GOST) o;
 }