summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8/MD5.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.WP8/MD5.cs')
-rw-r--r--Xamarin.Forms.Platform.WP8/MD5.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.WP8/MD5.cs b/Xamarin.Forms.Platform.WP8/MD5.cs
new file mode 100644
index 00000000..2c0fc206
--- /dev/null
+++ b/Xamarin.Forms.Platform.WP8/MD5.cs
@@ -0,0 +1,12 @@
+using System.Security.Cryptography;
+
+namespace Xamarin.Forms.Platform.WinPhone
+{
+ internal abstract class MD5 : HashAlgorithm
+ {
+ public MD5()
+ {
+ HashSizeValue = 128;
+ }
+ }
+} \ No newline at end of file