(byte[] bytes)
| 48 | } |
| 49 | |
| 50 | static void Transform(byte[] bytes) |
| 51 | { |
| 52 | const string KEY = "A5dgY6lz9fpG9kGNiH1mZ"; |
| 53 | |
| 54 | if (bytes != null && bytes.Length > 0) |
| 55 | { |
| 56 | for (int i = 0; i < bytes.Length; i++) |
| 57 | { |
| 58 | bytes[i] ^= (byte)KEY[i % KEY.Length]; |
| 59 | } |
| 60 | } |
| 61 | } |
| 62 | } |
| 63 | } |
nothing calls this directly
no outgoing calls
no test coverage detected