MCPcopy Create free account
hub / github.com/PenguLoader/PenguLoader / Transform

Method Transform

loader/Main/DataStore.cs:50–61  ·  view source on GitHub ↗
(byte[] bytes)

Source from the content-addressed store, hash-verified

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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected