Struct sp_core::crypto::Dummy [−][src]
pub struct Dummy;
Dummy cryptography. Doesn’t do anything.
Trait Implementations
impl CryptoType for Dummy
[src]
impl CryptoType for Dummy
[src]impl Derive for Dummy
[src]
impl Derive for Dummy
[src]fn derive<Iter: Iterator<Item = DeriveJunction>>(
&self,
_path: Iter
) -> Option<Self>
[src]
&self,
_path: Iter
) -> Option<Self>
impl Pair for Dummy
[src]
impl Pair for Dummy
[src]type Public = Dummy
The type which is used to encode a public key.
type Seed = Dummy
The type used to (minimally) encode the data required to securely create a new key pair. Read more
type Signature = Dummy
The type used to represent a signature. Can be created from a key pair and a message and verified with the message and a public key. Read more
type DeriveError = ()
Error returned from the derive
function.
fn generate_with_phrase(_: Option<&str>) -> (Self, String, Self::Seed)
[src]
fn from_phrase(
_: &str,
_: Option<&str>
) -> Result<(Self, Self::Seed), SecretStringError>
[src]
_: &str,
_: Option<&str>
) -> Result<(Self, Self::Seed), SecretStringError>
fn derive<Iter: Iterator<Item = DeriveJunction>>(
&self,
_: Iter,
_: Option<Dummy>
) -> Result<(Self, Option<Dummy>), Self::DeriveError>
[src]
&self,
_: Iter,
_: Option<Dummy>
) -> Result<(Self, Option<Dummy>), Self::DeriveError>
fn from_seed(_: &Self::Seed) -> Self
[src]
fn from_seed_slice(_: &[u8]) -> Result<Self, SecretStringError>
[src]
fn sign(&self, _: &[u8]) -> Self::Signature
[src]
fn verify<M: AsRef<[u8]>>(_: &Self::Signature, _: M, _: &Self::Public) -> bool
[src]
fn verify_weak<P: AsRef<[u8]>, M: AsRef<[u8]>>(_: &[u8], _: M, _: P) -> bool
[src]
fn public(&self) -> Self::Public
[src]
fn to_raw_vec(&self) -> Vec<u8>
[src]
fn generate() -> (Self, Self::Seed)
[src]
fn from_string_with_seed(
s: &str,
password_override: Option<&str>
) -> Result<(Self, Option<Self::Seed>), SecretStringError>
[src]
s: &str,
password_override: Option<&str>
) -> Result<(Self, Option<Self::Seed>), SecretStringError>
fn from_string(
s: &str,
password_override: Option<&str>
) -> Result<Self, SecretStringError>
[src]
s: &str,
password_override: Option<&str>
) -> Result<Self, SecretStringError>
impl Public for Dummy
[src]
impl Public for Dummy
[src]fn from_slice(_: &[u8]) -> Self
[src]
fn to_raw_vec(&self) -> Vec<u8>
[src]
fn as_slice(&self) -> &[u8]
[src]
fn to_public_crypto_pair(&self) -> CryptoTypePublicPair
[src]
impl Eq for Dummy
[src]
impl StructuralEq for Dummy
[src]
impl StructuralPartialEq for Dummy
[src]
Auto Trait Implementations
impl RefUnwindSafe for Dummy
impl Send for Dummy
impl Sync for Dummy
impl Unpin for Dummy
impl UnwindSafe for Dummy
Blanket Implementations
impl<T, U> AsByteSlice<T> for U where
T: ToByteSlice,
U: AsRef<[T]> + ?Sized,
[src]
impl<T, U> AsByteSlice<T> for U where
T: ToByteSlice,
U: AsRef<[T]> + ?Sized,
[src]pub fn as_byte_slice(&self) -> &[u8]
[src]
impl<T, U> AsMutByteSlice<T> for U where
T: ToMutByteSlice,
U: AsMut<[T]> + ?Sized,
[src]
impl<T, U> AsMutByteSlice<T> for U where
T: ToMutByteSlice,
U: AsMut<[T]> + ?Sized,
[src]pub fn as_mut_byte_slice(&mut self) -> &mut [u8]
[src]
impl<U> AsMutSliceOf for U where
U: AsMut<[u8]> + ?Sized,
[src]
impl<U> AsMutSliceOf for U where
U: AsMut<[u8]> + ?Sized,
[src]pub fn as_mut_slice_of<T>(&mut self) -> Result<&mut [T], Error> where
T: FromByteSlice,
[src]
T: FromByteSlice,
impl<U> AsSliceOf for U where
U: AsRef<[u8]> + ?Sized,
[src]
impl<U> AsSliceOf for U where
U: AsRef<[u8]> + ?Sized,
[src]pub fn as_slice_of<T>(&self) -> Result<&[T], Error> where
T: FromByteSlice,
[src]
T: FromByteSlice,
impl<T> CallHasher for T where
T: Hash,
[src]
impl<T> CallHasher for T where
T: Hash,
[src]impl<T> Instrument for T
[src]
impl<T> Instrument for T
[src]pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]
impl<T, Outer> IsWrappedBy<Outer> for T where
T: From<Outer>,
Outer: AsRef<T> + AsMut<T> + From<T>,
[src]impl<T> Ss58Codec for T where
T: AsMut<[u8]> + AsRef<[u8]> + Default + Derive,
[src]
impl<T> Ss58Codec for T where
T: AsMut<[u8]> + AsRef<[u8]> + Default + Derive,
[src]pub fn from_string(&str) -> Result<T, PublicError>
[src]
pub fn from_string_with_version(
&str
) -> Result<(T, Ss58AddressFormat), PublicError>
[src]
&str
) -> Result<(T, Ss58AddressFormat), PublicError>
fn format_is_allowed(f: Ss58AddressFormat) -> bool
[src]
fn from_ss58check(s: &str) -> Result<Self, PublicError>
[src]
fn from_ss58check_with_version(
s: &str
) -> Result<(Self, Ss58AddressFormat), PublicError>
[src]
s: &str
) -> Result<(Self, Ss58AddressFormat), PublicError>
fn to_ss58check_with_version(&self, version: Ss58AddressFormat) -> String
[src]
fn to_ss58check(&self) -> String
[src]
impl<T> ToHex for T where
T: AsRef<[u8]>,
[src]
impl<T> ToHex for T where
T: AsRef<[u8]>,
[src]pub fn encode_hex<U>(&self) -> U where
U: FromIterator<char>,
[src]
U: FromIterator<char>,
pub fn encode_hex_upper<U>(&self) -> U where
U: FromIterator<char>,
[src]
U: FromIterator<char>,
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]
impl<S, T> UncheckedInto<T> for S where
T: UncheckedFrom<S>,
[src]pub fn unchecked_into(Self) -> T
[src]
impl<T> MaybeRefUnwindSafe for T where
T: RefUnwindSafe,
[src]
T: RefUnwindSafe,