Django Form fields needs to be encrypted at server side and needs to be decrypted in client browser while rendering and vice versa for form submission
One approach is using JS cryptographic libraries or to use custom encryption code.
But, Is there any python package available which implements this where we use this as django form widget along with js library at client side.
An example will be a package like the django-autocomplete-light package which provides a widget for autocompletion for the particular field.
How to implement this or Is there any package available which can be used.