All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nl.open.jwtdependency.org.bouncycastle.crypto.test.MD5DigestTest Maven / Gradle / Ivy

Go to download

This is a drop in replacement for the auth0 java-jwt library (see https://github.com/auth0/java-jwt). This jar makes sure there are no external dependencies (e.g. fasterXml, Apacha Commons) needed. This is useful when deploying to an application server (e.g. tomcat with Alfreso or Pega).

The newest version!
package org.bouncycastle.crypto.test;

import org.bouncycastle.crypto.Digest;
import org.bouncycastle.crypto.digests.MD5Digest;

/**
 * standard vector test for MD5 from "Handbook of Applied Cryptography", page 345.
 */
public class MD5DigestTest
    extends DigestTest
{
    static final String[] messages =
    {
        "",
        "a",
        "abc",
        "abcdefghijklmnopqrstuvwxyz"
    };
    
    static final String[] digests =
    {
        "d41d8cd98f00b204e9800998ecf8427e",
        "0cc175b9c0f1b6a831c399e269772661",
        "900150983cd24fb0d6963f7d28e17f72",
        "c3fcd3d76192e4007dfb496cca67e13b"
    };

    MD5DigestTest()
    {
        super(new MD5Digest(), messages, digests);
    }

    protected Digest cloneDigest(Digest digest)
    {
        return new MD5Digest((MD5Digest)digest);
    }

    protected Digest cloneDigest(byte[] encodedState)
    {
        return new MD5Digest(encodedState);
    }
    
    public static void main(
        String[]    args)
    {
        runTest(new MD5DigestTest());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy