Trait win_crypto_ng::asymmetric::Import
source · pub trait Import<'a, A: Algorithm, P: Parts> {
type Blob: AsRef<Blob<ErasedKeyBlob>> + 'a;
// Provided method
fn import(
algo: A,
provider: &AsymmetricAlgorithm,
blob: Self::Blob
) -> Result<AsymmetricKey<A, P>> { ... }
}
Expand description
Import asymmetric key using the raw key data format.