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