3 Replies Latest reply on Jun 28, 2006 3:05 AM by david.c.florin

    Crypting problem

      I don't whant the password to be crypted in the datbase table.
      Could someoane help me?

        • 1. Re: Crypting problem

          The code expects encryption. Why would you not want that?

          • 2. Re: Crypting problem

            I have already a huge table with users and there the password is not crypted ,and that table is also used by another program wich don't encrypt password.I whant to use that table for portal users but don't change her structure.
            If you could you give me an advice , I will apreciate!

            • 3. Re: Crypting problem

              Sory for double post!

              I have succed to store the password uncrypt by modifying in the class UserProfile
              userModule.createUser(uname, Tools.md5AsHexString(pass1), realEmail); to
              userModule.createUser(uname,pass1, realEmail);



              But where should I modify to get the password like is stored?


              Please hepl me!