Discuss this help topic in SecureBlackbox Forum

TElMessageVerifier.CertStorage

TElMessageVerifier     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property can contain certificates used to verify message signature.

Declaration

[C#]
    TElCustomCertStorage CertStorage;

[VB.NET]
    Property CertStorage As TElCustomCertStorage

[Pascal]
    property CertStorage : TElCustomCertStorage;

[C++]
    TElCustomCertStorage* get_CertStorage();
    void set_CertStorage(TElCustomCertStorage &Value);
    void set_CertStorage(TElCustomCertStorage *Value);

[PHP]
    TElCustomCertStorage get_CertStorage()
    void set_CertStorage(TElCustomCertStorage $Value)

[Java]
    TElCustomCertStorage getCertStorage();
    void setCertStorage(TElCustomCertStorage Value);

Description

    Use this property to specify certificates which should be used to verify signed messages.

    You may leave this property empty if you are verifying the public-key signature (i.e. if SignatureType is mstPublicKey). But, you must assign it if the SignatureType is mstMAC. Moreover, for mstMAC signatures the certificates stored in specified certificate storage must contain corresponding private keys.

See also:     HashAlgorithm    

Discuss this help topic in SecureBlackbox Forum