An open API service indexing awesome lists of open source software.

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

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.