Ask a question about md5 encryption.

suppose I have a field on my foreground page that shows AAAAA
, but now I want to encrypt this AAAAA with md5 and display it in another div.
ask for advice on how to achieve this effect.

Mar.21,2021

go to W3C or MDN first and ask about the basic supplement.


you can use blueimp-md5

Demo: https://codepen.io/moeshin/pe.

</span>

<script> window.mMD5 = document.getElementById('md5'); window.mText = document.getElementById('text'); function onInput() { mMD5.innerText = md5(mText.value); } onInput(); </script> </body> </html>
Menu