Hi all i have for loop with a ~ operator never found this before on any of the code
for (int i = 0; i < bytes.length; i++) {
mashed[i] = (byte) ~bytes[i];
}
what does the ~ do?
i haven't found anything like this on the internet or before anywhere so maybe someone can help me thanks in advance