1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
using System.Security;
using System.Runtime.InteropServices;
namespace System.Net
{
static partial class UnsafeNclNativeMethods
{
internal unsafe static class SecureStringHelper
{
internal static string CreateString(SecureString secureString)
{
string plainString;
IntPtr bstr = IntPtr.Zero;
if (secureString == null || secureString.Length == 0)
return String.Empty;
#if MONO
try
{
bstr = Marshal.SecureStringToGlobalAllocUnicode(secureString);
plainString = Marshal.PtrToStringUni(bstr);
}
finally
{
if (bstr != IntPtr.Zero)
Marshal.ZeroFreeGlobalAllocUnicode(bstr);
}
#else
try
{
bstr = Marshal.SecureStringToBSTR(secureString);
plainString = Marshal.PtrToStringBSTR(bstr);
}
finally
{
if (bstr != IntPtr.Zero)
Marshal.ZeroFreeBSTR(bstr);
}
#endif
return plainString;
}
internal static SecureString CreateSecureString(string plainString)
{
SecureString secureString;
if (plainString == null || plainString.Length == 0)
return new SecureString();
fixed (char* pch = plainString)
{
secureString = new SecureString(pch, plainString.Length);
}
return secureString;
}
}
}
}
|