Md5Hasher.java

65 lines | 1.683 kB Blame History Raw Download
/*
 * Copyright 2012 LinkedIn Corp.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package azkaban.utils;

import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.security.DigestInputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
 * Helper class that will find the md5 hash for files.
 */
public class Md5Hasher {
	
	private static final int BYTE_BUFFER_SIZE = 1024;
	
	public static MessageDigest getMd5Digest() {
		MessageDigest digest = null;
		try {
			digest = MessageDigest.getInstance("MD5");
		} catch (NoSuchAlgorithmException e) {
			// Should never get here.
		}
		
		return digest;
	}
	
	public static byte[] md5Hash(File file) throws IOException {
		MessageDigest digest = getMd5Digest();
		
		FileInputStream fStream = new FileInputStream(file);
		BufferedInputStream bStream = new BufferedInputStream(fStream);
		DigestInputStream blobStream = new DigestInputStream(bStream, digest);
		
		byte[] buffer = new byte[BYTE_BUFFER_SIZE];
		
		int num = 0;
		do {
			num = blobStream.read(buffer);
		} while (num > 0);
		
		bStream.close();
		
		return digest.digest();
	}
	
}