3738394041424344454647
String resStr; // // test 1 // digest.doFinal(resBuf, 0); resStr = new String(Hex.encode(resBuf)); if (!resVec1.equals(resStr)) { return new SimpleTestResult(false,
5758596061626364656667
// 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,
7778798081828384858687
// 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,
979899100101102103104105106107
// 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,
135136137138139140141142143144145
+ 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,