I have begun building a secure string type - which i call SecureStringV2 - to extend the existing SecureString type in the .Net framework. This new type is going to add some basic functionality (checking for equality, comparing etc) to the existing type but still maintain the security provided by the SecureString type, that is clear everything out of memory after the types' use. I plan to achieve these features using the Marshal class and hash algorithms. Pointers on how to get this done and done right would be appreciated. Does any of you see any problems with my ideas of implementing this? Thank you :)

Update: This is where my ideas have lead me so far with respect to the core class of the library. take a look and let me know your thoughts.

/// <summary>
///  This class is extension of the SecureString Class in the .Net framework. 
///  It provides checks for equality of multiple SStringV2 instances and maintains
///  the security provided by the SecureString Class
/// </summary>
public class SStringV2 : IEquatable<SStringV2> , IDisposable
{
    private SecureString secureString = new SecureString();
    private Byte[] sStringBytes;
    private String hash = string.Empty;

    /// <summary>
    ///  SStringV2 constructor
    /// </summary>
    /// <param name="confidentialData"></param>
    public SStringV2(ref Char[] confidentialData)
    {
        GCHandle charArrayHandle = GCHandle.Alloc(confidentialData, GCHandleType.Pinned);
        // The unmanaged string splices a zero byte inbetween every two bytes 
        //and at its end  doubling the total number of bytes
        sStringBytes = new Byte[confidentialData.Length*2];
        try
        {
            for (int index = 0; index < confidentialData.Length; ++index)
            {                   
                secureString.AppendChar(confidentialData[index]);
            }
        }
        finally
        {
            ZeroOutSequence.ZeroOutArray(ref confidentialData);
            charArrayHandle.Free();
        }
    }

    /// <summary>
    /// Computes the hash value of the secured string 
    /// </summary>
    private void GenerateHash()
    {
        IntPtr unmanagedRef = Marshal.SecureStringToBSTR(secureString);
        GCHandle byteArrayHandle = GCHandle.Alloc(sStringBytes, GCHandleType.Pinned);
        Marshal.Copy(unmanagedRef, sStringBytes, 0, sStringBytes.Length);
        SHA256Managed SHA256 = new SHA256Managed();

        try
        {
            hash = Convert.ToBase64String(SHA256.ComputeHash(this.sStringBytes));
        }
        finally
        {
            SHA256.Clear();
            ZeroOutSequence.ZeroOutArray(ref sStringBytes);
            byteArrayHandle.Free(); 
            Marshal.ZeroFreeBSTR(unmanagedRef);
        }
    }

    #region IEquatable<SStringV2> Members

    public bool Equals(SStringV2 other)
    {
        if ((this.hash == string.Empty) & ( other.hash == string.Empty))
        { 
            this.GenerateHash();
            other.GenerateHash();
        }
        else if ((this.hash == string.Empty) & !(other.hash == string.Empty))
        {
            this.GenerateHash();
        }
        else if (!(this.hash == string.Empty) & (other.hash == string.Empty))
        {
            other.GenerateHash();
        }

        if (this.hash.Equals(other.hash))
        {
            return true;
        }
            return false;
    }

    #endregion

    #region IDisposable Members

    public void Dispose()
    {
        secureString.Dispose();
        hash = string.Empty;
        GC.SuppressFinalize(this);
    }

    #endregion
}

}

link|improve this question

You're using single '&' in your comparison methods. Those should be '&&'. – Doug Aug 25 '10 at 16:30
feedback

3 Answers

Just one quick note - You're asking for problems mistaking hash equality with data equality - sure the probability of them being different is low but once you hit it it'll be a nightmare :/ (I had the "luck" to debug and fix a custom hash-map implementation that made the same mistake a few years ago so please trust me on this ;) ).

link|improve this answer
could you elaborate on this. From my perspective, it is only going to be the SecureString and the Hash that will be kept initialised to a relevant value after the Equals() method is called. if the hashes are equal i believe we can safely generalise that the two instance being compared are equal. – gogole Mar 12 '09 at 19:17
To show the problem clearly: With strings 100x longer then the hash it's obvious multiple strings of this or greater lenghts have to have the same hashes right? The same is true for shorter strings with a given probability depending on the hash function used - you've been warned ;) – RnR Mar 15 '09 at 21:10
oh ok, i think i get your perspective of things now.I think there is no cause for alarm since i fed the whole string - i do not extract specific bytes - to the hash function and thus the slightest difference in two strings would certainly produce different hashes. Thanks for the heads up :) – gogole Mar 17 '09 at 12:10
@gogole: Oh no! Not getting it... How many different strings can there be? (surely more than 2^256). How many different values can the hashing function return? Only 2^256. This means that there will be many different strings that return the same hash... – Arjan Einbu Mar 17 '09 at 12:20
@Arjan: very true but I'm wondering who or what in this world would go beyond 2^256 characters of confidential data. I guess its better to be paranoid than leave things to chance. If any of you has better ways of checking for equality could you please post it. – gogole Mar 17 '09 at 12:26
show 6 more comments
feedback

if you pass a char[] array in you start to lose the benefits of securestring. char[] array could be copied around in memory by the garbage collector before it is cleared.

link|improve this answer
very true, pinning the char[] array right after passing it in should solve the problem - at least internally - to some extent i believe. This should do it : GCHandle.Alloc(confidentialData, GCHandleType.Pinned); – gogole Mar 12 '09 at 18:43
it's still wrong. you should only have a method like Append. i actually think securestring is snake oil. i reckon in 99% of cases where ss is used there is a risk that the sensitive data might be inadvertantly written to disk because it is stored somewhere else in the program before it is put in ss. – drscroogemcduck Mar 13 '09 at 9:56
i see two use cases for ss. 1) protect against leaking secure data to swap. it does an 'ok' job at that with a lot of caveats. 2) protect against an active local attacker. in this case it makes things worse because a local attacker can log all the strings added to SecureString. – drscroogemcduck Mar 13 '09 at 10:04
i'm sure the improvements i'm making would provide further security and reduce the attack surface.Could we look at things in this perspective and stop worrying about how structures would be moved around by GC.considering things this was would enable us solve the problems of the old implementation. – gogole Mar 14 '09 at 4:37
Writing the input code in unmanaged languages like C++ should take care of most of our data input worries i believe. Thoughts ? – gogole Mar 14 '09 at 4:39
feedback

Don't forget that SecureString uses two-way encryption. I don't see any encryption in your class.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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