How to encryt and decrypt passwords

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nurikoAnna
    New Member
    • Nov 2008
    • 26

    How to encryt and decrypt passwords

    Good day

    I am rejoice

    I need help in my program. I am making user management, the problem is I don't know how to encrypt the passwords as I click the save button in my mySQL database so that no one can know the passwords...ple ase help me...just simple codes....please ...
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    you use some simple string functions for the purpose of encrypting and reverser the processing during decrypting.

    Comment

    • nurikoAnna
      New Member
      • Nov 2008
      • 26

      #3
      how ????? I don't know how???

      Comment

      • danp129
        Recognized Expert Contributor
        • Jul 2006
        • 323

        #4
        go to pscode.com
        Search for 'decrypt' with the "Visual basic" drop down selected.

        Good luck

        Comment

        • debasisdas
          Recognized Expert Expert
          • Dec 2006
          • 8119

          #5
          try to use string functions like left,mid,substr ing,right etc for simple encryption.

          Comment

          • smartchap
            New Member
            • Dec 2007
            • 236

            #6
            Alongwith Left, mid$, etc functions use CHR$ and ASC functions. With these convert your password to some other word. e.g. say your password is 'PAWAN' after encrypting can change it to 'SDZDQ', i.e. added 3 to each word's ascii value. Similarly decrypt the typed input.

            Comment

            • EYE4U
              Banned
              New Member
              • Oct 2008
              • 76

              #7
              You can also define your own characte set to decrypt or encrypt you password.



              Regards
              ARUZ

              Comment

              Working...