mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-07 20:50:39 +00:00
Merge branch 'release/0.2.1'
This commit is contained in:
commit
b7660d3fe7
2 changed files with 4 additions and 4 deletions
|
|
@ -1,10 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ed25519-dalek"
|
name = "ed25519-dalek"
|
||||||
version = "0.2.0"
|
version = "0.2.1"
|
||||||
authors = ["Isis Lovecruft <isis@torproject.org>"]
|
authors = ["Isis Lovecruft <isis@torproject.org>"]
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
license = "CC0-1.0"
|
license = "CC0-1.0"
|
||||||
repository = "https://code.ciph.re/isis/ed25519-dalek"
|
repository = "https://github.com/isislovecruft/ed25519-dalek"
|
||||||
keywords = ["cryptography", "ed25519", "signature", "ECC"]
|
keywords = ["cryptography", "ed25519", "signature", "ECC"]
|
||||||
description = "Fast and efficient ed25519 signing and verification."
|
description = "Fast and efficient ed25519 signing and verification."
|
||||||
exclude = [ ".gitignore", "TESTVECTORS" ]
|
exclude = [ ".gitignore", "TESTVECTORS" ]
|
||||||
|
|
@ -15,7 +15,7 @@ arrayref = "0.3.3"
|
||||||
sha2 = "^0.4"
|
sha2 = "^0.4"
|
||||||
|
|
||||||
[dependencies.curve25519-dalek]
|
[dependencies.curve25519-dalek]
|
||||||
version = "^0.3"
|
version = "^0.4"
|
||||||
default-features = false
|
default-features = false
|
||||||
|
|
||||||
[dependencies.rand]
|
[dependencies.rand]
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ use curve25519_dalek::curve::CompressedEdwardsY;
|
||||||
use curve25519_dalek::curve::ExtendedPoint;
|
use curve25519_dalek::curve::ExtendedPoint;
|
||||||
use curve25519_dalek::curve::ProjectivePoint;
|
use curve25519_dalek::curve::ProjectivePoint;
|
||||||
use curve25519_dalek::scalar::Scalar;
|
use curve25519_dalek::scalar::Scalar;
|
||||||
use curve25519_dalek::util::arrays_equal_ct;
|
use curve25519_dalek::subtle::arrays_equal_ct;
|
||||||
|
|
||||||
pub const SIGNATURE_LENGTH: usize = 64;
|
pub const SIGNATURE_LENGTH: usize = 64;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue