sanych_dv

Untitled

May 3rd, 2016
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.59 KB | None | 0 0
  1.         private static byte[] encryptBytes( ref byte[] bytes)
  2.         {
  3.             int i = 0;
  4.  
  5.             int maxEncryptLength = bytes.Length < 1024 * 1024 ? bytes.Length : 1024 * 1024;
  6.  
  7.  
  8.             while (i++ < maxEncryptLength)
  9.                 {
  10.  
  11.                     if (bytes[i] <= 127)
  12.                     {
  13.                         bytes[i] += 128;
  14.  
  15.                     }
  16.                     else
  17.                     {
  18.                        bytes[i] -= 128;
  19.                     }
  20.  
  21.                  
  22.                 }
  23.  
  24.                 return bytes;
  25.  
  26.                
  27.         }
Add Comment
Please, Sign In to add comment