Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
AgentKey.cs
1using System;
3
5{
9 [CollectionName("AgentKeys")]
10 [TypeName(TypeNameSerialization.None)]
11 [Index("Account", "Id")]
12 public class AgentKey
13 {
17 public AgentKey()
18 {
19 }
20
24 [ObjectId]
25 public string ObjectId { get; set; }
26
30 public string Account { get; set; }
31
35 public string Id { get; set; }
36
40 public string LocalName { get; set; }
41
45 public string Namespace { get; set; }
46
50 public byte[] Salt { get; set; }
51
55 public byte[] PublicKey { get; set; }
56
60 public byte[] EncryptedKey { get; set; }
61
65 public DateTime Created { get; set; }
66
70 public DateTime Updated { get; set; }
71 }
72}
Contains an encrypted key for an agent.
Definition: AgentKey.cs:13
DateTime Created
When key was first created.
Definition: AgentKey.cs:65
AgentKey()
Contains an encrypted key for an agent.
Definition: AgentKey.cs:17
DateTime Updated
When key was last updated.
Definition: AgentKey.cs:70
TypeNameSerialization
How the type name should be serialized.