Usermode codesnippets that could be usefulCryptographyXORXORSource XORing string Cvoid xor_string(char *input) { char xorred; for (int i = 0; i < strlen(input); i++) { xorred = input[i] ^ XOR_KEY; input[i] = xorred; } }XORing numbers Cint xor_int(int input) { return input ^ XOR_KEY; }Crypt32 - RSA Keys