Struct ruma_signatures::Signature[][src]

pub struct Signature { /* fields omitted */ }
Expand description

A digital signature.

Implementations

Creates a signature from raw bytes.

While a signature can be created directly using struct literal syntax, this constructor can be used to automatically determine the algorithm and version from a key identifier in the form algorithm:version, e.g. “ed25519:1”.

This constructor will ensure that the version does not contain characters that violate the guidelines in the specification. Because it may be necessary to represent signatures with versions that don’t adhere to these guidelines, it’s possible to simply use the struct literal syntax to construct a Signature with an arbitrary key.

Parameters

  • id: A key identifier, e.g. “ed25519:1”.
  • bytes: The digital signature, as a series of bytes.

Errors

Returns an error if:

  • The key ID specifies an unknown algorithm.
  • The key ID is malformed.
  • The key ID contains a version with invalid characters.

The algorithm used to generate the signature.

The raw bytes of the signature.

A Base64 encoding of the signature.

Uses the standard character set with no padding.

The key identifier, a string containing the signature algorithm and the key “version” separated by a colon, e.g. “ed25519:1”.

The “version” of the key used for this signature.

Versions are used as an identifier to distinguish signatures generated from different keys but using the same algorithm on the same homeserver.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Feeds this value into the given Hasher. Read more

Feeds a slice of this type into the given Hasher. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.