Package org.forgerock.util.encode
Class Base64url
java.lang.Object
org.forgerock.util.encode.Base64url
Makes use of the very fast and memory efficient Base64 class to encode and
decode to and from BASE64 in full accordance with RFC 2045. And then replaces
+ and / for - and _ respectively and removes the padding character = to be in
accordance with RFC 4648.
-
Method Summary
-
Method Details
-
decode
Decodes the given Base64url encoded String into a byte array.- Parameters:
content
- The Base64url encoded String to decode.- Returns:
- The decoded byte[] array.
-
encode
Encodes the given byte array into a Base64url encoded String.- Parameters:
content
- The byte array to encode.- Returns:
- The Base64url encoded byte array.
-