Discuss this help topic in SecureBlackbox Forum

TElMessageSigner.IncludeCertificates

TElMessageSigner     See also     


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


This property defines whether certificates are included into signature.

Declaration

[C#]
    bool IncludeCertificates;

[VB.NET]
    Property IncludeCertificates As Boolean

[Pascal]
    property IncludeCertificates : boolean;

[C++]
    bool get_IncludeCertificates();
    void set_IncludeCertificates(bool Value);

[PHP]
    bool get_IncludeCertificates()
    void set_IncludeCertificates(bool $Value)

[Java]
    boolean getIncludeCertificates();
    void setIncludeCertificates(boolean Value);

Description

    When this property is true (by default), certificates are included into the signature and used for message verification. When this property is false, certificates are not included and the application must pass certificates to verifier using TElMessageVerifier.CertStorage property.
    The value of this property makes sense only for mstPublicKey signature type. For mstMAC signatures the value of this property is ignored.

See also:     TElMessageVerifier.CertStorage     IncludeChain    

Discuss this help topic in SecureBlackbox Forum