Java SHA1 SHA1_HEX(byte[] bytes)

Here you can find the source of SHA1_HEX(byte[] bytes)

Description

SHHEX

License

Apache License

Declaration

public static String SHA1_HEX(byte[] bytes) 

Method Source Code


//package com.java2s;
/*/*  ww  w .j  a v  a  2 s . c  o m*/
 * Copyright (c) 2016 yunmle.com(????????).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 */

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

public class Main {
    public static final char[] DIGITS = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e',
            'f' };

    public static String SHA1_HEX(String source) {
        try {
            return digest("SHA-1", source);
        } catch (NoSuchAlgorithmException ignore) {
        }
        return null;
    }

    public static String SHA1_HEX(byte[] bytes) {
        try {
            return digest("SHA-1", bytes);
        } catch (NoSuchAlgorithmException bytesz) {
        }
        return null;
    }

    private static String digest(String name, String source) throws NoSuchAlgorithmException {
        if (source != null) {
            final MessageDigest md = MessageDigest.getInstance(name);
            md.update(source.getBytes());
            return toHexString(md.digest());
        }
        return null;
    }

    private static String digest(String name, byte[] bytes) throws NoSuchAlgorithmException {
        if (bytes != null) {
            final MessageDigest md = MessageDigest.getInstance(name);
            md.update(bytes);
            return toHexString(md.digest());
        }
        return null;
    }

    public static String toHexString(final byte[] bs) {
        final int len;
        if (bs != null && (len = bs.length) != 0) {
            final char[] cs = new char[len << 1];
            final char[] myDigits = DIGITS;
            byte b;
            for (int i = 0, j = 0; i < len; i++) {
                cs[j++] = myDigits[((b = bs[i]) >>> 4) & 0xF];
                cs[j++] = myDigits[b & 0xF];
            }
            return String.valueOf(cs);
        }
        return null;
    }
}

Related

  1. sha1(String utf8)
  2. sha1(String value)
  3. sha1(String value)
  4. sha12String(MessageDigest messageDigest)
  5. sha1_b64(final String text)
  6. sha1AsBytes(String input)
  7. sha1ByString(String str)
  8. SHA1Checksum(String filename)
  9. sha1Digest(byte[] bytes)