Enum iota_types::signature::GenericSignature
source · pub enum GenericSignature {
MultiSig(MultiSig),
Signature(Signature),
ZkLoginAuthenticator(ZkLoginAuthenticator),
PasskeyAuthenticator(PasskeyAuthenticator),
}
Expand description
Due to the incompatibility of [enum Signature] (which dispatches a trait
that assumes signature and pubkey bytes for verification), here we add a
wrapper enum where member can just implement a lightweight [trait
AuthenticatorTrait]. This way MultiSig (and future Authenticators) can
implement its own verify
.
Variants§
MultiSig(MultiSig)
Signature(Signature)
ZkLoginAuthenticator(ZkLoginAuthenticator)
PasskeyAuthenticator(PasskeyAuthenticator)
Implementations§
source§impl GenericSignature
impl GenericSignature
pub fn is_zklogin(&self) -> bool
pub fn is_passkey(&self) -> bool
pub fn is_upgraded_multisig(&self) -> bool
pub fn verify_authenticator<T>(
&self,
value: &IntentMessage<T>,
author: IotaAddress,
epoch: EpochId,
verify_params: &VerifyParams,
zklogin_inputs_cache: Arc<VerifiedDigestCache<ZKLoginInputsDigest>>,
) -> IotaResultwhere
T: Serialize,
sourcepub fn to_compressed(&self) -> Result<CompressedSignature, IotaError>
pub fn to_compressed(&self) -> Result<CompressedSignature, IotaError>
Parse [enum CompressedSignature] from trait IotaSignature flag || sig || pk
. This is useful for the MultiSig to combine partial signature
into a MultiSig public key.
sourcepub fn to_public_key(&self) -> Result<PublicKey, IotaError>
pub fn to_public_key(&self) -> Result<PublicKey, IotaError>
Parse [struct PublicKey] from trait IotaSignature flag || sig || pk
.
This is useful for the MultiSig to construct the bitmap in [struct
MultiPublicKey].
Trait Implementations§
source§impl AsRef<[u8]> for GenericSignature
impl AsRef<[u8]> for GenericSignature
Trait useful to get the bytes reference for [enum GenericSignature].
source§impl AuthenticatorTrait for GenericSignature
impl AuthenticatorTrait for GenericSignature
fn verify_user_authenticator_epoch( &self, __enum_dispatch_arg_0: EpochId, __enum_dispatch_arg_1: Option<u64>, ) -> IotaResult
fn verify_claims<T>(
&self,
__enum_dispatch_arg_0: &IntentMessage<T>,
__enum_dispatch_arg_1: IotaAddress,
__enum_dispatch_arg_2: &VerifyParams,
__enum_dispatch_arg_3: Arc<VerifiedDigestCache<ZKLoginInputsDigest>>,
) -> IotaResultwhere
T: Serialize,
source§impl Clone for GenericSignature
impl Clone for GenericSignature
source§fn clone(&self) -> GenericSignature
fn clone(&self) -> GenericSignature
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GenericSignature
impl Debug for GenericSignature
source§impl<'de> Deserialize<'de> for GenericSignature
impl<'de> Deserialize<'de> for GenericSignature
source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
source§impl From<GenericSignature> for UserSignature
impl From<GenericSignature> for UserSignature
source§fn from(value: GenericSignature) -> Self
fn from(value: GenericSignature) -> Self
source§impl From<MultiSig> for GenericSignature
impl From<MultiSig> for GenericSignature
source§fn from(v: MultiSig) -> GenericSignature
fn from(v: MultiSig) -> GenericSignature
source§impl From<PasskeyAuthenticator> for GenericSignature
impl From<PasskeyAuthenticator> for GenericSignature
source§fn from(v: PasskeyAuthenticator) -> GenericSignature
fn from(v: PasskeyAuthenticator) -> GenericSignature
source§impl From<Signature> for GenericSignature
impl From<Signature> for GenericSignature
source§fn from(v: Signature) -> GenericSignature
fn from(v: Signature) -> GenericSignature
source§impl From<UserSignature> for GenericSignature
impl From<UserSignature> for GenericSignature
source§impl From<ZkLoginAuthenticator> for GenericSignature
impl From<ZkLoginAuthenticator> for GenericSignature
source§fn from(v: ZkLoginAuthenticator) -> GenericSignature
fn from(v: ZkLoginAuthenticator) -> GenericSignature
source§impl FromStr for GenericSignature
impl FromStr for GenericSignature
source§impl Hash for GenericSignature
impl Hash for GenericSignature
source§impl JsonSchema for GenericSignature
impl JsonSchema for GenericSignature
source§fn schema_name() -> String
fn schema_name() -> String
source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
§fn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read moresource§impl PartialEq for GenericSignature
impl PartialEq for GenericSignature
source§fn eq(&self, other: &GenericSignature) -> bool
fn eq(&self, other: &GenericSignature) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for GenericSignature
impl Serialize for GenericSignature
source§impl ToFromBytes for GenericSignature
impl ToFromBytes for GenericSignature
GenericSignature encodes a single signature [enum Signature] as is flag || signature || pubkey
. It encodes [struct MultiSigLegacy] as the MultiSig
flag (0x03) concat with the bcs serializedbytes of [struct MultiSigLegacy]
i.e. flag || bcs_bytes(MultiSigLegacy)
. [struct Multisig] is encodede as
the MultiSig flag (0x03) concat with the bcs serializedbytes of [struct
Multisig] i.e. flag || bcs_bytes(Multisig)
.
source§impl TryFrom<&GenericSignature> for IotaAddress
impl TryFrom<&GenericSignature> for IotaAddress
source§fn try_from(sig: &GenericSignature) -> IotaResult<Self>
fn try_from(sig: &GenericSignature) -> IotaResult<Self>
Derive a IotaAddress from a serialized signature in Iota GenericSignature.
source§impl TryInto<MultiSig> for GenericSignature
impl TryInto<MultiSig> for GenericSignature
source§impl TryInto<Signature> for GenericSignature
impl TryInto<Signature> for GenericSignature
impl Eq for GenericSignature
impl StructuralPartialEq for GenericSignature
Auto Trait Implementations§
impl !Freeze for GenericSignature
impl RefUnwindSafe for GenericSignature
impl Send for GenericSignature
impl Sync for GenericSignature
impl Unpin for GenericSignature
impl UnwindSafe for GenericSignature
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read more§impl<A, T> AsBits<T> for A
impl<A, T> AsBits<T> for A
§impl<T, U> AsByteSlice<T> for U
impl<T, U> AsByteSlice<T> for U
fn as_byte_slice(&self) -> &[u8] ⓘ
§impl<U> AsSliceOf for U
impl<U> AsSliceOf for U
fn as_slice_of<T>(&self) -> Result<&[T], Error>where
T: FromByteSlice,
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
§impl<T> Base32Len for T
impl<T> Base32Len for T
§fn base32_len(&self) -> usize
fn base32_len(&self) -> usize
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
§impl<T> CallHasher for T
impl<T> CallHasher for T
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> ConvertTo<T> for Twhere
T: Send,
impl<T> ConvertTo<T> for Twhere
T: Send,
fn convert(self) -> Result<T, Error>
fn convert_unchecked(self) -> T
§impl<T> EncodeDecodeBase64 for Twhere
T: ToFromBytes,
impl<T> EncodeDecodeBase64 for Twhere
T: ToFromBytes,
fn encode_base64(&self) -> String
fn decode_base64(value: &str) -> Result<T, FastCryptoError>
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a Request
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.§impl<T> ToBase32 for T
impl<T> ToBase32 for T
source§impl<T> ToHex for T
impl<T> ToHex for T
source§fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Lower case
letters are used (e.g. f9b4ca
)source§fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
fn encode_hex_upper<U>(&self) -> Uwhere
U: FromIterator<char>,
self
into the result. Upper case
letters are used (e.g. F9B4CA
)