pub trait IX509AttributeArchiveKey_Impl: Sized + IX509Attribute_Impl {
    // Required methods
    fn InitializeEncode(
        &self,
        pkey: Option<&IX509PrivateKey>,
        encoding: EncodingType,
        strcaxcert: &BSTR,
        palgorithm: Option<&IObjectId>,
        encryptionstrength: i32,
    ) -> Result<()>;
    fn InitializeDecode(
        &self,
        encoding: EncodingType,
        strencodeddata: &BSTR,
    ) -> Result<()>;
    fn get_EncryptedKeyBlob(&self, encoding: EncodingType) -> Result<BSTR>;
    fn EncryptionAlgorithm(&self) -> Result<IObjectId>;
    fn EncryptionStrength(&self) -> Result<i32>;
}

Required Methods§

fn InitializeEncode( &self, pkey: Option<&IX509PrivateKey>, encoding: EncodingType, strcaxcert: &BSTR, palgorithm: Option<&IObjectId>, encryptionstrength: i32, ) -> Result<()>

fn InitializeDecode( &self, encoding: EncodingType, strencodeddata: &BSTR, ) -> Result<()>

fn get_EncryptedKeyBlob(&self, encoding: EncodingType) -> Result<BSTR>

fn EncryptionAlgorithm(&self) -> Result<IObjectId>

fn EncryptionStrength(&self) -> Result<i32>

Object Safety§

This trait is not object safe.

Implementors§