Struct mithril_common::crypto_helper::ProtocolKey

source ·
pub struct ProtocolKey<T>{ /* private fields */ }
Expand description

A ProtocolKey is a wrapped that add Serialization capabilities.

When using serde to (de)serialize it will done using json hex (see key_decode_hex and key_encode_hex).

Implementations§

source§

impl ProtocolKey<VerifyingKey>

source

pub fn verify( &self, message: &[u8], signature: &ProtocolGenesisSignature, ) -> StdResult<()>

Verifies the genesis signature of a message

source§

impl<T> ProtocolKey<T>

source

pub fn new(key: T) -> Self

Create a ProtocolKey from the given key

source

pub fn from_json_hex(hex_string: &str) -> StdResult<Self>

Create an instance from a JSON hex representation

source

pub fn to_json_hex(&self) -> StdResult<String>

Create a JSON hash representation of the key

source

pub fn key_to_json_hex(key: &T) -> StdResult<String>

Create a JSON hash representation of the given key

source

pub fn write_json_hex_to_file(&self, path: &Path) -> StdResult<()>

Write to file in JSON hex format

source

pub fn read_json_hex_from_file(path: &Path) -> StdResult<Self>

Read from file in JSON hex format

source§

impl ProtocolKey<Signature>

source

pub fn from_bytes_hex(hex_string: &str) -> StdResult<Self>

Create an instance from a bytes hex representation

source

pub fn from_bytes(bytes: &[u8]) -> StdResult<Self>

Create an instance from a bytes representation

source

pub fn to_bytes_hex(&self) -> String

Create a bytes hash representation of the key

source

pub fn key_to_bytes_hex(key: &Signature) -> String

Create a bytes hash representation of the given key

Trait Implementations§

source§

impl<T> Clone for ProtocolKey<T>

source§

fn clone(&self) -> ProtocolKey<T>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<T> Debug for ProtocolKey<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T> Deref for ProtocolKey<T>

source§

type Target = T

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl<'de, T> Deserialize<'de> for ProtocolKey<T>

source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl From<MKProof> for ProtocolKey<MKProof>

source§

fn from(value: MKProof) -> Self

Converts to this type from the input type.
source§

impl From<OpCert> for ProtocolKey<OpCert>

source§

fn from(value: OpCert) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<MKProof>> for MKProof

source§

