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? ...
16
votes
3answers
535 views

Is there any benefit to using SecureString in ASP.NET?

If I understand correctly, this is for keeping plain text out of memory, so that the app is secure against esoteric attacks on memory, the garbage heap, or memory paged to disk. The SecureString is ...
9
votes
1answer
1k views

C# - compare two SecureStrings for equality

I have a WPF application with two PasswordBoxes, one for the password and another for the password to be entered a second time for confirmation purposes. I was wanting to use ...
6
votes
4answers
741 views

Using SecureString

Can this be simplified to a one liner? Feel free to completely rewrite it as long as secureString gets initialized properly. SecureString secureString = new SecureString (); foreach (char c in ...
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 ...
3
votes
3answers
172 views

SecureString for storing in memory and presenting passwords? Or something else?

G'day! I have been writing a little program for myself using C# that I can use to store my passwords and then retrieve them for viewing/editing. While the passwords are stored to disk in an ...
3
votes
1answer
96 views

tracking sensitive data in memory from my WPF application and C# libraries

I've been trying to go through a couple of my C# libraries and a WPF application that uses them and replace plain-text, string passwords with SecureString. I do have to convert a SecureString back to ...
2
votes
2answers
132 views

Is string.ToCharArray() necessary for enumerating?

Why on Earth would someone convert a string to a char[] before enumerating the characters in it? The regular pattern for initializing a System.Security.SecureString found all around the net follows: ...
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 ...
2
votes
2answers
585 views

Create SecureString from unmanaged unicode string

I am wanting to try to tie the CryptUnprotectData windows API function and the .net SecureString together the best way possible. CryptUnprotectData returns a DATA_BLOB structure consisting of an ...
1
vote
2answers
293 views

Store, retrieve and validate password (SecureString) in SQL Server

I have a login window that gets the username and password from the user and I would like to know the best way to handle the password. The username is just a regular textbox, but the password is a ...
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 ...
0
votes
3answers
773 views

C# - RSACryptoServiceProvider Decrypt into a SecureString instead of byte array

I have a method that currently returns a string converted from a byte array: public static readonly UnicodeEncoding ByteConverter = new UnicodeEncoding(); public static string Decrypt(string ...
0
votes
1answer
488 views

How to initialize SecureString for readonly

I would like to create a variable, a secure one, that is more or less a CONST to use in my code. I've looked into using System.Security.SecureString, and that looks like it could be the ticket as I ...
0
votes
2answers
1k views

Using System.Security.SecureString in .NET Remoting App?

I am developing a Remoting application where a client looks up store specific information to login to a web server. It sets the user name and passwords in a class that stores the properties as ...