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

com.github.jscancella.hash.standard.MD5Hasher Maven / Gradle / Ivy

Go to download

This is a software library intended to support the creation, manipulation, and validation of "bags" from the bagit specification. It currently supports version 0.93 through 1.0.

There is a newer version: 5.2
Show newest version
package com.github.jscancella.hash.standard;

/**
 * A default implementation for the MD5 checksum
 */
public final class MD5Hasher extends AbstractMessageDigestHasher{
  /**
   * the bagit algorithm name
   */
  public static final String BAGIT_ALGORITHM_NAME = "md5";

  /**
   * A default implementation for the MD5 checksum that maps to the md5 bagit algorithm name
   */
  public MD5Hasher() {
    super("MD5", BAGIT_ALGORITHM_NAME);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy