Click here to Skip to main content
15,895,486 members
Home / Discussions / C#
   

C#

 
GeneralRe: problems splitting string Pin
stephan_00722-Apr-08 9:56
stephan_00722-Apr-08 9:56 
GeneralRe: problems splitting string Pin
Guffa22-Apr-08 13:27
Guffa22-Apr-08 13:27 
GeneralRe: problems splitting string Pin
WBurgMo22-Apr-08 9:51
WBurgMo22-Apr-08 9:51 
GeneralRe: problems splitting string Pin
stephan_00722-Apr-08 10:48
stephan_00722-Apr-08 10:48 
GeneralWord plugin - working button Pin
Vodstok22-Apr-08 5:45
Vodstok22-Apr-08 5:45 
GeneralRe: Word plugin - working button Pin
Spacix One22-Apr-08 9:51
Spacix One22-Apr-08 9:51 
General"Remember my password" in a winforms application Pin
benjymous22-Apr-08 5:16
benjymous22-Apr-08 5:16 
GeneralRe: "Remember my password" in a winforms application Pin
led mike22-Apr-08 8:51
led mike22-Apr-08 8:51 
benjymous wrote:
Is there a standard method for storing a user's username/password somewhere safe,


No, there is no "safe". One optimal approach is to store hash values, like using SHA1, and the next time they enter them you hash again and verify the hash matches the stored hash. In that approach you are not responsible for securing any information.

That said if you have a requirement like emailing them their password then that won't work. If you need to encrypt data some engines might do that for you like SQL Server, otherwise if you need to do it yourself see the System.Security namespace.

Also if you need to do it yourself it might pay to study some modern material on the current state of "Security" so that you can apply that to using the BCL libraries supplied.


led mike

GeneralRe: "Remember my password" in a winforms application Pin
User 665822-Apr-08 8:59
User 665822-Apr-08 8:59 
General[Message Deleted] Pin
gottimukkala22-Apr-08 4:42
gottimukkala22-Apr-08 4:42 
GeneralRe: Wrong board Pin
Blue_Boy22-Apr-08 4:44
Blue_Boy22-Apr-08 4:44 
GeneralSqlParameter problem Pin
Deian22-Apr-08 3:53
Deian22-Apr-08 3:53 
GeneralRe: SqlParameter problem Pin
Blue_Boy22-Apr-08 4:00
Blue_Boy22-Apr-08 4:00 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 4:14
Deian22-Apr-08 4:14 
GeneralRe: SqlParameter problem Pin
Blue_Boy22-Apr-08 4:26
Blue_Boy22-Apr-08 4:26 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 4:27
Deian22-Apr-08 4:27 
GeneralRe: SqlParameter problem Pin
Blue_Boy22-Apr-08 4:33
Blue_Boy22-Apr-08 4:33 
GeneralRe: SqlParameter problem Pin
Colin Angus Mackay22-Apr-08 10:28
Colin Angus Mackay22-Apr-08 10:28 
GeneralRe: SqlParameter problem Pin
Colin Angus Mackay22-Apr-08 10:27
Colin Angus Mackay22-Apr-08 10:27 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 20:34
Deian22-Apr-08 20:34 
GeneralRe: SqlParameter problem Pin
Colin Angus Mackay22-Apr-08 22:10
Colin Angus Mackay22-Apr-08 22:10 
GeneralRe: SqlParameter problem Pin
Deian22-Apr-08 22:30
Deian22-Apr-08 22:30 
QuestionDataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
blakey40422-Apr-08 3:45
blakey40422-Apr-08 3:45 
AnswerRe: DataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
Blue_Boy22-Apr-08 4:40
Blue_Boy22-Apr-08 4:40 
GeneralRe: DataGridView... Deleting/finding a row from/in the underlying DataSource (DataTable) Ideas anyone? Pin
blakey40422-Apr-08 4:59
blakey40422-Apr-08 4:59 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.