I am trying to create a password generator for one phone. In RFC2289, it indicates that I should dump the MD5 output, I use bouncy castle MD5, and I cannot decide how to collapse the output of the byte array.
for (int i = 0; i < 8; i++)
{
md5[i] ^= md5[i+8];
}
This is what I still have
source
share