Merge pull request #1404 from woodsb02/mono-route
[mono.git] / mcs / class / corlib / System.Security.Cryptography / KeyedHashAlgorithm.cs
index 616a8131654b64eaa2d78043d21ada8d827b5c19..abab189b2499ff7c21879d5c64764944279b25a8 100644 (file)
@@ -79,7 +79,11 @@ public abstract class KeyedHashAlgorithm : HashAlgorithm {
 
        public static new KeyedHashAlgorithm Create ()
        {
+#if FULL_AOT_RUNTIME
+               return new System.Security.Cryptography.HMACSHA1 ();
+#else
                return Create ("System.Security.Cryptography.KeyedHashAlgorithm");
+#endif
        }
 
        public static new KeyedHashAlgorithm Create (string algName)