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 "fizzbuzz".ToCharArray())
{
    secureString.AppendChar (c);
}
link|improve this question

67% accept rate
feedback

4 Answers

up vote 4 down vote accepted

You could use Linq:

"fizzbuzz".ToCharArray ().ToList ().ForEach ( p => secureString.AppendChar ( p ) );

-sa

link|improve this answer
+1 Actually, I think that´s the same that @Tod proposed, but with less lines. – Javier Mar 10 '10 at 20:28
I guess I can throw this into an extension method to get what I'm after: processInfo.Password = new SecureSring ().FromString ("fizzbuzz") – Todd Smith Mar 10 '10 at 21:30
You can avoid the extra .ToList() operation with the following: Array.ForEach("fizzbuzz".ToCharArray(), secureString.AppendChar); – Steve Guidi Jan 28 at 0:52
feedback

Apart from using unsafe code and a char*, there isn't a (much) better way.

The point here is not to copy SecureString contents to/from normal string ("fizzbuzz" is a securityleak).

link|improve this answer
Beat me to it -- +1. Plus the additional changes you need to make to allow for unsafe code negates any "savings" on lines of code. – Austin Salonen Mar 10 '10 at 20:08
Don't most passwords originate in most software as strings and then need to be converted to a SecureString? Not sure what you mean by "not to copy SecureString contents from normal string". In normal circumstances that would be string password. "fizzbuzz" is just a homage. – Todd Smith Mar 10 '10 at 21:35
Yes, and that greatly reduces the usability of SecureString. – Henk Holterman Mar 10 '10 at 22:04
SecureString is a property of ProcessStartInfo and is needed for Process.Start(). Blame MS not the messenger :) – Todd Smith Mar 10 '10 at 22:21
If you're collecting a SecureString from keystrokes, you don't actually have an original string. This, I believe, was the original intent of SecureString. – Doug Aug 25 '10 at 16:11
feedback

Slight improvement on Sascha's answer replacing the lambda with a method group

"fizzbuzz".ToCharArray().ToList().ForEach(ss.AppendChar);
link|improve this answer
feedback
var s = "fizzbuzz".Aggregate(new SecureString(), (ss, c) => { ss.AppendChar(c); return ss; });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.