CryptoSignatureVerificationData Constructor
|
Create crypto signature verification data instance
Namespace:
Guardtime.KSI.Crypto
Assembly:
ksi-net-api (in ksi-net-api.dll) Version: 3.11.534.0 (3.11.534.0)
Syntaxpublic CryptoSignatureVerificationData(
byte[] certificate,
Nullable<ulong> signTime = null
)
Public Sub New (
certificate As Byte(),
Optional signTime As Nullable(Of ULong) = Nothing
)
public:
CryptoSignatureVerificationData(
array<unsigned char>^ certificate,
Nullable<unsigned long long> signTime = nullptr
)
new :
certificate : byte[] *
?signTime : Nullable<uint64>
(* Defaults:
let _signTime = defaultArg signTime null
*)
-> CryptoSignatureVerificationData
Parameters
- certificate
- Type: SystemByte
Trust anchor certificate bytes - signTime (Optional)
- Type: SystemNullableUInt64
Time of signing. If the time is given then it will be used for checking if certificate was valid at the given time.
See Also