PdfSignature
TimestampGenerateHandler Delegate
|
The handler which generate timestamp token.
Namespace:
Spire.Pdf.Security
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
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
-
Type:
System
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
Type:
Byte
timestamp which must conform to RFC 3161
See Also