Tagged Questions
The securestring tag has no wiki summary.
22
votes
4answers
537 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? ...
15
votes
3answers
505 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
918 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
5answers
2k 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
757 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
4answers
664 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 ...
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
64 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
1answer
1k views
Is it possible to safely get a SecureString value from VB .NET?
I've always felt like SecureString was a little odd, but assumed most of my issues with it were due to security problems I don't understand. Today I decided to sit down and teach myself about it, but ...
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
3answers
152 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
2answers
289 views
powershell and secureString class
Attempting to access an FTP site, I can use a plain text password in credentials and it works fine, but when I use a SecureString it fails to authenticate. Examples:
$pw = "mypw"
$ftp = ...
3
votes
1answer
95 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 ...
3
votes
2answers
258 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
484 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
1answer
76 views
Secure random token in node.js
In this question Erik needs to generate a secure random token in node.js. There's the method crypto.randomBytes that generates a random Buffer. However, the base64 encoding in node is not url-safe, it ...
2
votes
2answers
123 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
1answer
279 views
sha1(password) encryption
Alright, so I tried to make my users info super secure by adding '" . sha1($_POST['password']) . "' when inserting their password when they register. THAT WORKS great, looking at the database, I have ...
2
votes
4answers
531 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
569 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
266 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
87 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
206 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
128 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
33 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
0answers
81 views
How can you map a Windows 7 Network Drive providing a security key as credentials
So, I am trying to map an AWS EC2 instance to a network drive. My goal is to create a remote eclipse workspace. This instance will only authenticate a user who provides their own security key instead ...
0
votes
1answer
41 views
How to send a string with security, iphone
How to send a string in most securely.
Got some issue with encryption.
My encrypted value in iPhone is not similar to webapp.
So please suggest the most secured form of sending a string from iphone ...
0
votes
3answers
726 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
2answers
929 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
1answer
472 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 ...
0
votes
3answers
552 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 ...