Download the PHP package bigwhoop/radix64 without Composer
On this page you can find all versions of the php package bigwhoop/radix64. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download bigwhoop/radix64
More information about bigwhoop/radix64
Files in bigwhoop/radix64
Download bigwhoop/radix64
More information about bigwhoop/radix64
Files in bigwhoop/radix64
Vendor bigwhoop
Package radix64
Short Description An implementation of the Radix-64 encoding as described by OpenPGP (RFC 4880).
License MIT
Package radix64
Short Description An implementation of the Radix-64 encoding as described by OpenPGP (RFC 4880).
License MIT
Please rate this library. Is it a good library?
Informations about the package radix64
Radix-64 (as described for OpenPGP)
OpenPGP, described in RFC 4880, describes Radix-64 encoding, also known as "ASCII Armor". Radix-64 is identical to the "Base64" encoding described from MIME, with the addition of an optional 24-bit CRC. The checksum is calculated on the input data before encoding; the checksum is then encoded with the same Base64 algorithm and, using an additional "=" symbol as separator, appended to the encoded output data.
Installation
composer require bigwhoop/radix64
Usage
<?php
use Bigwhoop\Radix64\Radix64;
use Bigwhoop\Radix64\ChecksumMismatchException;
$output = Radix64::encode('this is a message');
// dGhpcyBpcyBhIG1lc3NhZ2U=
// =NTMy
try {
$input = Radix64::decode($output);
} catch (ChecksumMismatchException $e) {
// Oops ...
}
Tests
composer install --dev
vendor/bin/phpunit
All versions of radix64 with dependencies
PHP Build Version
Package Version
The package bigwhoop/radix64 contains the following files
Loading the files please wait ....