byte[] pwd = password.getBytes("UnicodeLittleUnmarked");
// do the md4 hash of the unicode passphrase...
MD4Digest md4 = new MD4Digest();
md4.update(pwd, 0, pwd.length);
md4.doFinal(key, 0);
return key;
}
/**
* Used by answerNtlmChallenge. We need the password converted to caps,