Trait sp_runtime::RuntimeAppPublic
source · pub trait RuntimeAppPublic: Sized {
type Signature: Codec + Debug + MaybeHash + Eq + PartialEq<Self::Signature> + Clone + TypeInfo;
const ID: KeyTypeId;
const CRYPTO_ID: CryptoTypeId;
// Required methods
fn all() -> Vec<Self, Global>;
fn generate_pair(seed: Option<Vec<u8, Global>>) -> Self;
fn sign<M>(&self, msg: &M) -> Option<Self::Signature>
where M: AsRef<[u8]>;
fn verify<M>(&self, msg: &M, signature: &Self::Signature) -> bool
where M: AsRef<[u8]>;
fn to_raw_vec(&self) -> Vec<u8, Global> ⓘ;
}
Expand description
A runtime interface for an application’s public key.
Required Associated Types§
Required Associated Constants§
sourceconst CRYPTO_ID: CryptoTypeId
const CRYPTO_ID: CryptoTypeId
The identifier of the crypto type of this application-specific key type.
Required Methods§
sourcefn generate_pair(seed: Option<Vec<u8, Global>>) -> Self
fn generate_pair(seed: Option<Vec<u8, Global>>) -> 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.
sourcefn sign<M>(&self, msg: &M) -> Option<Self::Signature>where
M: AsRef<[u8]>,
fn sign<M>(&self, msg: &M) -> Option<Self::Signature>where M: AsRef<[u8]>,
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.