All Projects → tendermint → Signatory

tendermint / Signatory

Licence: other
Multi-provider digital signature library for Rust

Programming Languages

rust
11053 projects
ring
36 projects

Projects that are alternatives of or similar to Signatory

Joeecc
Elliptic Curve Cryptography playground/toolkit written in pure Python
Stars: ✭ 46 (-66.18%)
Mutual labels:  ed25519, ecdsa
sodalite
tweetnacl in rust
Stars: ✭ 26 (-80.88%)
Mutual labels:  libsodium, ed25519
Jwt
JSON Web Token library
Stars: ✭ 242 (+77.94%)
Mutual labels:  ed25519, ecdsa
Tweetnacl Js
Port of TweetNaCl cryptographic library to JavaScript
Stars: ✭ 1,176 (+764.71%)
Mutual labels:  libsodium, ed25519
Sodium compat
Pure PHP polyfill for ext/sodium
Stars: ✭ 736 (+441.18%)
Mutual labels:  libsodium, ed25519
yubihsm-rs
Pure Rust client for YubiHSM2 devices
Stars: ✭ 70 (-48.53%)
Mutual labels:  ed25519, ecdsa
Nsec
A modern and easy-to-use cryptographic library for .NET Core based on libsodium
Stars: ✭ 217 (+59.56%)
Mutual labels:  libsodium, ed25519
Rbnacl
Ruby FFI binding to the Networking and Cryptography (NaCl) library (a.k.a. libsodium)
Stars: ✭ 910 (+569.12%)
Mutual labels:  libsodium, ed25519
rawr-x3dh
TypeScript Implementation of X3DH
Stars: ✭ 51 (-62.5%)
Mutual labels:  libsodium, ed25519
Kryptor
A simple, modern, and secure encryption and signing tool that aims to be a better version of age and Minisign.
Stars: ✭ 267 (+96.32%)
Mutual labels:  libsodium, ed25519
Halite
High-level cryptography interface powered by libsodium
Stars: ✭ 933 (+586.03%)
Mutual labels:  libsodium, ed25519
Signatures
Cryptographic signature algorithms: ECDSA, Ed25519
Stars: ✭ 135 (-0.74%)
Mutual labels:  ed25519, ecdsa
Sigtool
Ed25519 signing, verification and encryption, decryption for arbitary files; like OpenBSD signifiy but with more functionality and written in Golang - only easier and simpler
Stars: ✭ 49 (-63.97%)
Mutual labels:  ed25519
Zbox
Zero-details, privacy-focused in-app file system.
Stars: ✭ 1,185 (+771.32%)
Mutual labels:  libsodium
Watchdog
Simple registration framework for OS X apps. DSA/ECDSA support. No OpenSSL required.
Stars: ✭ 46 (-66.18%)
Mutual labels:  ecdsa
Streamcryptor
Stream encryption & decryption with libsodium and protobuf
Stars: ✭ 112 (-17.65%)
Mutual labels:  libsodium
Paseto.rb
Ruby implementation of Paseto using libsodium.
Stars: ✭ 41 (-69.85%)
Mutual labels:  libsodium
Swift Crypto
Open-source implementation of a substantial portion of the API of Apple CryptoKit suitable for use on Linux platforms.
Stars: ✭ 1,005 (+638.97%)
Mutual labels:  ecdsa
Wire Webapp
👽 Wire for web
Stars: ✭ 982 (+622.06%)
Mutual labels:  libsodium
Cryptolib4pascal
Crypto for Modern Object Pascal
Stars: ✭ 127 (-6.62%)
Mutual labels:  ecdsa

Signatory

crate Docs Apache2/MIT licensed MSRV Build Status

Pure Rust multi-provider digital signature library with support for elliptic curve digital signature algorithms, namely ECDSA (described in FIPS 186‑4) and Ed25519 (described in RFC 8032).

Signatory provides a thread-safe and object-safe API and implements providers for many popular Rust crates, including ed25519‑dalek, ring, secp256k1, and sodiumoxide.

Documentation

About

Signatory exposes a thread-and-object-safe API for creating digital signatures which allows several signature providers to be compiled-in and available with specific providers selected at runtime.

Requirements

All Signatory providers require Rust 1.37+

Provider Support

Signatory includes the following providers, which are each packaged into their own respective crates (except for the yubihsm provider, which is included directly in the yubihsm crate).

ECDSA providers

Provider Crate Backend Crate Type P‑256 P‑384 secp256k1
signatory‑ring ring Soft
signatory‑secp256k1 secp256k1 Soft
yubihsm yubihsm Hard

Ed25519 providers

Provider Crate Backend Crate Type Signing Verification
signatory‑dalek ed25519‑dalek Soft 51 k/s 18 k/s
signatory‑ring ring Soft 47 k/s 16 k/s
signatory‑sodiumoxide sodiumoxide Soft 38 k/s 15 k/s
yubihsm yubihsm Hard ~8/s N/A

Tendermint only providers (amino encoded consensus votes)

Provider Crate Backend Crate Type Signing Verification
signatory‑ledger-tm ledger-tendermint Hard N/A N/A

Above benchmarks performed using cargo bench on an Intel Xeon E3-1225 v5 @ 3.30GHz.

License

Signatory is distributed under the terms of either the MIT license or the Apache License (Version 2.0), at your option.

See LICENSE-APACHE and LICENSE-MIT for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].