Package gnu.java.security.hash

Examples of gnu.java.security.hash.MD5


  public void test(TestHarness harness)
  {
    harness.checkPoint("TestOfMD5");
    try
      {
        algorithm = new MD5();
        harness.check(algorithm.selfTest(), "selfTest");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.selfTest");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update("a".getBytes(), 0, 1);
        byte[] md = algorithm.digest();
        String exp = "0CC175B9C0F1B6A831C399E269772661";
        harness.check(exp.equals(Util.toString(md)), "testA");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testA");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update("abc".getBytes(), 0, 3);
        byte[] md = algorithm.digest();
        String exp = "900150983CD24FB0D6963F7D28E17F72";
        harness.check(exp.equals(Util.toString(md)), "testABC");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testABC");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update("message digest".getBytes(), 0, 14);
        byte[] md = algorithm.digest();
        String exp = "F96B697D7CB7938D525A2F31AAF161D0";
        harness.check(exp.equals(Util.toString(md)), "testMessageDigest");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testMessageDigest");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update("abcdefghijklmnopqrstuvwxyz".getBytes(), 0, 26);
        byte[] md = algorithm.digest();
        String exp = "C3FCD3D76192E4007DFB496CCA67E13B";
        harness.check(exp.equals(Util.toString(md)), "testAlphabet");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testAlphabet");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update(
            "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
                .getBytes(),
            0, 62);
        byte[] md = algorithm.digest();
        String exp = "D174AB98D277D9F5A5611C2C9F419D9F";
        harness.check(exp.equals(Util.toString(md)), "testAsciiSubset");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testAsciiSubset");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update(
            "12345678901234567890123456789012345678901234567890123456789012345678901234567890"
                .getBytes(),
            0, 80);
        byte[] md = algorithm.digest();
        String exp = "57EDF4A22BE3C955AC49DA2E2107B67A";
        harness.check(exp.equals(Util.toString(md)), "testEightyNumerics");
      }
    catch (Exception x)
      {
        harness.debug(x);
        harness.fail("TestOfMD5.testEightyNumerics");
      }

    try
      {
        algorithm = new MD5();
        algorithm.update("a".getBytes(), 0, 1);
        clone = (IMessageDigest) algorithm.clone();
        byte[] md = algorithm.digest();
        String exp = "0CC175B9C0F1B6A831C399E269772661";
        harness.check(exp.equals(Util.toString(md)), "testCloning #1");
View Full Code Here

TOP

Related Classes of gnu.java.security.hash.MD5

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.