tag | 5f570052b1f400e6f55f7a75e586b9007d924920 | |
---|---|---|
tagger | The Android Open Source Project <initial-contribution@android.com> | Thu Mar 13 17:00:13 2025 -0700 |
object | 1daa90fc936b385cccaf55a9c34d6089f92b16f7 |
Android Platform 15.0.0 Release 6 (13100264)
commit | 1daa90fc936b385cccaf55a9c34d6089f92b16f7 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 21 23:12:44 2024 +0000 |
committer | Android Build Coastguard Worker <android-build-coastguard-worker@google.com> | Tue May 21 23:12:44 2024 +0000 |
tree | e0cbfcb6c5c27a33ec88aba9cc868f03c35eace8 | |
parent | 6db62a135246fe3bc41b65e10df4d12cb451c69e [diff] | |
parent | c9cbbcc1319a44c56f03b6754f40d36fb4658db4 [diff] |
Snap for 11869550 from c9cbbcc1319a44c56f03b6754f40d36fb4658db4 to 24Q3-release Change-Id: Id2301614296cd92a5ca6bfe48d4630b7d7f32cb2
This library provides the following common encodings:
Name | Description |
---|---|
HEXLOWER | lowercase hexadecimal |
HEXLOWER_PERMISSIVE | lowercase hexadecimal (case-insensitive decoding) |
HEXUPPER | uppercase hexadecimal |
HEXUPPER_PERMISSIVE | uppercase hexadecimal (case-insensitive decoding) |
BASE32 | RFC4648 base32 |
BASE32_NOPAD | RFC4648 base32 (no padding) |
BASE32_DNSSEC | RFC5155 base32 |
BASE32_DNSCURVE | DNSCurve base32 |
BASE32HEX | RFC4648 base32hex |
BASE32HEX_NOPAD | RFC4648 base32hex (no padding) |
BASE64 | RFC4648 base64 |
BASE64_NOPAD | RFC4648 base64 (no padding) |
BASE64_MIME | RFC2045-like base64 |
BASE64URL | RFC4648 base64url |
BASE64URL_NOPAD | RFC4648 base64url (no padding) |
It also provides the possibility to define custom little-endian ASCII base-conversion encodings for bases of size 2, 4, 8, 16, 32, and 64 (for which all above use-cases are particular instances).
See the documentation for more details.