Using a Javascript SHA library and one simple onsubmit protects the password in transit and also inside the user database:
<form onsubmit="pwField.value = b64_sha256(pwField.value);">
Read this for more elaborations with increased security.
11375 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
<form onsubmit="pwField.value = b64_sha256(pwField.value);">
You need to create an account or log in to post comments to this site.