I am looking for a way of encoding a byte array to be representable in an URL from a procedure written in Oracle/PLSQL. It is important that the representation/encoding does not conflict with the reserved characters in an URL, like: +, /, and =.
A possible solution could be an equivalent of .NET's HttpServerUtility.UrlTokenEncode to use for "safe" URL encoding of a given byte array.
I have been searching for a while now without any luck.
Thanks in advance.