2017 © Pedro Peláez
 

library blakechain

Hash chain using BLAKE2b

image

paragonie/blakechain

Hash chain using BLAKE2b

  • Wednesday, November 8, 2017
  • by paragonie-scott
  • Repository
  • 6 Watchers
  • 11 Stars
  • 457 Installations
  • PHP
  • 2 Dependents
  • 0 Suggesters
  • 1 Forks
  • 1 Open issues
  • 5 Versions
  • 4 % Grown

The README.md

Blakechain

Build Status Static Analysis Latest Stable Version Latest Unstable Version License Downloads, (*1)

Blakechain is a simple hash-chain data structure based on the BLAKE2b hash function., (*2)

Includes:, (*3)

  • The Blakechain implementation, which chains together Node 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., (*4)

Blakechain provides the data structure used in Chronicle., (*5)

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., (*6)

Recursively:, (*7)

$hash[$n] = sodium_crypto_generichash(
    $data[$n],
    $hash[$n - 1]
);

The Versions

08/11 2017

dev-master

9999999-dev

Hash chain using BLAKE2b

  Sources   Download

MIT

The Requires

 

The Development Requires

cryptography blockchain hash php 7 hash-chain blake2 hash chain append-only

31/10 2017

v1.0.1

1.0.1.0

Hash chain using BLAKE2b

  Sources   Download

MIT

The Requires

 

The Development Requires

cryptography blockchain hash php 7 hash-chain blake2 hash chain append-only

09/07 2017

v1.0.0

1.0.0.0

Hash chain using BLAKE2b

  Sources   Download

MIT

The Requires

 

The Development Requires

cryptography blockchain hash php 7 hash-chain blake2 hash chain append-only

27/06 2017
23/06 2017