2
votes
5answers
100 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 …
2
votes
1answer
145 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 …
0
votes
1answer
73 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
262 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
1answer
79 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 …
4
votes
6answers
404 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 …
1
vote
2answers
262 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 …
4
votes
2answers
912 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 …
0
votes
2answers
219 views
Considerations in building a Secure string type
Hi guys, 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 …
1
vote
1answer
208 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 …
