Download the PHP package paragonie/blakechain without Composer
On this page you can find all versions of the php package paragonie/blakechain. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download paragonie/blakechain
More information about paragonie/blakechain
Files in paragonie/blakechain
Download paragonie/blakechain
More information about paragonie/blakechain
Files in paragonie/blakechain
Please rate this library. Is it a good library?
Informations about the package blakechain
Blakechain
Blakechain is a simple hash-chain data structure based on the BLAKE2b hash function.
Includes:
- The
Blakechain
implementation, which chains togetherNode
objects - A runtime
Verifier
class that validates the self-consistency of an entire chain (or a subset of an entire chain)
Blakechain is not a blockchain. You probably don't need a blockchain.
Blakechain provides the data structure used in Chronicle.
How Blakechain Works
The hash of each message is a keyed BLAKE2b hash, where the key of this message is the hash of the previous message.
Recursively:
$hash[$n] = sodium_crypto_generichash(
$data[$n],
$hash[$n - 1]
);
All versions of blakechain with dependencies
PHP Build Version
Package Version
Requires
php Version
^7|^8
paragonie/constant_time_encoding Version ^2|^3
paragonie/sodium_compat Version ^1.21|^2
paragonie/constant_time_encoding Version ^2|^3
paragonie/sodium_compat Version ^1.21|^2
The package paragonie/blakechain contains the following files
Loading the files please wait ....