Tagged Questions

22
votes
4answers
587 views

How is SecureString “encrypted” and still usable?

According to MSDN SecureString contents is encrypted for additional safety so that if the program is swapped to disk the string contents can't be sniffed. How is such encryption possible I wonder? ...
6
votes
5answers
3k views

C# SecureString Question

Is there any way to get the value of a SecureString without comprising security? For example, in the code below as soon as you do PtrToStringBSTR the string is no longer secure because strings are ...
5
votes
7answers
805 views

Securely store a password in program code?

My application makes use of the RijndaelManaged class to encrypt data. As a part of this encryption, I use a SecureString object loaded with a password which get's get converted to a byte array and ...
5
votes
2answers
2k views

C#: Ask User for a Password which is then stored in a SecureString

In the small application that I'm currently developing for a customer I need to ask the user for his windows login username, password and domain and then use those with ...
4
votes
2answers
75 views

SecureString Solution is fine but has inner contradiction?

I saw this thread : When would I need a SecureString in .NET? the code there is : SecureString password = new SecureString("password"); vs SecureString pass = new SecureString(); foreach ...
4
votes
7answers
1k views

Saving a SecureString

One of the feature requests I've got for the program I'm working on is to be able to save the list of credentials users enter in, so they can be shared around. The specific use case that inspired this ...
3
votes
2answers
271 views

Use SecureString for credit card numbers

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 ...
3
votes
1answer
493 views

Using Secure String and Keeping it Secure

So the .NET framework provides the SecureString class for storing strings in a secure fashion. But to read the information and work with it you have to return it to a standard string. See this ...
2
votes
4answers
578 views

using securestring for a sql connection

I want to use a SecureString to hold a connection string for a database. But as soon as I set the SqlConnection object's ConnectionString property to the value of the securestring surely it will ...
1
vote
2answers
99 views

Will SecureString give me any advantage when it comes to MSIL decompilation?

Is it in any way better to do this char[] sec = { 'a', 'b', 'c'}; SecureString s = new SecureString(); foreach (char c in sec) { s.AppendChar(c); } IntPtr pointerName = ...
1
vote
2answers
219 views

Is SecureString a write-only class?

I recently discovered SecureString and it seems to fit a perfect application where I want to basically initialize a static secret string at the beginning of an application, and then make it read-only ...
1
vote
2answers
131 views

How should I manage password strings in .net?

I know there is the SecureString class, but for most scenarios I don't think it's really useful. For example, let's say I have a client/server system. The server doesn't need an application made by ...
0
votes
0answers
40 views

Best way to retrieve the value of a SecureString

I'm trying to build an automated tool that goes out and checks recent transactions on my checking account (spying on my wife's purchases lol). The tool posts my username and password over SSL and then ...
0
votes
2answers
997 views

How do a use a SecureString to create a SHA1 or SHA512 Hash?

I would like to use a SecureString varible within VB.NET and convert that to a SHA1 or SHA512 hash. How would I securely convert the SecureString to the Byte array that HashAlgorithm.ComputeHash will ...
0
votes
3answers
565 views

Considerations in building a Secure string type

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 ...