[RESOLVED] Using a SecureString
After you set the contents of a SecureString, how do you extract them?
I've searched high and low and many people said you can extract the contents, however, it's not well known but none of them stated how to do so. ToString() just return "System.Security.SecureString"
Any suggestions?
Re: [RESOLVED] Using a SecureString
SecureStrings not all that secure after all then :D
Re: [RESOLVED] Using a SecureString
Quote:
Originally Posted by wossname
SecureStrings not all that secure after all then :D
You're right, they're not 100% secure, but I guess nothing is. SecureString is more secure than a regular string, because they're pinned and encrypted, but effectively they just reduce the exposure and not eliminate it.
Mike