pub struct SigningKey { /* private fields */ }Expand description
ed25519 signing key which can be used to produce signatures.
Implementations§
Source§impl SigningKey
§Example
use ed25519_dalek::SigningKey;
use ed25519_dalek::SECRET_KEY_LENGTH;
use ed25519_dalek::SignatureError;
let secret_key_bytes: [u8; SECRET_KEY_LENGTH] = [
157, 097, 177, 157, 239, 253, 090, 096,
186, 132, 074, 244, 146, 236, 044, 196,
068, 073, 197, 105, 123, 050, 105, 025,
112, 059, 172, 003, 028, 174, 127, 096, ];
let signing_key: SigningKey = SigningKey::from_bytes(&secret_key_bytes);
assert_eq!(signing_key.to_bytes(), secret_key_bytes);
impl SigningKey
§Example
use ed25519_dalek::SigningKey;
use ed25519_dalek::SECRET_KEY_LENGTH;
use ed25519_dalek::SignatureError;
let secret_key_bytes: [u8; SECRET_KEY_LENGTH] = [
157, 097, 177, 157, 239, 253, 090, 096,
186, 132, 074, 244, 146, 236, 044, 196,
068, 073, 197, 105, 123, 050, 105, 025,
112, 059, 172, 003, 028, 174, 127, 096, ];
let signing_key: SigningKey = SigningKey::from_bytes(&secret_key_bytes);
assert_eq!(signing_key.to_bytes(), secret_key_bytes);
Sourcepub fn from_bytes(secret_key: &SecretKey) -> Self
pub fn from_bytes(secret_key: &SecretKey) -> Self
Construct a SigningKey from a SecretKey
Sourcepub fn to_bytes(&self) -> SecretKey
pub fn to_bytes(&self) -> SecretKey
Convert this SigningKey into a SecretKey
Sourcepub fn as_bytes(&self) -> &SecretKey
pub fn as_bytes(&self) -> &SecretKey
Convert this SigningKey into a SecretKey reference
Sourcepub fn from_keypair_bytes(
bytes: &[u8; 64],
) -> Result<SigningKey, SignatureError>
pub fn from_keypair_bytes( bytes: &[u8; 64], ) -> Result<SigningKey, SignatureError>
Construct a SigningKey from the bytes of a VerifyingKey and SecretKey.
§Inputs
bytes: an&[u8]of lengthKEYPAIR_LENGTH, representing the scalar for the secret key, and a compressed Edwards-Y coordinate of a point on curve25519, both as bytes. (As obtained fromSigningKey::to_bytes.)
§Returns
A Result whose okay value is an EdDSA SigningKey or whose error value
is a SignatureError describing the error that occurred.
Sourcepub fn to_keypair_bytes(&self) -> [u8; 64]
pub fn to_keypair_bytes(&self) -> [u8; 64]
Convert this signing key to a 64-byte keypair.
§Returns
An array of bytes, [u8; KEYPAIR_LENGTH]. The first
SECRET_KEY_LENGTH of bytes is the SecretKey, and the next
PUBLIC_KEY_LENGTH bytes is the VerifyingKey (the same as other
libraries, such as Adam Langley’s ed25519 Golang
implementation). It is guaranteed that
the encoded public key is the one derived from the encoded secret key.
Sourcepub fn verifying_key(&self) -> VerifyingKey
pub fn verifying_key(&self) -> VerifyingKey
Get the VerifyingKey for this SigningKey.
Sourcepub fn with_context<'k, 'v>(
&'k self,
context_value: &'v [u8],
) -> Result<Context<'k, 'v, Self>, SignatureError>
Available on crate feature digest only.
pub fn with_context<'k, 'v>( &'k self, context_value: &'v [u8], ) -> Result<Context<'k, 'v, Self>, SignatureError>
digest only.Create a signing context that can be used for Ed25519ph with
DigestSigner.
Sourcepub fn generate<R: CryptoRng + ?Sized>(csprng: &mut R) -> SigningKey
Available on crate feature rand_core only.
pub fn generate<R: CryptoRng + ?Sized>(csprng: &mut R) -> SigningKey
rand_core only.Generate an ed25519 signing key.
§Example
use getrandom::{SysRng, rand_core::{TryRng, UnwrapErr}};
use ed25519_dalek::{Signature, SigningKey};
let mut csprng = UnwrapErr(SysRng);
let signing_key: SigningKey = SigningKey::generate(&mut csprng);§Input
A CSPRNG with a fill_bytes() method, e.g. rand_os::SysRng.
Sourcepub fn sign_prehashed<MsgDigest>(
&self,
prehashed_message: MsgDigest,
context: Option<&[u8]>,
) -> Result<Signature, SignatureError>
Available on crate feature digest only.
pub fn sign_prehashed<MsgDigest>( &self, prehashed_message: MsgDigest, context: Option<&[u8]>, ) -> Result<Signature, SignatureError>
digest only.Sign a prehashed_message with this SigningKey using the
Ed25519ph algorithm defined in RFC8032 §5.1.
§Inputs
prehashed_messageis an instantiated hash digest with 512-bits of output which has had the message to be signed previously fed into its state.contextis an optional context string, up to 255 bytes inclusive, which may be used to provide additional domain separation. If not set, this will default to an empty string.
§Returns
An Ed25519ph Signature on the prehashed_message.
§Note
The RFC only permits SHA-512 to be used for prehashing, i.e., MsgDigest = Sha512. This
function technically works, and is probably safe to use, with any secure hash function with
512-bit digests, but anything outside of SHA-512 is NOT specification-compliant. We expose
crate::Sha512 for user convenience.
§Examples
use ed25519_dalek::Digest;
use ed25519_dalek::SigningKey;
use ed25519_dalek::Signature;
use sha2::Sha512;
use getrandom::{SysRng, rand_core::{TryRng, UnwrapErr}};
let mut csprng = UnwrapErr(SysRng);
let signing_key: SigningKey = SigningKey::generate(&mut csprng);
let message: &[u8] = b"All I want is to pet all of the dogs.";
// Create a hash digest object which we'll feed the message into:
let mut prehashed: Sha512 = Sha512::new();
prehashed.update(message);If you want, you can optionally pass a “context”. It is generally a good idea to choose a context and try to make it unique to your project and this specific usage of signatures.
For example, without this, if you were to convert your OpenPGP key to a Bitcoin key (just as an example, and also Don’t Ever Do That) and someone tricked you into signing an “email” which was actually a Bitcoin transaction moving all your magic internet money to their address, it’d be a valid transaction.
By adding a context, this trick becomes impossible, because the context is concatenated into the hash, which is then signed. So, going with the previous example, if your bitcoin wallet used a context of “BitcoinWalletAppTxnSigning” and OpenPGP used a context (this is likely the least of their safety problems) of “GPGsCryptoIsntConstantTimeLol”, then the signatures produced by both could never match the other, even if they signed the exact same message with the same key.
Let’s add a context for good measure (remember, you’ll want to choose your own!):
let context: &[u8] = b"Ed25519DalekSignPrehashedDoctest";
let sig: Signature = signing_key.sign_prehashed(prehashed, Some(context))?;Sourcepub fn verify(
&self,
message: &[u8],
signature: &Signature,
) -> Result<(), SignatureError>
pub fn verify( &self, message: &[u8], signature: &Signature, ) -> Result<(), SignatureError>
Verify a signature on a message with this signing key’s public key.
Sourcepub fn verify_prehashed<MsgDigest>(
&self,
prehashed_message: MsgDigest,
context: Option<&[u8]>,
signature: &Signature,
) -> Result<(), SignatureError>
Available on crate feature digest only.
pub fn verify_prehashed<MsgDigest>( &self, prehashed_message: MsgDigest, context: Option<&[u8]>, signature: &Signature, ) -> Result<(), SignatureError>
digest only.Verify a signature on a prehashed_message using the Ed25519ph algorithm.
§Inputs
prehashed_messageis an instantiated hash digest with 512-bits of output which has had the message to be signed previously fed into its state.contextis an optional context string, up to 255 bytes inclusive, which may be used to provide additional domain separation. If not set, this will default to an empty string.signatureis a purported Ed25519phSignatureon theprehashed_message.
§Returns
Returns true if the signature was a valid signature created by this
SigningKey on the prehashed_message.
§Note
The RFC only permits SHA-512 to be used for prehashing, i.e., MsgDigest = Sha512. This
function technically works, and is probably safe to use, with any secure hash function with
512-bit digests, but anything outside of SHA-512 is NOT specification-compliant. We expose
crate::Sha512 for user convenience.
§Examples
use ed25519_dalek::Digest;
use ed25519_dalek::SigningKey;
use ed25519_dalek::Signature;
use ed25519_dalek::SignatureError;
use sha2::Sha512;
use getrandom::{SysRng, rand_core::{TryRng, UnwrapErr}};
let mut csprng = UnwrapErr(SysRng);
let signing_key: SigningKey = SigningKey::generate(&mut csprng);
let message: &[u8] = b"All I want is to pet all of the dogs.";
let mut prehashed: Sha512 = Sha512::new();
prehashed.update(message);
let context: &[u8] = b"Ed25519DalekSignPrehashedDoctest";
let sig: Signature = signing_key.sign_prehashed(prehashed, Some(context))?;
// The sha2::Sha512 struct doesn't implement Copy, so we'll have to create a new one:
let mut prehashed_again: Sha512 = Sha512::default();
prehashed_again.update(message);
let verified = signing_key.verifying_key().verify_prehashed(prehashed_again, Some(context), &sig);
assert!(verified.is_ok());
Sourcepub fn verify_strict(
&self,
message: &[u8],
signature: &Signature,
) -> Result<(), SignatureError>
pub fn verify_strict( &self, message: &[u8], signature: &Signature, ) -> Result<(), SignatureError>
Strictly verify a signature on a message with this signing key’s public key.
§On The (Multiple) Sources of Malleability in Ed25519 Signatures
This version of verification is technically non-RFC8032 compliant. The following explains why.
- Scalar Malleability
The authors of the RFC explicitly stated that verification of an ed25519
signature must fail if the scalar s is not properly reduced mod \ell:
To verify a signature on a message M using public key A, with F being 0 for Ed25519ctx, 1 for Ed25519ph, and if Ed25519ctx or Ed25519ph is being used, C being the context, first split the signature into two 32-octet halves. Decode the first half as a point R, and the second half as an integer S, in the range 0 <= s < L. Decode the public key A as point A’. If any of the decodings fail (including S being out of range), the signature is invalid.)
All verify_*() functions within ed25519-dalek perform this check.
- Point malleability
The authors of the RFC added in a malleability check to step #3 in
§5.1.7, for small torsion components in the R value of the signature,
which is not strictly required, as they state:
Check the group equation [8][S]B = [8]R + [8][k]A’. It’s sufficient, but not required, to instead check [S]B = R + [k]A’.
§History of Malleability Checks
As originally defined (cf. the “Malleability” section in the README of this repo), ed25519 signatures didn’t consider any form of malleability to be an issue. Later the scalar malleability was considered important. Still later, particularly with interests in cryptocurrency design and in unique identities (e.g. for Signal users, Tor onion services, etc.), the group element malleability became a concern.
However, libraries had already been created to conform to the original definition. One well-used library in particular even implemented the group element malleability check, but only for batch verification! Which meant that even using the same library, a single signature could verify fine individually, but suddenly, when verifying it with a bunch of other signatures, the whole batch would fail!
§“Strict” Verification
This method performs both of the above signature malleability checks.
It must be done as a separate method because one doesn’t simply get to change the definition of a cryptographic primitive ten years after-the-fact with zero consideration for backwards compatibility in hardware and protocols which have it already have the older definition baked in.
§Return
Returns Ok(()) if the signature is valid, and Err otherwise.
Sourcepub fn verify_stream(
&self,
signature: &Signature,
) -> Result<StreamVerifier, SignatureError>
Available on crate feature hazmat only.
pub fn verify_stream( &self, signature: &Signature, ) -> Result<StreamVerifier, SignatureError>
hazmat only.Constructs stream verifier with candidate signature.
See VerifyingKey::verify_stream() for more details.
Sourcepub fn to_scalar_bytes(&self) -> [u8; 32]
pub fn to_scalar_bytes(&self) -> [u8; 32]
Convert this signing key into a byte representation of an unreduced, unclamped Curve25519
scalar. This is NOT the same thing as self.to_scalar().to_bytes(), since to_scalar()
performs a clamping step, which changes the value of the resulting scalar.
This can be used for performing X25519 Diffie-Hellman using Ed25519 keys. The bytes output
by this function are a valid corresponding StaticSecret
for the X25519 public key given by self.verifying_key().to_montgomery().
§Note
We do NOT recommend using a signing/verifying key for encryption. Signing keys are usually long-term keys, while keys used for key exchange should rather be ephemeral. If you can help it, use a separate key for encryption.
For more information on the security of systems which use the same keys for both signing and Diffie-Hellman, see the paper On using the same key pair for Ed25519 and an X25519 based KEM.
Sourcepub fn to_scalar(&self) -> Scalar
pub fn to_scalar(&self) -> Scalar
Convert this signing key into a Curve25519 scalar. This is computed by clamping and
reducing the output of Self::to_scalar_bytes.
This can be used anywhere where a Curve25519 scalar is used as a private key, e.g., in
crypto_box.
§Note
We do NOT recommend using a signing/verifying key for encryption. Signing keys are usually long-term keys, while keys used for key exchange should rather be ephemeral. If you can help it, use a separate key for encryption.
For more information on the security of systems which use the same keys for both signing and Diffie-Hellman, see the paper On using the same key pair for Ed25519 and an X25519 based KEM.
Trait Implementations§
Source§impl AsRef<VerifyingKey> for SigningKey
impl AsRef<VerifyingKey> for SigningKey
Source§fn as_ref(&self) -> &VerifyingKey
fn as_ref(&self) -> &VerifyingKey
Source§impl Clone for SigningKey
impl Clone for SigningKey
Source§fn clone(&self) -> SigningKey
fn clone(&self) -> SigningKey
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl ConstantTimeEq for SigningKey
impl ConstantTimeEq for SigningKey
Source§impl Debug for SigningKey
impl Debug for SigningKey
Source§impl<'d> Deserialize<'d> for SigningKey
Available on crate feature serde only.
impl<'d> Deserialize<'d> for SigningKey
serde only.Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'d>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'d>,
Source§impl<D> DigestSigner<D, Signature> for SigningKey
Available on crate feature digest only.Equivalent to SigningKey::sign_prehashed with context set to None.
impl<D> DigestSigner<D, Signature> for SigningKey
digest only.Equivalent to SigningKey::sign_prehashed with context set to None.
§Note
The RFC only permits SHA-512 to be used for prehashing. This function technically works, and is
probably safe to use, with any secure hash function with 512-bit digests, but anything outside
of SHA-512 is NOT specification-compliant. We expose crate::Sha512 for user convenience.
Source§fn try_sign_digest<F: Fn(&mut D) -> Result<(), SignatureError>>(
&self,
f: F,
) -> Result<Signature, SignatureError>
fn try_sign_digest<F: Fn(&mut D) -> Result<(), SignatureError>>( &self, f: F, ) -> Result<Signature, SignatureError>
Digest with it, returning a digital
signature on success, or an error if something went wrong. Read moreSource§impl Drop for SigningKey
Available on crate feature zeroize only.
impl Drop for SigningKey
zeroize only.Source§impl EncodePrivateKey for SigningKey
Available on crate features alloc and pkcs8 only.
impl EncodePrivateKey for SigningKey
alloc and pkcs8 only.Source§fn to_pkcs8_der(&self) -> Result<SecretDocument>
fn to_pkcs8_der(&self) -> Result<SecretDocument>
SecretDocument containing a PKCS#8-encoded private key. Read moreSource§fn to_pkcs8_pem(
&self,
line_ending: LineEnding,
) -> Result<Zeroizing<String>, Error>
fn to_pkcs8_pem( &self, line_ending: LineEnding, ) -> Result<Zeroizing<String>, Error>
pem only.LineEnding. Read moreimpl Eq for SigningKey
Source§impl From<&SigningKey> for KeypairBytes
Available on crate feature pkcs8 only.
impl From<&SigningKey> for KeypairBytes
pkcs8 only.Source§fn from(signing_key: &SigningKey) -> KeypairBytes
fn from(signing_key: &SigningKey) -> KeypairBytes
Source§impl From<&SigningKey> for VerifyingKey
impl From<&SigningKey> for VerifyingKey
Source§fn from(signing_key: &SigningKey) -> VerifyingKey
fn from(signing_key: &SigningKey) -> VerifyingKey
Source§impl From<SigningKey> for KeypairBytes
Available on crate feature pkcs8 only.
impl From<SigningKey> for KeypairBytes
pkcs8 only.Source§fn from(signing_key: SigningKey) -> KeypairBytes
fn from(signing_key: SigningKey) -> KeypairBytes
Source§impl Generate for SigningKey
Available on crate features digest and rand_core only.
impl Generate for SigningKey
digest and rand_core only.Source§fn try_generate_from_rng<R: TryCryptoRng + ?Sized>(
rng: &mut R,
) -> Result<Self, R::Error>
fn try_generate_from_rng<R: TryCryptoRng + ?Sized>( rng: &mut R, ) -> Result<Self, R::Error>
TryCryptoRng. Read moreSource§impl KeySizeUser for SigningKey
Available on crate feature digest only.
impl KeySizeUser for SigningKey
digest only.Source§impl KeypairRef for SigningKey
impl KeypairRef for SigningKey
Source§type VerifyingKey = VerifyingKey
type VerifyingKey = VerifyingKey
Source§impl MultipartSigner<Signature> for SigningKey
impl MultipartSigner<Signature> for SigningKey
Source§fn try_multipart_sign(
&self,
message: &[&[u8]],
) -> Result<Signature, SignatureError>
fn try_multipart_sign( &self, message: &[&[u8]], ) -> Result<Signature, SignatureError>
Signer::try_sign() but the message is provided in non-contiguous byte
slices. Read moreSource§fn multipart_sign(&self, msg: &[&[u8]]) -> S
fn multipart_sign(&self, msg: &[&[u8]]) -> S
Signer::sign() but the message is provided in non-contiguous byte slices.Source§impl MultipartVerifier<Signature> for SigningKey
impl MultipartVerifier<Signature> for SigningKey
Source§fn multipart_verify(
&self,
message: &[&[u8]],
signature: &Signature,
) -> Result<(), SignatureError>
fn multipart_verify( &self, message: &[&[u8]], signature: &Signature, ) -> Result<(), SignatureError>
Verifier::verify() but the message is provided in non-contiguous byte
slices. Read moreSource§impl PartialEq for SigningKey
impl PartialEq for SigningKey
Source§impl Serialize for SigningKey
Available on crate feature serde only.
impl Serialize for SigningKey
serde only.Source§impl SignatureAlgorithmIdentifier for SigningKey
Available on crate feature pkcs8 only.
impl SignatureAlgorithmIdentifier for SigningKey
pkcs8 only.Source§const SIGNATURE_ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params> = <Signature as
pkcs8::spki::AssociatedAlgorithmIdentifier>::ALGORITHM_IDENTIFIER
const SIGNATURE_ALGORITHM_IDENTIFIER: AlgorithmIdentifier<Self::Params> = <Signature as pkcs8::spki::AssociatedAlgorithmIdentifier>::ALGORITHM_IDENTIFIER
AlgorithmIdentifier for the corresponding signature system.Source§impl Signer<Signature> for SigningKey
impl Signer<Signature> for SigningKey
Source§impl TryFrom<&KeypairBytes> for SigningKey
Available on crate feature pkcs8 only.
impl TryFrom<&KeypairBytes> for SigningKey
pkcs8 only.Source§impl TryFrom<&[u8]> for SigningKey
impl TryFrom<&[u8]> for SigningKey
Source§impl TryFrom<KeypairBytes> for SigningKey
Available on crate feature pkcs8 only.
impl TryFrom<KeypairBytes> for SigningKey
pkcs8 only.Source§impl TryFrom<PrivateKeyInfo<AnyRef<'_>, &OctetStringRef, BitStringRef<'_>>> for SigningKey
Available on crate feature pkcs8 only.
impl TryFrom<PrivateKeyInfo<AnyRef<'_>, &OctetStringRef, BitStringRef<'_>>> for SigningKey
pkcs8 only.Source§impl TryKeyInit for SigningKey
Available on crate feature digest only.
impl TryKeyInit for SigningKey
digest only.Source§fn new(key: &Key<Self>) -> Result<Self, InvalidKey>
fn new(key: &Key<Self>) -> Result<Self, InvalidKey>
Source§fn new_from_slice(key: &[u8]) -> Result<Self, InvalidKey>
fn new_from_slice(key: &[u8]) -> Result<Self, InvalidKey>
Source§impl Verifier<Signature> for SigningKey
impl Verifier<Signature> for SigningKey
impl ZeroizeOnDrop for SigningKey
zeroize only.Auto Trait Implementations§
impl Freeze for SigningKey
impl RefUnwindSafe for SigningKey
impl Send for SigningKey
impl Sync for SigningKey
impl Unpin for SigningKey
impl UnsafeUnpin for SigningKey
impl UnwindSafe for SigningKey
Blanket Implementations§
Source§impl<S, T> AsyncMultipartVerifier<S> for Twhere
T: MultipartVerifier<S>,
impl<S, T> AsyncMultipartVerifier<S> for Twhere
T: MultipartVerifier<S>,
Source§async fn multipart_verify_async(
&self,
msg: &[&[u8]],
signature: &S,
) -> Result<(), Error>
async fn multipart_verify_async( &self, msg: &[&[u8]], signature: &S, ) -> Result<(), Error>
MultipartVerifier::multipart_verify() where the
message is provided in non-contiguous byte slices.Source§impl<S, T> AsyncSigner<S> for Twhere
T: Signer<S>,
impl<S, T> AsyncSigner<S> for Twhere
T: Signer<S>,
Source§impl<S, T> AsyncVerifier<S> for Twhere
T: Verifier<S>,
impl<S, T> AsyncVerifier<S> for Twhere
T: Verifier<S>,
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> DecodePrivateKey for Twhere
T: for<'a> TryFrom<PrivateKeyInfo<AnyRef<'a>, &'a OctetStringRef, BitStringRef<'a>>, Error = Error>,
impl<T> DecodePrivateKey for Twhere
T: for<'a> TryFrom<PrivateKeyInfo<AnyRef<'a>, &'a OctetStringRef, BitStringRef<'a>>, Error = Error>,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<T> DynSignatureAlgorithmIdentifier for Twhere
T: SignatureAlgorithmIdentifier,
impl<T> DynSignatureAlgorithmIdentifier for Twhere
T: SignatureAlgorithmIdentifier,
Source§fn signature_algorithm_identifier(
&self,
) -> Result<AlgorithmIdentifier<Any>, Error>
fn signature_algorithm_identifier( &self, ) -> Result<AlgorithmIdentifier<Any>, Error>
AlgorithmIdentifier for the corresponding signature system. Read more