Java Hash Calculate getHash(byte[] data)

Here you can find the source of getHash(byte[] data)

Description

get Hash

License

Apache License

Declaration

public static byte[] getHash(byte[] data) throws RuntimeException, NoSuchAlgorithmException 

Method Source Code

//package com.java2s;
/*/* w w w .j  a v a 2s . co m*/
   Copyright 2014 Waritnan Sookbuntherng
    
   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.
*/

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class Main {
    public static byte[] getHash(byte[] data) throws RuntimeException, NoSuchAlgorithmException {
        return MessageDigest.getInstance("MD5").digest(data);
    }
}

Related

  1. calculateHash(Long... ids)
  2. calculateHash(String str)
  3. calculateHashCode(byte a[])
  4. getHash(byte[] bytes)
  5. getHash(byte[] bytes)
  6. getHash(byte[] data)
  7. getHash(byte[] data, int offset, int length)
  8. getHash(byte[] inputBytes)
  9. getHash(byte[]... bytesToHash)