Skip to content

Releases: hyperledger-iroha/iroha-ed25519

Fix build on armv7l

11 Apr 10:29
eb4c0fc
Compare
Choose a tag to compare
Fix ci (#25)

Signed-off-by: Bogdan Vaneev <[email protected]>

2.0.1

11 Mar 13:24
b61a1e7
Compare
Choose a tag to compare
  • fix left shift of negative values (which could cause UB) in ref10 ed implementation
  • add fuzzing targets

2.0.0

17 Feb 10:40
cba1c6e
Compare
Choose a tag to compare
  • hunterize dependencies
  • add package to hunter
  • make hash context opaque
  • remove amd64-64-24k implementation
  • add sha2_sphlib implementation

Fix bug with file descriptors flooding in random(s)

10 Jul 13:29
12de1cb
Compare
Choose a tag to compare
Merge pull request #17 from hyperledger/feature/fix-open

Add missing close() calls for files

Prepare for hunterization

08 Feb 15:09
abe080d
Compare
Choose a tag to compare

This version is ready to be huterized.

Build Only What You Use

05 Dec 19:49
Compare
Choose a tag to compare

Changelog:

  • Add benchmark for ed25519 + sha512
  • "Build only what you use" cmake. It means, that it will build only that targets, that are selected during cmake stage
  • Enhance documentation.
  • Add "position independent code" fix to amd64-64-24k. Now it is new implementation - amd64-64-24k-pic.

Ed25519 with pluggable hash (sha2, sha3)

04 Dec 10:56
Compare
Choose a tag to compare
  • ability to define at CMake time desired implementation of Ed25519
    • amd64-64-24k
    • ref10
  • hash function
    • SHA2
    • SHA3
  • PRNG
    • openssl
    • urandom
    • random
  • ability to build and install dynamic library
  • original implementations from Supercop