8000 GitHub - xaionaro/ed25519: Portable C implementation of Ed25519, a high-speed high-security public-key signature system.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
forked from orlp/ed25519

Portable C implementation of Ed25519, a high-speed high-security public-key signature system.

License

Notifications You must be signed in to change notification settings

xaionaro/ed25519

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ed25519

This is a portable implementation of Ed25519 based on the SUPERCOP "ref10" implementation. Additionally there is key exchanging and scalar addition included to further aid building a PKI using Ed25519. All code is licensed under the permissive zlib license.

License

All code is released under the zlib license. See license.txt for details.

This repository

This repository is a command line utility to exercise the original library

Usage

Usage: ed25519 [options]
Options:
-h FILE              # SHA512 of file's contents
-H String            # SHA512 of string (no NL)
  
-rk                  # Print matched private(seed) and public keys.
-r                   # Print 32 random bytes in hex
-k S..S              # Generate public key from seed key.
-K S..S              # Generate private key from seed key.

-s S..S FILE         # Create signature of file from seed key.
-p X..X -v V..V FILE # Validate signature of file from public key.

-h -s S..S FILE      # Create signature of SHA512 of FILE.
-hpv X..X V..V FILE  # Validate signature of SHA512 of FILE.
 
The S..S is the 64 hex digit secret seed key.
The S..S is the 128 hex digit private key.
The X..X is the 64 hex digit public key
The V..V is the 128 hex digit signature for validating.

About

Portable C implementation of Ed25519, a high-speed high-security public-key signature system.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 53.6%
  • Objective-C 44.8%
  • Shell 1.3%
  • Makefile 0.3%
0