I am looking for a lightweight method of encrypting XML in php that my c# app will then be able to decrypt. It doesn't need to military strength, just enough to deter casual people from viewing the XML contents.
I've seen several methods online but they span 50+ lines of code and I'm trying to keep this nice and simple.
is there no built-in encryption/decryption methods that both php and c# share that require little more than encrypt($string,METHOD,$key)
and decrypt($string, METHOD, $key)
?