Board index » delphi » Password encryption and storing...
Andrew Semov
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
|
Andrew Semov
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Password encryption and storing...
Hi!
My problem is that I want to protect my program with password (i.e. Thanks in advance, Andrew Semov. |
Ken Fisch
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Password encryption and storing...QuoteAndrew Semov (an...@mailbox.riga.lv) wrote: : I execute program and it asks me to enter password.). Does any one can : suggest me any good encryption algorithms? Another problem is that I : need to store this password somewhere. It can be stored in file or in : exe file, but it can be changed or replaced. I could use checksum to see : if the password is not changed, but I don't know the methods how to : calculate it. If anyone have any ideas on how to solve these two Maybe an easy way would be to _NOT_ have the PWC2:= 'y'; and these statements could be mixed in with Ken Fischer --- |
Keit
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Password encryption and storing...Hope this helps... the aurthor (from swag) { Procedure encode(password, instring : string; var outstring : string); QuoteAndrew Semov wrote in message <35A8C398.14896...@mailbox.riga.lv>... |
Frank Peel
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Password encryption and storing...QuoteKeith wrote in message <6ocf6p$...@examiner.concentric.net>... unscrambleable. FP |
Olaf van der Spe
![]() Delphi Developer |
Wed, 18 Jun 1902 08:00:00 GMT
Re:Password encryption and storing...Andrew Semov heeft geschreven in bericht Quote>Hi! in your program. Then encypt the input, see if it's the encrypte password. Encryption can be simple: XOR all characters with a value XOR with the last char. Quote>Thanks in advance, |