https://github.com/sendinblue/base-32
RFC 3548 and 4648 compliant base 32 encoder/decoder
https://github.com/sendinblue/base-32
base32 decoder encoder rfc-3548 rfc-4648
Last synced: 3 months ago
JSON representation
RFC 3548 and 4648 compliant base 32 encoder/decoder
- Host: GitHub
- URL: https://github.com/sendinblue/base-32
- Owner: sendinblue
- License: mit
- Created: 2017-09-26T14:15:28.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-07T14:43:08.000Z (almost 7 years ago)
- Last Synced: 2025-06-09T01:06:09.778Z (4 months ago)
- Topics: base32, decoder, encoder, rfc-3548, rfc-4648
- Language: PHP
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# sendinblue/base-32
RFC 3548 and 4648 compliant base 32 encoder/decoder.
## Installation
Open a command console, enter your project directory and execute the
following command to download the latest stable version of this library:```console
$ composer require sendinblue/base-32 "~1"
```This command requires you to have Composer installed globally, as explained
in the [installation chapter](https://getcomposer.org/doc/00-intro.md)
of the Composer documentation.## Usage
This library provides a `\SendinBlue\Base32` class which exposes a `encode` and `decode` method, that’s it!
You can also set `encode`’s second argument `$padding` to `false` to avoid including any padding into the encoded string.
```php