fn from(value: ProtocolKey<MKProof>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<OpCert>> for OpCert

source§

fn from(value: ProtocolKey<OpCert>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<Signature>> for Signature

source§

fn from(value: ProtocolKey<Signature>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<SigningKey>> for SigningKey

source§

fn from(value: ProtocolKey<SigningKey>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<StmAggrSig<CoreWrapper<CtVariableCoreWrapper<Blake2bVarCore, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>>>>> for StmAggrSig<Blake2b<U32>>

source§

fn from(value: ProtocolKey<StmAggrSig<Blake2b<U32>>>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<StmAggrVerificationKey<CoreWrapper<CtVariableCoreWrapper<Blake2bVarCore, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>>>>> for StmAggrVerificationKey<Blake2b<U32>>

source§

fn from(value: ProtocolKey<StmAggrVerificationKey<Blake2b<U32>>>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<StmSig>> for StmSig

source§

fn from(value: ProtocolKey<StmSig>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<Sum6KesSig>> for Sum6KesSig

source§

fn from(value: ProtocolKey<Sum6KesSig>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<VerificationKeyPoP>> for StmVerificationKeyPoP

source§

fn from(value: ProtocolKey<StmVerificationKeyPoP>) -> Self

Converts to this type from the input type.
source§

impl From<ProtocolKey<VerifyingKey>> for VerifyingKey

source§

fn from(value: ProtocolKey<VerifyingKey>) -> Self

Converts to this type from the input type.
source§

impl From<Signature> for ProtocolKey<Signature>

source§

fn from(value: Signature) -> Self

Converts to this type from the input type.
source§

impl From<SigningKey> for ProtocolKey<SigningKey>

source§

fn from(value: SigningKey) -> Self

Converts to this type from the input type.
source§

impl From<StmAggrSig<CoreWrapper<CtVariableCoreWrapper<Blake2bVarCore, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>>>> for ProtocolKey<StmAggrSig<Blake2b<U32>>>

source§

fn from(value: StmAggrSig<Blake2b<U32>>) -> Self

Converts to this type from the input type.
source§

impl From<StmAggrVerificationKey<CoreWrapper<CtVariableCoreWrapper<Blake2bVarCore, UInt<UInt<UInt<UInt<UInt<UInt<UTerm, B1>, B0>, B0>, B0>, B0>, B0>>>>> for ProtocolKey<StmAggrVerificationKey<Blake2b<U32>>>

source§

fn from(value: StmAggrVerificationKey<Blake2b<U32>>) -> Self

Converts to this type from the input type.
source§

impl From<StmSig> for ProtocolKey<StmSig>

source§

fn from(value: StmSig) -> Self

Converts to this type from the input type.
source§

impl From<Sum6KesSig> for ProtocolKey<Sum6KesSig>

source§

fn from(value: Sum6KesSig) -> Self

Converts to this type from the input type.
source§

impl From<VerificationKeyPoP> for ProtocolKey<StmVerificationKeyPoP>

source§

fn from(value: StmVerificationKeyPoP) -> Self

Converts to this type from the input type.
source§

impl From<VerifyingKey> for ProtocolKey<VerifyingKey>

source§

fn from(value: VerifyingKey) -> Self

Converts to this type from the input type.
source§

impl<T> PartialEq for ProtocolKey<T>

source§

fn eq(&self, other: &ProtocolKey<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T> Serialize for ProtocolKey<T>

source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<T> TryFrom<&ProtocolKey<T>> for String

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &ProtocolKey<T>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> TryFrom<&str> for ProtocolKey<T>

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: &str) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> TryFrom<ProtocolKey<T>> for String

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: ProtocolKey<T>) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> TryFrom<String> for ProtocolKey<T>

source§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_from(value: String) -> Result<Self, Self::Error>

Performs the conversion.
source§

impl<T> Copy for ProtocolKey<T>

source§

impl<T> Eq for ProtocolKey<T>

source§

impl<T> StructuralPartialEq for ProtocolKey<T>

Auto Trait Implementations§

§

impl<T> Freeze for ProtocolKey<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for ProtocolKey<T>
where T: RefUnwindSafe,

§

impl<T> Send for ProtocolKey<T>
where T: Send,

§

impl<T> Sync for ProtocolKey<T>
where T: Sync,

§

impl<T> Unpin for ProtocolKey<T>
where T: Unpin,

§

impl<T> UnwindSafe for ProtocolKey<T>
where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> AsOut<T> for T
where T: Copy,

§

fn as_out(&mut self) -> Out<'_, T>

Returns an out reference to self.
source§

impl<T> Az for T

source§

fn az<Dst>(self) -> Dst
where T: Cast<Dst>,

Casts the value.
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<Src, Dst> CastFrom<Src> for Dst
where Src: Cast<Dst>,

source§

fn cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> CheckedAs for T

source§

fn checked_as<Dst>(self) -> Option<Dst>
where T: CheckedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> CheckedCastFrom<Src> for Dst
where Src: CheckedCast<Dst>,

source§

fn checked_cast_from(src: Src) -> Option<Dst>

Casts the value.
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

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

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<Src, Dst> LosslessTryInto<Dst> for Src
where Dst: LosslessTryFrom<Src>,

source§

fn lossless_try_into(self) -> Option<Dst>

Performs the conversion.
source§

impl<Src, Dst> LossyInto<Dst> for Src
where Dst: LossyFrom<Src>,

source§

fn lossy_into(self) -> Dst

Performs the conversion.
source§

impl<T> OverflowingAs for T

source§

fn overflowing_as<Dst>(self) -> (Dst, bool)
where T: OverflowingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> OverflowingCastFrom<Src> for Dst
where Src: OverflowingCast<Dst>,

source§

fn overflowing_cast_from(src: Src) -> (Dst, bool)

Casts the value.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

source§

type Output = T

Should always be Self
source§

impl<T> SaturatingAs for T

source§

fn saturating_as<Dst>(self) -> Dst
where T: SaturatingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> SaturatingCastFrom<Src> for Dst
where Src: SaturatingCast<Dst>,

source§

fn saturating_cast_from(src: Src) -> Dst

Casts the value.
source§

impl<T> Serialize for T
where T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<(), Error>

source§

fn do_erased_serialize( &self, serializer: &mut dyn Serializer, ) -> Result<(), ErrorImpl>

source§

impl<T> ToOwned for T
where T: Clone,

source§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UnwrappedAs for T

source§

fn unwrapped_as<Dst>(self) -> Dst
where T: UnwrappedCast<Dst>,

Casts the value.
source§

impl<Src, Dst> UnwrappedCastFrom<Src> for Dst
where Src: UnwrappedCast<Dst>,

source§

fn unwrapped_cast_from(src: Src) -> Dst

Casts the value.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<T> WrappingAs for T

source§

fn wrapping_as<Dst>(self) -> Dst
where T: WrappingCast<Dst>,

Casts the value.
source§

impl<Src, Dst> WrappingCastFrom<Src> for Dst
where Src: WrappingCast<Dst>,

source§

fn wrapping_cast_from(src: Src) -> Dst

Casts the value.
source§

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

§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

§

impl<T> SendSyncUnwindSafe for T
where T: Send + Sync + UnwindSafe + ?Sized,