The handler which generate timestamp token.

Namespace: Spire.Pdf.Security
Assembly: Spire.Pdf (in Spire.Pdf.dll) Version: 7.9.2.0 (7.9.2.1020)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public delegate byte[] TimestampGenerateHandler(
	byte[] signature
)
Public Delegate Function TimestampGenerateHandler ( 
	signature As Byte()
) As Byte()
public delegate array<unsigned char>^ TimestampGenerateHandler(
	array<unsigned char>^ signature
)
type TimestampGenerateHandler = 
    delegate of 
        signature : byte[] -> byte[]

Parameters

signature
array<Byte>[]()[][]
The value of signature field within SignerInfo. The value of messageImprint field within TimeStampToken shall be the hash of signature. Refrence RFC 3161 APPENDIX A.

Return Value

array<Byte>[]()[][]
timestamp which must conform to RFC 3161

See Also