205206207208209210211212213214
byte[] output = new byte[digest.getDigestSize()]; digest.update(keyByteArray, 0, keyByteArray.length); digest.doFinal(output, 0); return new BigInteger(output); } }
4344454647484950515253
String resStr; // // test 1 // digest.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec1.equals(resStr)) { return new SimpleTestResult(false,
6364656667686970717273
// byte[] bytes = Hex.decode(testVec2); digest.update(bytes, 0, bytes.length); digest.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec2.equals(resStr)) { return new SimpleTestResult(false,
8384858687888990919293
// bytes = Hex.decode(testVec3); digest.update(bytes, 0, bytes.length); digest.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec3.equals(resStr)) { return new SimpleTestResult(false,
103104105106107108109110111112113
// bytes = Hex.decode(testVec4); digest.update(bytes, 0, bytes.length); digest.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec4.equals(resStr)) { return new SimpleTestResult(false,
141142143144145146147148149150151
+ System.getProperty("line.separator") + " got : " + resStr); } d.update(bytes, bytes.length/2, bytes.length - bytes.length/2); d.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec4.equals(resStr)) { return new SimpleTestResult(false,