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

com.harium.etyl.util.checksum.ChecksumAlgorithm Maven / Gradle / Ivy

There is a newer version: 1.0.18
Show newest version
package com.harium.etyl.util.checksum;

public enum ChecksumAlgorithm {
	
	MD2("MD2"),
	MD5("MD5"),	
	SHA1("SHA1");
	
	private final String code;

	ChecksumAlgorithm(String code){
		this.code = code;
	}
	
	public final String getCode(){ 
		return code; 
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy