https://github.com/fil/proquint-php
pro(nounceable) quint(uplets) in PHP
https://github.com/fil/proquint-php
proquint tags
Last synced: about 1 year ago
JSON representation
pro(nounceable) quint(uplets) in PHP
- Host: GitHub
- URL: https://github.com/fil/proquint-php
- Owner: Fil
- Created: 2015-04-08T21:02:34.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-08T21:10:06.000Z (almost 11 years ago)
- Last Synced: 2025-01-24T10:28:37.057Z (about 1 year ago)
- Topics: proquint, tags
- Language: PHP
- Size: 133 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# proquint-php
pro(nounceable) quint(uplets) in PHP
A PHP implementation of proquint was missing… not that I needed it
link: http://arxiv.org/html/0901.4016
## Usage
```PHP
require_once 'proquint.php';
$proquint = new Proquint;
echo $proquint->Encode(chr(127).chr(0).chr(0).chr(1)); # 'lusab-babad'
echo $proquint->Decode('lusab-babad'); # string of bytes 127,0,0,1
```