Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. drkeds

    I need to be able to encrypt a password before inserting it into a db

    DRapper, Using a tip I got off another thread in this forum I created a sub-routine that performs an encryption of what ever is sent to it. sub encrypt { my $q = shift; my $salt = 'KW'; my $codedWord = crypt($password, $salt); return $codedWord; } I also use it to re-encrypt a submitted...

Part and Inventory Search

Back
Top