Re: [web2py] Re: How can I generate hash for user password like web2py

2019-06-06 Thread Dave S
On Sunday, June 2, 2019 at 1:47:27 PM UTC-7, Константин Комков wrote: > > All entrant information are checking by operators and if that information > correct entrant can be registrated in personal cabinet. If entrant gived > our information on site, it's work like auth registration form. Entran

Re: [web2py] Re: How can I generate hash for user password like web2py

2019-06-02 Thread Константин Комков
I think will be 3 entrants in that year вс, 2 июн. 2019 г., 23:47 Константин Комков : > All entrant information are checking by operators and if that information > correct entrant can be registrated in personal cabinet. If entrant gived > our information on site, it's work like auth registrat

Re: [web2py] Re: How can I generate hash for user password like web2py

2019-06-02 Thread Константин Комков
All entrant information are checking by operators and if that information correct entrant can be registrated in personal cabinet. If entrant gived our information on site, it's work like auth registration form. Entrant push your own password and after operators check entrant's info entrant can logi

Re: [web2py] Re: How can I generate hash for user password like web2py

2019-05-29 Thread Massimo Di Pierro
It is bad policy for you to generate a password and give it to customers. You should generate a one time token and allow your user to use the token to set his own password using web2py. Web2py automatically stores it encrypted using pbkdf2 + sha512. hashlib is not good enough for passwords be

Re: [web2py] Re: How can I generate hash for user password like web2py

2019-05-29 Thread Константин Комков
I need to generate password and print it for entrant and then take hash from password for writing to database. But that program work on Windows and was written by delphi. Last versions delphi have sha512 and pbkdf2 library but not our. Can you take link by .dll file of the library for use it in del

Re: [web2py] Re: How can I generate hash for user password like web2py

2019-05-29 Thread Carlos Costa
If you can use web2py itself for this task, dot it like this: hash = CRYPT()('text to hash')[0] Em qua, 29 de mai de 2019 às 19:05, João Matos escreveu: > I use Python's hashlib module. It contains pbkdf2. > > segunda-feira, 27 de Maio de 2019 às 12:13:54 UTC+1, Константин Комков > escreveu: >>