[][src]Struct in_toto::crypto::PublicKey

pub struct PublicKey { /* fields omitted */ }

A structure containing information about a public key.

Implementations

impl PublicKey[src]

pub fn from_spki(der_bytes: &[u8], scheme: SignatureScheme) -> Result<Self>[src]

Parse DER bytes as an SPKI key.

See the documentation on KeyValue for more information on SPKI.

pub fn from_ed25519<T: Into<Vec<u8>>>(bytes: T) -> Result<Self>[src]

Parse ED25519 bytes as a public key.

pub fn from_ed25519_with_keyid_hash_algorithms<T: Into<Vec<u8>>>(
    bytes: T,
    keyid_hash_algorithms: Option<Vec<String>>
) -> Result<Self>
[src]

Parse ED25519 bytes as a public key with a custom keyid_hash_algorithms.

pub fn as_spki(&self) -> Result<Vec<u8>>[src]

Write the public key as SPKI DER bytes.

See the documentation on KeyValue for more information on SPKI.

pub fn typ(&self) -> &KeyType[src]

An immutable reference to the key's type.

pub fn scheme(&self) -> &SignatureScheme[src]

An immutable referece to the key's authorized signing scheme.

pub fn key_id(&self) -> &KeyId[src]

An immutable reference to the key's ID.

pub fn as_bytes(&self) -> &[u8][src]

Return the public key as bytes.

pub fn verify(&self, msg: &[u8], sig: &Signature) -> Result<()>[src]

Use this key to verify a message with a signature.

Trait Implementations

impl Clone for PublicKey[src]

impl Debug for PublicKey[src]

impl<'de> Deserialize<'de> for PublicKey[src]

impl Eq for PublicKey[src]

impl Hash for PublicKey[src]

impl Ord for PublicKey[src]

impl PartialEq<PublicKey> for PublicKey[src]

impl PartialOrd<PublicKey> for PublicKey[src]

impl Serialize for PublicKey[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,