Discuss this help topic in SecureBlackbox Forum

TElOCSPClass.SigningCertStorage

TElOCSPClass     See also     


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


Contains signing certificates.

Declaration

[C#]
    TElCustomCertStorage SigningCertStorage;

[VB.NET]
    Property SigningCertStorage As TElCustomCertStorage

[Pascal]
    property SigningCertStorage : TElCustomCertStorage;

[C++]
    TElCustomCertStorage* get_SigningCertStorage();
    void set_SigningCertStorage(TElCustomCertStorage &Value);
    void set_SigningCertStorage(TElCustomCertStorage *Value);

[PHP]
    TElCustomCertStorage get_SigningCertStorage()
    void set_SigningCertStorage(TElCustomCertStorage $Value)

[Java]
    TElCustomCertStorage getSigningCertStorage();
    void setSigningCertStorage(TElCustomCertStorage Value);

Description

    Use this property to keep the certificates which will be used to sign the requests (responses). You need to include one certificate with a private key which will be used for signing. Also you can include issuer certificates forming a certificate chain which can be used to verify the signing certificate.

For the server component, instead of setting SigningCertStorage you can handle the TElOCSPServer.OnSigningCertificatesNeeded event and provide certificates dynamically for each request.

See also:     OnCertificateNeeded    

Discuss this help topic in SecureBlackbox Forum