[]
Defines methods used to generate time-stamp tokens. This interface is implemented by the TimeStamp class. It can also be implemented in user code to provide customized time-stamp token generation, see TimeStamp.
public interface ITimeStampGenerator
Generates the time-stamp token for data specified as a byte array.
byte[] GetTimeStampToken(byte[] data)
data
byte[]The byte array containing the data.
The time-stamp token.
Generates the time-stamp token for data specified as a stream.
byte[] GetTimeStampToken(Stream stream)
stream
System.IO.StreamThe stream containing the data.
The time-stamp token.