https://github.com/alecsandu/java-base32
Crockford's Base32 support in Java
https://github.com/alecsandu/java-base32
base32 crockford-base32 java
Last synced: 21 days ago
JSON representation
Crockford's Base32 support in Java
- Host: GitHub
- URL: https://github.com/alecsandu/java-base32
- Owner: Alecsandu
- License: mit
- Created: 2025-09-10T17:13:18.000Z (26 days ago)
- Default Branch: master
- Last Pushed: 2025-09-11T19:02:27.000Z (25 days ago)
- Last Synced: 2025-09-11T22:10:59.019Z (25 days ago)
- Topics: base32, crockford-base32, java
- Language: Java
- Homepage:
- Size: 62.5 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JAVA BASE32 CONVERTER
Supports encoding and decoding for Crockford's Base32 format.
## Example
```java
class Example {
public static void main(String[] args) {
Base32.encode("BAELDUNG");
Base32.decode("890MAK24AN74E");
}
}
```For more examples check the unit tests in Base32Test class.