Examples of MD5


Examples of dubious.sub.goobi.helper.encryption.MD5

  /**
   * Passwort eingeben
   */
  public String Weiter() {
    this.passwort = new MD5(this.passwort).getMD5();
    String adminMd5 = ConfigMain.getParameter("superadminpassword");
    this.istPasswortRichtig = (this.passwort.equals(adminMd5));
    if (!this.istPasswortRichtig) {
      Helper.setFehlerMeldung("wrong passworwd", "");
    }
View Full Code Here

Examples of gnu.crypto.hash.MD5

        return hash;
    }
   
    final byte[] md5Hash(String p) {
        //ripemd 160 hash
        final MD5 md5 = new MD5();
        final byte[] data = p.getBytes();
        md5.update(data, 0, data.length);
        final byte[] hash = md5.digest();
        return hash;
    }
View Full Code Here

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

Examples of net.matuschek.util.MD5

   */
  protected static String getContentMD5(byte[] content) {
    if ((content == null) || (content.length == 0)) {
      return "00000000000000000000000000000000";
    }
    MD5 md5 = new MD5();
    md5.Update(content);
    return md5.asHex();
  }
View Full Code Here

Examples of net.matuschek.util.MD5

   * @param docURI
   * @return String
   */
  protected String generateFilename(String docURI) {
    if (useMD5) {
      MD5 md5 = new MD5(docURI);
      String hex = md5.asHex();
      if (storageDirDepth > 0) {
        return useFirstCharactersAsDirectories(hex) + hex.substring(storageDirDepth);
      }
      return hex;
    } else {
View Full Code Here

Examples of net.timewalker.ffmq3.utils.md5.MD5

*/
public class MD5Test extends TestCase
{
  public void testMD5() throws Exception
  {
    MD5 md5 = new MD5();
   
    md5.update("foobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobarfoobar".getBytes());
    byte[] result = md5.digest();
   
    System.out.println(StringTools.asHex(result));
  }
View Full Code Here

Examples of org.apache.avro.MD5

        Arrays.asList(new Double[] { 1.1, 1.2, 1.3, 1.4 }));
    interopBuilder.setBoolField(true);
    interopBuilder.setBytesField(ByteBuffer.wrap(new byte[] { 1, 2, 3, 4 }));
    interopBuilder.setDoubleField(3.14d);
    interopBuilder.setEnumField(Kind.B);
    interopBuilder.setFixedField(new MD5(new byte[] {
        4, 3, 2, 1, 4, 3, 2, 1, 4, 3, 2, 1, 4, 3, 2, 1 }));
    interopBuilder.setFloatField(6.022f);
    interopBuilder.setIntField(32);
    interopBuilder.setLongField(64L);
   
View Full Code Here

Examples of org.apache.avro.MD5

        .setArrayField(Arrays.asList(new Double[] { 3.14159265, 6.022 }))
        .setBoolField(true)
        .setBytesField(ByteBuffer.allocate(4).put(new byte[] { 3, 2, 1, 0 }))
        .setDoubleField(1.41421)
        .setEnumField(Kind.C)
        .setFixedField(new MD5(
            new byte[] { 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3 }))
        .setFloatField(1.61803f)
        .setIntField(64)
        .setLongField(1024)
        .setMapField(Collections.singletonMap("Foo1", new Foo()))
View Full Code Here

Examples of org.apache.avro.MD5

        .setArrayField(Arrays.asList(new Double[] { 3.14159265, 6.022 }))
        .setBoolField(true)
        .setBytesField(ByteBuffer.allocate(4).put(new byte[] { 3, 2, 1, 0 }))
        .setDoubleField(1.41421)
        .setEnumField(Kind.C)
        .setFixedField(new MD5(
            new byte[] { 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3 }))
        .setFloatField(1.61803f)
        .setIntField(64)
        .setLongField(1024)
        .setMapField(Collections.singletonMap("Foo1", new Foo()))
View Full Code Here

Examples of org.apache.avro.ipc.MD5

        String className = "java=org.apache.avro.ipc.HandshakeRequest";

        HandshakeRequest req = new HandshakeRequest();
        // set a few values to avoid NPEs
        req.clientHash = new MD5();
        req.clientProtocol = new Utf8("");
        req.serverHash = new MD5();

        AvroSpecificSerializer<HandshakeRequest> serializer = new AvroSpecificSerializer<HandshakeRequest>(className);
        byte[] bytes = serializer.toBytes(req);
        byte[] bytes2 = serializer.toBytes(req);
        assertEquals(ByteUtils.compare(bytes, bytes2), 0);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.