Encryption for passing password from Frontend to backend in Django Application

41 views Asked by At

I am working on Django Project and I want to setup authentication using LDAP backend. I have a form in UI where user will be able to enter user name and password and this will be passed to LDAP backend for authentication. While passing data from UI form to LDAP backend. DO I have to use any encryption technique? If yes, what kind of and how? Thank you.

1

There are 1 answers

2
Chukwujiobi Canon On

Using HTTP over TLS will provide secure transmission.

If the server can provide the necessary secure connection over TLS then the communication is secure in this day and age. [1]


[1] I humbly recognize the evolution of cybersecurity and cryptography.