pub struct Signature { /* private fields */ }
alloc
only.Expand description
Low-level digital signature (e.g. DSA, ECDSA, Ed25519).
These are low-level signatures used as part of the OpenSSH certificate
format to represent signatures by certificate authorities (CAs), as well
as the higher-level SshSig
format, which provides
general-purpose signing functionality using SSH keys.
From OpenSSH’s PROTOCOL.certkeys specification:
Signatures are computed and encoded according to the rules defined for the CA’s public key algorithm (RFC4253 section 6.6 for ssh-rsa and ssh-dss, RFC5656 for the ECDSA types, and RFC8032 for Ed25519).
RSA signature support is implemented using the SHA2 family extensions as described in RFC8332.
Implementations§
source§impl Signature
impl Signature
sourcepub fn new(algorithm: Algorithm, data: impl Into<Vec<u8>>) -> Result<Self>
pub fn new(algorithm: Algorithm, data: impl Into<Vec<u8>>) -> Result<Self>
Create a new signature with the given algorithm and raw signature data.
See specifications in toplevel Signature
documentation for how to
format the raw signature data for a given algorithm.
§Returns
Error::Encoding
if the signature is not the correct length.
Trait Implementations§
source§impl Encode for Signature
impl Encode for Signature
source§fn encoded_len(&self) -> Result<usize>
fn encoded_len(&self) -> Result<usize>
source§fn encode(&self, writer: &mut impl Writer) -> Result<()>
fn encode(&self, writer: &mut impl Writer) -> Result<()>
Writer
.source§fn encoded_len_prefixed(&self) -> Result<usize, Error>
fn encoded_len_prefixed(&self) -> Result<usize, Error>
uint32
length prefix.source§fn encode_prefixed(&self, writer: &mut impl Writer) -> Result<(), Error>
fn encode_prefixed(&self, writer: &mut impl Writer) -> Result<(), Error>
uint32
length prefix
set to Encode::encoded_len
.source§impl Ord for Signature
impl Ord for Signature
source§impl PartialOrd for Signature
impl PartialOrd for Signature
source§impl SignatureEncoding for Signature
impl SignatureEncoding for Signature
source§impl Signer<Signature> for DsaKeypair
Available on crate feature dsa
only.
impl Signer<Signature> for DsaKeypair
dsa
only.source§impl Signer<Signature> for EcdsaKeypair
Available on crate features p256
or p384
or p521
only.
impl Signer<Signature> for EcdsaKeypair
p256
or p384
or p521
only.source§impl Signer<Signature> for EcdsaPrivateKey<32>
Available on crate feature p256
only.
impl Signer<Signature> for EcdsaPrivateKey<32>
p256
only.source§impl Signer<Signature> for EcdsaPrivateKey<48>
Available on crate feature p384
only.
impl Signer<Signature> for EcdsaPrivateKey<48>
p384
only.source§impl Signer<Signature> for EcdsaPrivateKey<66>
Available on crate feature p521
only.
impl Signer<Signature> for EcdsaPrivateKey<66>
p521
only.source§impl Signer<Signature> for Ed25519Keypair
Available on crate feature ed25519
only.
impl Signer<Signature> for Ed25519Keypair
ed25519
only.source§impl Signer<Signature> for KeypairData
impl Signer<Signature> for KeypairData
source§impl Signer<Signature> for PrivateKey
impl Signer<Signature> for PrivateKey
source§impl Signer<Signature> for RsaKeypair
Available on crate feature rsa
only.
impl Signer<Signature> for RsaKeypair
rsa
only.source§impl Verifier<Signature> for DsaPublicKey
Available on crate feature dsa
only.
impl Verifier<Signature> for DsaPublicKey
dsa
only.source§impl Verifier<Signature> for EcdsaPublicKey
Available on crate features p256
or p384
or p521
only.
impl Verifier<Signature> for EcdsaPublicKey
p256
or p384
or p521
only.source§impl Verifier<Signature> for Ed25519PublicKey
Available on crate feature ed25519
only.
impl Verifier<Signature> for Ed25519PublicKey
ed25519
only.source§impl Verifier<Signature> for RsaPublicKey
Available on crate feature rsa
only.
impl Verifier<Signature> for RsaPublicKey
rsa
only.source§impl Verifier<Signature> for SkEcdsaSha2NistP256
Available on crate feature p256
only.
impl Verifier<Signature> for SkEcdsaSha2NistP256
p256
only.impl Eq for Signature
impl StructuralPartialEq for Signature
Auto Trait Implementations§
impl Freeze for Signature
impl RefUnwindSafe for Signature
impl Send for Signature
impl Sync for Signature
impl Unpin for Signature
impl UnwindSafe for Signature
Blanket Implementations§
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)