Exemplo n.º 1
0
 public static void Encrypt(CCompoundBuffer buffer)
 {
     Encrypt(buffer.RawBuffer, buffer.Offset);
 }
Exemplo n.º 2
0
 public static bool Decrypt(CCompoundBuffer buffer)
 {
     return(Decrypt(buffer.RawBuffer, buffer.Offset));
 }
Exemplo n.º 3
0
 public static unsafe T GetStructure <T>(CCompoundBuffer buffer) where T : struct
 {
     return(GetStructure <T>(buffer.RawBuffer, buffer.Offset));
 }