https://github.com/igniphp/base58
Base58 implementation for PHP
https://github.com/igniphp/base58
Last synced: 4 months ago
JSON representation
Base58 implementation for PHP
- Host: GitHub
- URL: https://github.com/igniphp/base58
- Owner: igniphp
- Created: 2018-05-11T20:56:18.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-11T21:16:10.000Z (about 8 years ago)
- Last Synced: 2025-06-08T21:17:17.294Z (about 1 year ago)
- Language: PHP
- Size: 4.88 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 
[](https://travis-ci.org/igniphp/base58)
## About
PHP Base58 implementation used to represent large integers as alphanumeric text.
### Installation
```composer require igniphp/base58```
### Usage Igni\Crypto\Base58
#### `encode(string|int $string): string`
Encodes passed integer|string into base58 representation.
#### `decode(string $string): string`
Decodes base58 representation of big integer into string.