Discuss this help topic in SecureBlackbox Forum

TElCMSSignature Constructor

TElCMSSignature     


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


Creates a new instance of ELCMSSignature class.

Declaration

[C#]
    TElCMSSignature(Object Subject);
    TElCMSSignature(Object Subject, TElPKCS7Signer PKCS7Signer);
    TElCMSSignature(Object Subject, byte[] Data);

[VB.NET]
    Sub New(ByVal Subject As Object)
    Sub New(ByVal Subject As Object, ByVal PKCS7Signer As TElPKCS7Signer)
    Sub New(ByVal Subject As Object, ByVal Data As Byte())

[Pascal]
    constructor Create(Subject : TObject);
    constructor Create(Subject : TObject; const Data : ByteArray);
    constructor Create(Subject : TObject; PKCS7Signer : TElPKCS7Signer);

[C++]
    not available

[PHP]
    not available

[Java]
    public TElCMSSignature();
    public TElCMSSignature(TObject Subject, byte[] Data);
    public TElCMSSignature(TObject Subject);
    public TElCMSSignature(TObject Subject, TElPKCS7Signer PKCS7Signer);

Parameters

  • Subject - the object to be signed with the signature
  • Data - an ASN.1 buffer containing signer information
  • PKCS7Signer - identifies the signer

Description

    Use this method to create a new instance of TElCMSSignature.

Discuss this help topic in SecureBlackbox Forum