File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/main/java/at/favre/lib/bytes Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 55* add radix encoding/parsing and fix radix tests #6, #20
66* add support for Base32 RFC4648 non-hex alphabet encoding/parsing #21
77
8+ ### Deprecations (will be removed in v1.0+)
9+
10+ * `parseBase36()`/`encodeBase36()` - use `parseRadix(36)`/`encodeRadix(36)` instead
11+
812## v0.7.1
913
1014* sign AFTER ProGuard so optimized version has correct jar signature
3034 * add constructor/converter from/to UUID #9
3135 * add `empty()` constructor, creating empty byte array
3236
37+ ### Deprecations (will be removed in v1.0+)
38+
39+ * `toObjectArray()` renamed to `toBoxedArray()`
40+
3341## v0.5.0
3442
3543 * better resource handling for compression
Original file line number Diff line number Diff line change 2727import java .util .Objects ;
2828
2929/**
30+ * Encoder which supports arbitrary alphabet and padding.
31+ *
3032 * Derived from Google Guava's common/io/ BaseEncoding
3133 * <p>
3234 * See: https://github.com/google/guava/blob/v26.0/guava/src/com/google/common/io/BaseEncoding.java
You can’t perform that action at this time.
0 commit comments