Merge pull request #3528 from BrzVlad/fix-sgen-check-before-collections
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Pkcs / AlgorithmIdentifier.cs
index d836c1e4ff2b75442e9e59883be7e127f316a278..27c57d109251c83dbfc42e9ebf1ebba3a5328216 100644 (file)
@@ -45,15 +45,15 @@ namespace System.Security.Cryptography.Pkcs {
                        _params = new byte [0];
                }
 
-               public AlgorithmIdentifier (Oid algorithm)
+               public AlgorithmIdentifier (Oid oid)
                {
-                       _oid = algorithm;
+                       _oid = oid;
                        _params = new byte [0];
                }
 
-               public AlgorithmIdentifier (Oid algorithm, int keyLength)
+               public AlgorithmIdentifier (Oid oid, int keyLength)
                {
-                       _oid = algorithm;
+                       _oid = oid;
                        _length = keyLength;
                        _params = new byte [0];
                }