Discuss this help topic in SecureBlackbox Forum

TElCAdESSignatureProcessor.CreateT

TElCAdESSignatureProcessor     See also     


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


Creates a CAdES-T signature.

Declaration

[VB.NET]
    Sub CreateT(ByVal Cert As TElX509Certificate, ByVal TSPClient As TElCustomTSPClient)
    Sub CreateT(ByVal Cert As TElX509Certificate, ByVal Chain As TElCustomCertStorage, ByVal ContentType As Byte(), ByVal TSPClient As TElCustomTSPClient)

[Pascal]
    procedure CreateT(Cert : TElX509Certificate; TSPClient : TElCustomTSPClient);
    procedure CreateT(Cert : TElX509Certificate; Chain : TElCustomCertStorage; const ContentType : ByteArray; TSPClient : TElCustomTSPClient);

[C++]
    void CreateT(TElX509Certificate &Cert, TElCustomTSPClient &TSPClient);
    void CreateT(TElX509Certificate *Cert, TElCustomTSPClient *TSPClient);
    void CreateT(TElX509Certificate &Cert, TElCustomCertStorage &Chain, const std::vector<uint8_t> &ContentType, TElCustomTSPClient &TSPClient);
    void CreateT(TElX509Certificate *Cert, TElCustomCertStorage *Chain, const std::vector<uint8_t> &ContentType, TElCustomTSPClient *TSPClient);

[PHP]
    void CreateT(TElX509Certificate $Cert, TElCustomTSPClient $TSPClient)
    void CreateT(TElX509Certificate $Cert, TElCustomCertStorage $Chain, array of byte|string|NULL $ContentType, TElCustomTSPClient $TSPClient)

Parameters

  • Cert - specifies the signing certificate.
  • TSPClient - the client which communicates with the TSP server.
  • Chain - the certificate chain to be added to the signature.
  • ContentType - specifies the content type of the signed message.

Description

    Call this method to create a CAdES-T (timestamp) signature.

See also:     Signature     CreateBES     CreateC     CreateEPES     CreateX     CreateXL    

Discuss this help topic in SecureBlackbox Forum