Trait sp_application_crypto::RuntimeAppPublic [−][src]
pub trait RuntimeAppPublic: Sized { type Signature: Codec + Debug + MaybeHash + Eq + PartialEq + Clone; const ID: KeyTypeId; const CRYPTO_ID: CryptoTypeId; fn all() -> Vec<Self>; fn generate_pair(seed: Option<Vec<u8>>) -> Self; fn sign<M: AsRef<[u8]>>(&self, msg: &M) -> Option<Self::Signature>; fn verify<M: AsRef<[u8]>>(
&self,
msg: &M,
signature: &Self::Signature
) -> bool; fn to_raw_vec(&self) -> Vec<u8>; }
Expand description
A runtime interface for an application’s public key.
Associated Types
Associated Constants
const CRYPTO_ID: CryptoTypeId
const CRYPTO_ID: CryptoTypeId
The identifier of the crypto type of this application-specific key type.
Required methods
fn generate_pair(seed: Option<Vec<u8>>) -> Self
fn generate_pair(seed: Option<Vec<u8>>) -> Self
Generate a public/private pair with an optional seed
and store it in the keystore.
The seed
needs to be valid utf8.
Returns the generated public key.
Sign the given message with the corresponding private key of this public key.
The private key will be requested from the keystore.
Returns the signature or None
if the private key could not be found or some other error
occurred.
Verify that the given signature matches the given message using this public key.
fn to_raw_vec(&self) -> Vec<u8>
fn to_raw_vec(&self) -> Vec<u8>
Returns Self
as raw vec.
Implementors
impl RuntimeAppPublic for sp_application_crypto::ecdsa::AppPublic where
Public: RuntimePublic<Signature = Signature>,
impl RuntimeAppPublic for sp_application_crypto::ed25519::AppPublic where
Public: RuntimePublic<Signature = Signature>,
impl RuntimeAppPublic for sp_application_crypto::sr25519::AppPublic where
Public: RuntimePublic<Signature = Signature>,