public SignatureData(byte[] data, PacInfoBufferType type) : base(data, type)
 {
     Decode(data);
 }
 public SignatureData(PacInfoBufferType type)
 {
     this.Type = type;
 }
Exemple #3
0
 public Requestor(PacInfoBufferType type)
 {
     this.Type = type;
 }
Exemple #4
0
 public Attributes(PacInfoBufferType type)
 {
     this.Type = type;
 }
Exemple #5
0
 public PacInfoBuffer(byte[] data, PacInfoBufferType type)
 {
     Type = type;
     br   = new BinaryReader(new MemoryStream(data));
 }
Exemple #6
0
 public PacCredentialInfo(byte[] data, PacInfoBufferType type, byte[] key) :  base(data, type)
 {
     this.key = key;
     Decode(data);
 }