tor-llcrypto: expose the Signer API from ed25519-dalek

This commit is contained in:
Nick Mathewson 2022-06-29 11:46:39 -04:00
parent ccbf28c248
commit 56fefd7adf
2 changed files with 2 additions and 1 deletions

View File

@ -0,0 +1 @@
MODIFIED: Signer trait now exposed.

View File

@ -13,7 +13,7 @@ use arrayref::array_ref;
use std::fmt::{self, Debug, Display, Formatter};
use subtle::{Choice, ConstantTimeEq};
pub use ed25519_dalek::{ExpandedSecretKey, Keypair, PublicKey, SecretKey, Signature};
pub use ed25519_dalek::{ExpandedSecretKey, Keypair, PublicKey, SecretKey, Signature, Signer};
/// A relay's identity, as an unchecked, unvalidated Ed25519 key.
///