Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
ServerSignatureInfo.cs
1using System;
3
5{
10 {
11 private readonly Property<byte[]> signature;
12 private readonly Property<DateTime> timestamp;
13
19 {
20 this.signature = new Property<byte[]>(nameof(this.Signature), ServerSignature.DigitalSignature, this);
21 this.timestamp = new Property<DateTime>(nameof(this.Timestamp), ServerSignature.Timestamp, this);
22 }
23
27 public byte[] Signature
28 {
29 get => this.signature.Value;
30 set => this.signature.Value = value;
31 }
32
36 public DateTime Timestamp
37 {
38 get => this.timestamp.Value;
39 set => this.timestamp.Value = value;
40 }
41 }
42}
Represents a server signature on a contract.
Abstract base class of signatures
Definition: Signature.cs:10
byte[] DigitalSignature
Digital Signature
Definition: Signature.cs:27
DateTime Timestamp
Timestamp of signature.
Definition: Signature.cs:18