Answers for "js encryption two way"

1

js encryption two way

// if security is not a deal, you can use the native js base64

var string = "Hello folks how are you doing today?";
var encodedString = btoa(string); // Base64 encode the String
var decodedString = atob(encodedString); // Base64 decode the String
Posted by: Guest on March-24-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language