RC4.cs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. *
  7. * Based on: https://bitlush.com/blog/rc4-encryption-in-c-sharp
  8. */
  9. using System;
  10. using System.Collections.Generic;
  11. using System.Text;
  12. namespace System.Security.Cryptography
  13. {
  14. public class RC4
  15. {
  16. public static byte[] Encrypt(byte[] key, byte[] data)
  17. {
  18. return EncryptOutput(key, data);
  19. }
  20. public static byte[] Decrypt(byte[] key, byte[] data)
  21. {
  22. return EncryptOutput(key, data);
  23. }
  24. private static byte[] EncryptInitalize(byte[] key)
  25. {
  26. byte[] s = new byte[256];
  27. for (int index = 0; index < 256; index++)
  28. {
  29. s[index] = (byte)index;
  30. }
  31. for (int i = 0, j = 0; i < 256; i++)
  32. {
  33. j = (j + key[i % key.Length] + s[i]) & 255;
  34. Swap(s, i, j);
  35. }
  36. return s;
  37. }
  38. private static byte[] EncryptOutput(byte[] key, byte[] data)
  39. {
  40. byte[] s = EncryptInitalize(key);
  41. int i = 0;
  42. int j = 0;
  43. byte[] output = new byte[data.Length];
  44. for (int index = 0; index < data.Length; index++)
  45. {
  46. i = (i + 1) & 255;
  47. j = (j + s[i]) & 255;
  48. Swap(s, i, j);
  49. output[index] = (byte)(data[index] ^ s[(s[i] + s[j]) & 255]);
  50. }
  51. return output;
  52. }
  53. private static void Swap(byte[] s, int i, int j)
  54. {
  55. byte c = s[i];
  56. s[i] = s[j];
  57. s[j] = c;
  58. }
  59. }
  60. }