We have a working code in Java that decrypts an encrypted string, and it gives us back the byte array.
byte[] decode = null;
decode = Base64.decode(encryptedString);
We need an equivalent version in client side: javascript. Are there any available libraries?
Thanks!