vote up 1 vote down star

I know the .NET library offers a way of storing a string in a protected/secure manner = SecureString.

My question is, if I would like to store a byte array, what would be the best, most secure container to hold this?

flag

69% accept rate

4 Answers

vote up 1 vote down

There is no "best" way to do this - you need to identify the threat you are trying to protect against in order to decide what to do or indeed if anything needs to be done.

One point to note is that, unlike a string which is immutable, you can zero out the bytes in a byte array after you've finished with them, so you won't have the same set of problems that SecureString is designed to solve.

Encrypting data could be appropriate for some set of problems, but then you will need to identify how to protect the key from unauthorized access.

I find it difficult to imagine a situation where encrypting a byte array in this way would be useful. More details of exactly what you're trying to do would help.

link|flag
vote up 0 vote down

encrypt your byte array with any of cryptographic methods for example RijndaelManaged , and than store wherever you like :)

link|flag
vote up 0 vote down

One option:

You could store the bytes in a memory stream, encrypted using any of the providers in the System.Security.Cryptography namespace.

link|flag
True, but before it's encrypted, it's vulnerable. – John Saunders Jul 22 at 17:44
True - but that's the case using any technique - If it's static, you can encrypt it in advance, and read in the encrypted bytes - but if it's dynamic, it's always going to exist at some point unprotected (including if you feed it into a SecureString). It's about reducing your vulnerable window more than eliminating it. – Reed Copsey Jul 22 at 17:58
vote up 1 vote down

You could use SecureString to store the byte array.

  SecureString testString = new SecureString();

  // Assign the character array to the secure string.
  foreach (byte b in bytes)
     testString.AppendChar((char)b);

then you just reverse the process to get the bytes back out.


This isn't the only way, you can always use a MemoryBuffer and and something out of System.Security.Cryptography. But this is the only thing specifically designed to be secure in this way. All others you would have to create with the System.Security.Cryptography, which is probably the best way for you to go.

link|flag
So this is the only "Secure" structure in the .NET library? – Nick Jul 22 at 17:42
This can lead to problems if the bytes have 0 values - since you're going to be putting them into a null terminated string. – Reed Copsey Jul 22 at 17:43
Is SecureString null-terminated? – John Saunders Jul 22 at 17:44
I don't believe so. No .NET string is null terminated. – Randolpho Jul 22 at 17:47
No this isn't the only way, you can always use a MemoryBuffer and and something out of System.Security.Cryptography. But this is the only thing specifically designed to be secure in this way. All others you would have to create with the System.Security.Cryptography, which is probably the best way for you to go. – Nick Berardi Jul 22 at 18:15
show 1 more comment

Your Answer

Get an OpenID
or

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