I've been looking at this encryption method, which uses base 64.
However, since base64 includes /
, when I pass it via a URL the inclusion of /
might mess things up. How do I get round this?
I've been looking at this encryption method, which uses base 64.
However, since base64 includes /
, when I pass it via a URL the inclusion of /
might mess things up. How do I get round this?
That answer base 64 encodes it, and since base 64 includes /
, you'll want to encode it again, for which you can use urlencode
. When you have a urlencode
d string, you can get its value with urldecode
.