Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.AddContentTimestamp

TElCMSSignature     See also     


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


This method adds a timestamp to the signed attributes of the signature.

Declaration

[C#]
    int AddContentTimestamp(TElCustomTSPClient TSPClient);
    int AddContentTimestamp(byte[] Timestamp);

[VB.NET]
    Function AddContentTimestamp(ByVal TSPClient As TElCustomTSPClient) As Integer
    Function AddContentTimestamp(ByVal Timestamp As Byte()) As Integer

[Pascal]
    function AddContentTimestamp(TSPClient : TElCustomTSPClient) : integer;

[C++]
    int32_t AddContentTimestamp(TElCustomTSPClient &TSPClient);
    int32_t AddContentTimestamp(TElCustomTSPClient *TSPClient);
    int32_t AddContentTimestamp(const std::vector<uint8_t> &Timestamp);

[PHP]
    integer AddContentTimestamp(TElCustomTSPClient $TSPClient)
    integer AddContentTimestamp(array of byte|string|NULL $Timestamp)

[Java]
    int addContentTimestamp(TElCustomTSPClient TSPClient);
    int addContentTimestamp(byte[] Timestamp);

Parameters

  • TSPCLient - TElCustomTSPClient object which will be used for timestamping
  • Timestamp - ...

Return value

    Index of the newly added timestamp in the list.

Description

    Use this method to add a timestamp to the ContentTimestamps list.

See also:     ClearContentTimestamps     RemoveContentTimestamp    

Discuss this help topic in SecureBlackbox Forum