Password encryption using javascript -


this question has answer here:

i need encrypt password using base 64. how can in javascript?

base64 method encode data , not encryption technique. if still approach want take here javascript library work: https://github.com/mshang/base64-js

there built in method in mozilla , web kit browsers called btoa():

https://developer.mozilla.org/en-us/docs/dom/window.btoa


Comments