Discuss this help topic in SecureBlackbox Forum

TElCAdESSignatureProcessor.CreateBES

TElCAdESSignatureProcessor     See also     


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


Creates a BES signature.

Declaration

[C#]
    void CreateBES(TElX509Certificate Cert);
    void CreateBES(TElX509Certificate Cert, TElCustomCertStorage Chain);
    void CreateBES(TElX509Certificate Cert, TElCustomCertStorage Chain, byte[] ContentType);

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

[Pascal]
    procedure CreateBES(Cert : TElX509Certificate);
    procedure CreateBES(Cert : TElX509Certificate; Chain : TElCustomCertStorage);
    procedure CreateBES(Cert : TElX509Certificate; Chain : TElCustomCertStorage; const ContentType : ByteArray);

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

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

[Java]
    void createBES(TElX509Certificate Cert, TElCustomCertStorage Chain, byte[] ContentType);
    void createBES(TElX509Certificate Cert, TElCustomCertStorage Chain);
    void createBES(TElX509Certificate Cert);

Parameters

  • Cert - specifies the signing certificate.
  • 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-BES signature, the most basic form of CAdES.

See also:     Signature     CreateC     CreateEPES     CreateT     CreateX     CreateXL    

Discuss this help topic in SecureBlackbox Forum