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

com.cedarsoft.crypt.HashCalculator Maven / Gradle / Ivy

There is a newer version: 8.9.2
Show newest version
/**
 * Copyright (C) cedarsoft GmbH.
 *
 * Licensed under the GNU General Public License version 3 (the "License")
 * with Classpath Exception; you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at
 *
 *         http://www.cedarsoft.org/gpl3ce
 *         (GPL 3 with Classpath Exception)
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 3 only, as
 * published by the Free Software Foundation. cedarsoft GmbH designates this
 * particular file as subject to the "Classpath" exception as provided
 * by cedarsoft GmbH in the LICENSE file that accompanied this code.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 3 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 3 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact cedarsoft GmbH, 72810 Gomaringen, Germany,
 * or visit www.cedarsoft.com if you need additional information or
 * have any questions.
 */

package com.cedarsoft.crypt;


import javax.annotation.Nonnull;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;

/**
 * 

HashCalculator class.

* * @author Johannes Schneider ([email protected]) */ public class HashCalculator { private HashCalculator() { } /** *

calculate

* * @param algorithm a Algorithm object. * @param value an array of byte. * @return a Hash object. */ @Nonnull public static Hash calculate( @Nonnull Algorithm algorithm, @Nonnull byte[] value ) { return calculate( algorithm.getMessageDigest(), value ); } /** *

calculate

* * @param messageDigest a MessageDigest object. * @param value an array of byte. * @return a Hash object. */ @Nonnull public static Hash calculate( @Nonnull MessageDigest messageDigest, @Nonnull byte[] value ) { messageDigest.reset(); messageDigest.update( value ); byte[] digest = messageDigest.digest(); return new Hash( Algorithm.getAlgorithm( messageDigest.getAlgorithm() ), digest ); } /** *

calculate

* * @param algorithm a Algorithm object. * @param value a String object. * @return a Hash object. */ @Nonnull public static Hash calculate( @Nonnull Algorithm algorithm, @Nonnull String value ) { return calculate( algorithm.getMessageDigest(), value ); } /** *

calculate

* * @param messageDigest a MessageDigest object. * @param value a String object. * @return a Hash object. */ @Nonnull public static Hash calculate( @Nonnull MessageDigest messageDigest, @Nonnull String value ) { return calculate( messageDigest, value.getBytes(StandardCharsets.UTF_8) ); } /** *

calculate

* * @param algorithm a Algorithm object. * @param resource a URL object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull Algorithm algorithm, @Nonnull URL resource ) throws IOException { return calculate( algorithm.getMessageDigest(), resource ); } /** *

calculate

* * @param messageDigest a MessageDigest object. * @param resource a URL object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull MessageDigest messageDigest, @Nonnull URL resource ) throws IOException { InputStream in = resource.openStream(); try { return calculate( messageDigest, in ); } finally { in.close(); } } /** *

calculate

* * @param algorithm a Algorithm object. * @param file a File object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull Algorithm algorithm, @Nonnull File file ) throws IOException { return calculate( algorithm.getMessageDigest(), file ); } /** *

calculate

* * @param messageDigest a MessageDigest object. * @param file a File object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull MessageDigest messageDigest, @Nonnull File file ) throws IOException { InputStream in = new BufferedInputStream( new FileInputStream( file ) ); try { return calculate( messageDigest, in ); } finally { in.close(); } } /** *

calculate

* * @param algorithm a Algorithm object. * @param resourceIn a InputStream object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull Algorithm algorithm, @Nonnull InputStream resourceIn ) throws IOException { return calculate( algorithm.getMessageDigest(), resourceIn ); } /** *

calculate

* * @param messageDigest a MessageDigest object. * @param resourceIn a InputStream object. * @return a Hash object. * * @throws IOException if any. */ @Nonnull public static Hash calculate( @Nonnull MessageDigest messageDigest, @Nonnull InputStream resourceIn ) throws IOException { messageDigest.reset(); byte[] cache = new byte[255]; int k; while ( ( k = resourceIn.read( cache ) ) > -1 ) { messageDigest.update( cache, 0, k ); } byte[] digest = messageDigest.digest(); return new Hash( Algorithm.getAlgorithm( messageDigest.getAlgorithm() ), digest ); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy