Mayuran
Mayuran

Reputation: 708

How to encrypt the text field in browser without using Applets?

As browsers are ending the support for the plugin such as Applets, what are the alternatives for encrypting the text fields such as passwords in browser? Currently we are using applets to encrypt the password in text fields before sending to server.

Upvotes: 0

Views: 345

Answers (1)

Jake H.
Jake H.

Reputation: 969

Depending on what your new implementation will be, JavaScript has the ability to encrypt text strings. Here are a few libraries:

(We still use this) https://code.google.com/archive/p/crypto-js/

This is a popular one by Stanford https://github.com/bitwiseshiftleft/sjcl

Upvotes: 3

Related Questions