Click here to Skip to main content
15,914,419 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: sql string Pin
Wes Aday23-Aug-10 12:32
professionalWes Aday23-Aug-10 12:32 
AnswerRe: sql string Pin
Luc Pattyn23-Aug-10 12:39
sitebuilderLuc Pattyn23-Aug-10 12:39 
GeneralRe: sql string Pin
Richard A. Dalton23-Aug-10 13:31
Richard A. Dalton23-Aug-10 13:31 
AnswerRe: sql string Pin
Luc Pattyn23-Aug-10 13:47
sitebuilderLuc Pattyn23-Aug-10 13:47 
Questionsaving document with passwords encrypted Pin
FeRtoll23-Aug-10 0:47
FeRtoll23-Aug-10 0:47 
AnswerRe: saving document with passwords encrypted Pin
Dave Kreskowiak23-Aug-10 3:42
mveDave Kreskowiak23-Aug-10 3:42 
AnswerRe: saving document with passwords encrypted Pin
Richard MacCutchan23-Aug-10 4:48
mveRichard MacCutchan23-Aug-10 4:48 
AnswerRe: saving document with passwords encrypted Pin
Mike Marynowski24-Aug-10 19:45
professionalMike Marynowski24-Aug-10 19:45 
How you encrypt this depends on who you are protecting it from and how important it is.

If this is a client-server application, a better option would be storing the encryption key on the server, and randomly generating it the first time the server runs. The client never sees the decrypted information, you just use a different "LoginFromEncryptedCredentials" method that passes the raw encrypted data, which the server decrypts and tries to process. When you want to store credentials, you call "GetEncryptedCredentialsFromServer" and pass it the information you want to encrypt. The key here is that the client machine NEVER sees the encryption key. If the client machine EVER has it in memory, then it can be retrieved.

If this is just a client application with no server, and you are saving the current user's credentials, you would be much better served encrypting the file with built-in windows file system encryption. This would hide it from everyone except the current user in a secure fashion.
QuestionString obfuscation and function names Pin
Atara22-Aug-10 23:21
Atara22-Aug-10 23:21 
AnswerRe: String obfuscation and function names Pin
Eduard Keilholz22-Aug-10 23:39
Eduard Keilholz22-Aug-10 23:39 
GeneralRe: String obfuscation and function names Pin
Atara22-Aug-10 23:43
Atara22-Aug-10 23:43 
GeneralRe: String obfuscation and function names Pin
Dave Kreskowiak23-Aug-10 3:35
mveDave Kreskowiak23-Aug-10 3:35 
GeneralRe: String obfuscation and function names Pin
Atara23-Aug-10 3:40
Atara23-Aug-10 3:40 
AnswerRe: String obfuscation and function names Pin
Former employee23-Aug-10 23:17
Former employee23-Aug-10 23:17 
GeneralRe: String obfuscation and function names Pin
Atara23-Aug-10 23:42
Atara23-Aug-10 23:42 
GeneralRe: String obfuscation and function names Pin
Mike Marynowski24-Aug-10 19:55
professionalMike Marynowski24-Aug-10 19:55 
GeneralRe: String obfuscation and function names Pin
Atara24-Aug-10 20:01
Atara24-Aug-10 20:01 
GeneralRe: String obfuscation and function names Pin
Mike Marynowski24-Aug-10 20:05
professionalMike Marynowski24-Aug-10 20:05 
AnswerRe: String obfuscation and function names Pin
LogicNP21-Sep-11 1:12
LogicNP21-Sep-11 1:12 
QuestionNullReferenceException on Me.Invoke Pin
Dominick Marciano22-Aug-10 14:09
professionalDominick Marciano22-Aug-10 14:09 
AnswerRe: NullReferenceException on Me.Invoke Pin
Dominick Marciano22-Aug-10 15:19
professionalDominick Marciano22-Aug-10 15:19 
QuestionConversion of BIFF7 to BIFF8 files Pin
Dominick Marciano22-Aug-10 10:58
professionalDominick Marciano22-Aug-10 10:58 
AnswerRe: Conversion of BIFF7 to BIFF8 files Pin
Luc Pattyn22-Aug-10 11:23
sitebuilderLuc Pattyn22-Aug-10 11:23 
GeneralRe: Conversion of BIFF7 to BIFF8 files Pin
Dominick Marciano22-Aug-10 12:31
professionalDominick Marciano22-Aug-10 12:31 
QuestionRe: Conversion of BIFF7 to BIFF8 files Pin
timslhsu14-Jan-11 20:43
timslhsu14-Jan-11 20:43 

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.