[corlib] Add missing constructors to RNGCryptoServiceProvider on monotouch
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Mon, 10 Oct 2016 18:13:55 +0000 (20:13 +0200)
committerAlexander Köplinger <alex.koeplinger@outlook.com>
Mon, 10 Oct 2016 18:13:55 +0000 (20:13 +0200)
Those were missed in cb46f78eef5263ce24ba12c583e4c72ac64734c1 because there's a separate
implementation for monotouch in an unrelated file.

mcs/class/corlib/CommonCrypto/SecRandom.cs

index a112faf5570d99236ce2888b1c778a061d6dc4cf..a35fe1dc666eb5bcfb05e1e1fca35b2a7c611c7c 100644 (file)
@@ -39,6 +39,18 @@ namespace System.Security.Cryptography {
                {
                }
                
+               public RNGCryptoServiceProvider (byte[] rgb)
+               {
+               }
+
+               public RNGCryptoServiceProvider (CspParameters cspParams)
+               {
+               }
+
+               public RNGCryptoServiceProvider (string str) 
+               {
+               }
+
                ~RNGCryptoServiceProvider () 
                {
                }