예제 #1
0
 /// <summary>
 /// Appends byte arrays to one another
 /// </summary>
 /// <param name="target"></param>
 /// <param name="otherOnes"></param>
 /// <returns></returns>
 public static byte[] Append(this byte[] target, params byte[] otherOnes)
 {
     return(IEncryption.ConcatBytes(target, otherOnes));
 }
예제 #2
0
 public byte[] GetBytes()
 {
     return(IEncryption.ConcatBytes(BitConverter.GetBytes(msgIndex), encMsg));
 }