XOREncryption/Objective-C
Grey Lee 15d89e91e8 Fix Objective-C implementation, it has different result comparing to others.
Division operator and modulo operator have the same priority. So the result of "i % sizeof(key)/sizeof(unichar)" is the same as "(i % sizeof(key)) / sizeof(unichar)". But expected result should be "i % (sizeof(key)/sizeof(unichar))".
2017-03-23 11:58:48 +08:00
..
main.m Fix Objective-C implementation, it has different result comparing to others. 2017-03-23 11:58:48 +08:00