xorize
(since 1.0)
Apply a 'XOR' between two string (or binary)
Description
string
xorize
(
string string1, string string2 )
Used to apply 'XOR' between two string (or binary)
Parameters
string1
The first string
string2
The second string
Return values
The xored string
Examples
var result = Ape.xorize("key1", "key2");
for (i = 0; i < key1_len; i++) {
returned[i] = key1[i] ^ key2[i];
}
User notes
# No comment
Post a note
CollaborAPE to our wiki !
Find the information you need on the APE Official Wiki : Install, Server, JSF, Help...
