From 17fdde66d94155fc62a034fa6658995bef6fd6e5 Mon Sep 17 00:00:00 2001 From: Jason Smith Date: Tue, 22 Mar 2016 13:02:25 -0700 Subject: Initial import --- Xamarin.Forms.Platform.WP8/MD5.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Xamarin.Forms.Platform.WP8/MD5.cs (limited to 'Xamarin.Forms.Platform.WP8/MD5.cs') 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 -- cgit v1.2.3