Struct ed25519_dalek::Signature
source · [−]pub struct Signature(_);
Expand description
Ed25519 signature.
Implementations
Parse an Ed25519 signature from a byte slice.
👎 Deprecated since 1.3.0: use ed25519::Signature::from_bytes instead
👎 Deprecated since 1.3.0:
use ed25519::Signature::from_bytes instead
DEPRECATED: Create a new signature from a byte array.
Warning
This method will panic if an invalid signature is encountered.
Use Signature::from_bytes
or Signature::try_from
instead for
a fallible conversion.
Trait Implementations
DEPRECATED: use TryFrom<&[u8]>
instead.
Warning
This conversion will panic if a signature is invalid.
Decode a signature from hexadecimal.
Upper and lower case hexadecimal are both accepted, however mixed case is rejected.
Parse a signature from its byte representation
Auto Trait Implementations
impl RefUnwindSafe for Signature
impl UnwindSafe for Signature
Blanket Implementations
Mutably borrows from an owned value. Read more