yoclib-multibase-php

PHP yocLib for Multibase of the Multiformats project

GPL-3.0 License

Downloads
37
Stars
0
Committers
1

yocLib - Multibase (PHP)

This yocLibrary enables your project to encode and decode Multibases in PHP.

Status

Installation

composer require yocto/yoclib-multibase

Usage

Encoding

use YOCLIB\Multiformats\Multibase\Multibase;

$text = 'Hello world!';

$encodedString = Multibase::encode(Multibase::BASE16UPPER,$text);

Decoding

use YOCLIB\Multiformats\Multibase\Multibase;

$encodedString = 'F48656C6C6F20776F726C6421';

$text = Multibase::decode($encodedString);