I've been looking into using the System.Security.SecureString class to hold credit card numbers in memory while they are being processed. Has anyone used the SecureString class for holding credit card numbers, or do most just use the normal System.String class?

link|improve this question

1  
Better question: is System.SecureString actually secure enough for this application? – JSBձոգչ Jul 22 '10 at 20:00
@JSBangs: Well, from what I understand, System.SecureString is specifically meant for this purpose. However, because so many other APIs within the .NET framework still use the normal System.String class, it is difficult to maintain the security of the string throughout the application. I guess my question really is: Is it worth the effort to try and secure the data from end-to-end in memory, or are there just too many gaps in the API where this is not supported that true security would not be achieved anyway? – NYSystemsAnalyst Jul 22 '10 at 20:04
feedback

2 Answers

up vote 4 down vote accepted

From a PCI-DSS perspective, there is no requirement to protect card numbers stored only in memory.

PCI states only that card numbers persisted to disk, or transmitted across a network must be encrypted. This is a common sense approach to the issue. Using SecureString will ensure that the string is never cached to disk, but as you say - its troublesome to use. This post has some good suggestions though: http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes#123141

In theory, protecting memory sounds like it would add strength, but in truth if a bad guy has access to the RAM, then its pretty much game over anyway.

link|improve this answer
The PCI requirements are the right location to look for an answer here^^ – cRichter Jul 23 '10 at 12:51
feedback

I use SecureString for other stuff (not credit cards), if it's going to be cached in memory for an extended time.

The problem I keep encountering is that you still have to marshal it to a normal String in order to actually use it for anything, so it's really limited in its usefulness.

I've created a couple of extension methods to ease working with them a little bit:

    public static unsafe SecureString Secure(this string source)
    {
        if (source == null)
            return null;
        if (source.Length == 0)
            return new SecureString();

        fixed (char* pChars = source.ToCharArray())
        {
            SecureString secured = new SecureString(pChars, source.Length);
            return secured;
        }
    }


    public static string Unsecure(this SecureString source)
    {
        if (source == null)
            return null;

        IntPtr bstr = Marshal.SecureStringToBSTR(source);
        try
        {
            return Marshal.PtrToStringUni(bstr);
        }
        finally
        {
            Marshal.ZeroFreeBSTR(bstr);
        }
    }
link|improve this answer
1  
This defeats the purpose. As soon as you convert from/to System.String, it is no longer secure. – Hans Passant Jul 22 '10 at 20:56
@Hans -- I believe I addressed that shortcoming in the second paragraph of my response. – Toby Jul 23 '10 at 12:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.