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 accept?
|
feedback
|
|
Typed it up in c# and converted to VB. Hopefully it still works!
| |||||||||||||||
feedback
|
|
What about that, if we avoid the only used String instance (output) and replace it with a character array. This would enable us to wipe this array after use:
Is there anything I missed? | |||
|
feedback
|