Discuss this help topic in SecureBlackbox Forum

TElCMSSignature.AddTimestamp

TElCMSSignature     See also     


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


This method adds a timestamp to the signature.

Declaration

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

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

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

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

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

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

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 Timestamps list.

See also:     ClearTimestamps     RemoveTimestamp    

Discuss this help topic in SecureBlackbox Forum