Merge pull request #697 from linquize/atom-bug
[mono.git] / mcs / class / corlib / System.Security.Cryptography / HMACMD5.cs
old mode 100755 (executable)
new mode 100644 (file)
index 39eb9ad..0f0ea84
@@ -2,13 +2,11 @@
 // HMACMD5.cs: HMAC implementation using MD5
 //
 // Author:
-//     Sebastien Pouliot (spouliot@motus.com)
+//     Sebastien Pouliot  <sebastien@xamarin.com>
 //
 // (C) 2003 Motus Technologies Inc. (http://www.motus.com)
-//
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
+// Copyright 2013 Xamarin Inc. (http://www.xamarin.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
@@ -30,9 +28,7 @@
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-#if NET_2_0
-
-using System;
+using System.Runtime.InteropServices;
 
 using Mono.Security.Cryptography;
 
@@ -45,23 +41,23 @@ namespace System.Security.Cryptography {
        // b.   IETF RFC2202: Test Cases for HMAC-MD5 and HMAC-SHA-1
        //      (include C source for HMAC-MD5 and HAMAC-SHA1)
        //      http://www.ietf.org/rfc/rfc2202.txt
-
+       [ComVisible (true)]
        public class HMACMD5 : HMAC {
 
-               public HMACMD5 () : this (KeyBuilder.Key (8)) {}
-
-               public HMACMD5 (byte[] rgbKey) : base ()
+               public HMACMD5 () 
+                       : this (KeyBuilder.Key (8))
                {
-                       HashName = "MD5";
-                       HashSizeValue = 128;
-                       Key = rgbKey;
                }
 
-               ~HMACMD5 () 
+               public HMACMD5 (byte[] key) : base ()
                {
-                       Dispose (false);
+#if FULL_AOT_RUNTIME
+                       SetHash ("MD5", new MD5CryptoServiceProvider ());
+#else
+                       HashName = "MD5";
+#endif
+                       HashSizeValue = 128;
+                       Key = key;
                }
        }
 }
-
-#endif
\ No newline at end of file