当前位置: 首页 > 编程笔记 >

Java实现SHA-1算法实例

沈俊明
2023-03-14
本文向大家介绍Java实现SHA-1算法实例,包括了Java实现SHA-1算法实例的使用技巧和注意事项,需要的朋友参考一下

本文实例讲述了Java实现SHA-1算法的方法。分享给大家供大家参考。具体实现方法如下:

public class SHA1Util {

    private static final boolean hexcase = false;

    private static final String b64pad = "=";

    private static final int chrsz = 8;

    // 得到字符串SHA-1值的方法

    public static String hex_sha1(String s) {

        s = (s == null) ? "" : s;

        return binb2hex(core_sha1(str2binb(s), s.length() * chrsz));

    }

    public static String b64_hmac_sha1(String key, String data) {

        return binb2b64(core_hmac_sha1(key, data));

    }

    public static String b64_sha1(String s) {

        s = (s == null) ? "" : s;

        return binb2b64(core_sha1(str2binb(s), s.length() * chrsz));

    }

    private static String binb2b64(int[] binarray) {

        String tab = "abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyz0123456789+/";

        String str = "";

        binarray = strechbinarray(binarray, binarray.length * 4);

        for (int i = 0; i < binarray.length * 4; i += 3) {

            int triplet = (((binarray[i >> 2] >> 8 * (3 - i % 4)) & 0xff) << 16)

                    | (((binarray[i + 1 >> 2] >> 8 * (3 - (i + 1) % 4)) & 0xff) << 8)

                    | ((binarray[i + 2 >> 2] >> 8 * (3 - (i + 2) % 4)) & 0xff);

            for (int j = 0; j < 4; j++) {

                if (i * 8 + j * 6 > binarray.length * 32) {

                    str += b64pad;

                } else {

                    str += tab.charAt((triplet >> 6 * (3 - j)) & 0x3f);

                }

            }

        }

        return cleanb64str(str);

    }

    private static String binb2hex(int[] binarray) {

        String hex_tab = hexcase ? "0123456789abcdef" : "0123456789abcdef";

        String str = "";

        for (int i = 0; i < binarray.length * 4; i++) {

            char a = (char) hex_tab.charAt((binarray[i >> 2] >> ((3 - i % 4) * 8 + 4)) & 0xf);

            char b = (char) hex_tab.charAt((binarray[i >> 2] >> ((3 - i % 4) * 8)) & 0xf);

            str += (new Character(a).toString() + new Character(b).toString());

        }

        return str;

    }

    private static String binb2str(int[] bin) {

        String str = "";

        int mask = (1 << chrsz) - 1;

        for (int i = 0; i < bin.length * 32; i += chrsz) {

            str += (char) ((bin[i >> 5] >>> (24 - i % 32)) & mask);

        }

        return str;

    }

    private static int bit_rol(int num, int cnt) {

        return (num << cnt) | (num >>> (32 - cnt));

    }

    private static String cleanb64str(String str) {

        str = (str == null) ? "" : str;

        int len = str.length();

        if (len <= 1) {

            return str;

        }

        char trailchar = str.charAt(len - 1);

        String trailstr = "";

        for (int i = len - 1; i >= 0 && str.charAt(i) == trailchar; i--) {

            trailstr += str.charAt(i);

        }

        return str.substring(0, str.indexOf(trailstr));

    }

    private static int[] complete216(int[] oldbin) {

        if (oldbin.length >= 16) {

            return oldbin;

        }

        int[] newbin = new int[16 - oldbin.length];

        for (int i = 0; i < newbin.length; newbin[i] = 0, i++)

            ;

        return concat(oldbin, newbin);

    }

    private static int[] concat(int[] oldbin, int[] newbin) {

        int[] retval = new int[oldbin.length + newbin.length];

        for (int i = 0; i < (oldbin.length + newbin.length); i++) {

            if (i < oldbin.length) {

                retval[i] = oldbin[i];

            } else {

                retval[i] = newbin[i - oldbin.length];

            }

        }

        return retval;

    }

    private static int[] core_hmac_sha1(String key, String data) {

        key = (key == null) ? "" : key;

        data = (data == null) ? "" : data;

        int[] bkey = complete216(str2binb(key));

        if (bkey.length > 16) {

            bkey = core_sha1(bkey, key.length() * chrsz);

        }

        int[] ipad = new int[16];

        int[] opad = new int[16];

        for (int i = 0; i < 16; ipad[i] = 0, opad[i] = 0, i++)

            ;

        for (int i = 0; i < 16; i++) {

            ipad[i] = bkey[i] ^ 0x36363636;

            opad[i] = bkey[i] ^ 0x5c5c5c5c;

        }

        int[] hash = core_sha1(concat(ipad, str2binb(data)), 512 + data.length() * chrsz);

        return core_sha1(concat(opad, hash), 512 + 160);

    }

    private static int[] core_sha1(int[] x, int len) {

        int size = (len >> 5);

        x = strechbinarray(x, size);

        x[len >> 5] |= 0x80 << (24 - len % 32);

        size = ((len + 64 >> 9) << 4) + 15;

        x = strechbinarray(x, size);

        x[((len + 64 >> 9) << 4) + 15] = len;

        int[] w = new int[80];

        int a = 1732584193;

        int b = -271733879;

        int c = -1732584194;

        int d = 271733878;

        int e = -1009589776;

        for (int i = 0; i < x.length; i += 16) {

            int olda = a;

            int oldb = b;

            int oldc = c;

            int oldd = d;

            int olde = e;

            for (int j = 0; j < 80; j++) {

                if (j < 16) {

                    w[j] = x[i + j];

                } else {

                    w[j] = rol(w[j - 3] ^ w[j - 8] ^ w[j - 14] ^ w[j - 16], 1);

                }

                int t = safe_add(safe_add(rol(a, 5), sha1_ft(j, b, c, d)), safe_add(safe_add(e, w[j]), sha1_kt(j)));

                e = d;

                d = c;

                c = rol(b, 30);

                b = a;

                a = t;

            }

            a = safe_add(a, olda);

            b = safe_add(b, oldb);

            c = safe_add(c, oldc);

            d = safe_add(d, oldd);

            e = safe_add(e, olde);

        }

        int[] retval = new int[5];

        retval[0] = a;

        retval[1] = b;

        retval[2] = c;

        retval[3] = d;

        retval[4] = e;

        return retval;

    }

    private static void dotest() {

        String key = "key";

        String data = "data";

        System.out.println("hex_sha1(" + data + ")=" + hex_sha1(data));

        System.out.println("b64_sha1(" + data + ")=" + b64_sha1(data));

        System.out.println("str_sha1(" + data + ")=" + str_sha1(data));

        System.out.println("hex_hmac_sha1(" + key + "," + data + ")=" + hex_hmac_sha1(key, data));

        System.out.println("b64_hmac_sha1(" + key + "," + data + ")=" + b64_hmac_sha1(key, data));

        System.out.println("str_hmac_sha1(" + key + "," + data + ")=" + str_hmac_sha1(key, data));

    }

    public static String hex_hmac_sha1(String key, String data) {

        return binb2hex(core_hmac_sha1(key, data));

    }

    private static int rol(int num, int cnt) {

        return (num << cnt) | (num >>> (32 - cnt));

    }

    private static int safe_add(int x, int y) {

        int lsw = (int) (x & 0xffff) + (int) (y & 0xffff);

        int msw = (x >> 16) + (y >> 16) + (lsw >> 16);

        return (msw << 16) | (lsw & 0xffff);

    }

    private static int sha1_ft(int t, int b, int c, int d) {

        if (t < 20)

            return (b & c) | ((~b) & d);

        if (t < 40)

            return b ^ c ^ d;

        if (t < 60)

            return (b & c) | (b & d) | (c & d);

        return b ^ c ^ d;

    }

    private static int sha1_kt(int t) {

        return (t < 20) ? 1518500249 : (t < 40) ? 1859775393 : (t < 60) ? -1894007588 : -899497514;

    }

    private static boolean sha1_vm_test() {

        return hexcase ? hex_sha1("abc").equals("a9993e364706816aba3e25717850c26c9cd0d89d") : hex_sha1("abc").equals(

                "a9993e364706816aba3e25717850c26c9cd0d89d");

    }

    public static String str_hmac_sha1(String key, String data) {

        return binb2str(core_hmac_sha1(key, data));

    }

    public static String str_sha1(String s) {

        s = (s == null) ? "" : s;

        return binb2str(core_sha1(str2binb(s), s.length() * chrsz));

    }

    private static int[] str2binb(String str) {

        str = (str == null) ? "" : str;

        int[] tmp = new int[str.length() * chrsz];

        int mask = (1 << chrsz) - 1;

        for (int i = 0; i < str.length() * chrsz; i += chrsz) {

            tmp[i >> 5] |= ((int) (str.charAt(i / chrsz)) & mask) << (24 - i % 32);

        }

        int len = 0;

        for (int i = 0; i < tmp.length && tmp[i] != 0; i++, len++)

            ;

        int[] bin = new int[len];

        for (int i = 0; i < len; i++) {

            bin[i] = tmp[i];

        }

        return bin;

    }

    private static int[] strechbinarray(int[] oldbin, int size) {

        int currlen = oldbin.length;

        if (currlen >= size + 1) {

            return oldbin;

        }

        int[] newbin = new int[size + 1];

        for (int i = 0; i < size; newbin[i] = 0, i++)

            ;

        for (int i = 0; i < currlen; i++) {

            newbin[i] = oldbin[i];

        }

        return newbin;

    }

    public static void main(String args[]) {

        System.out.println("admin的SHA1的值为:" + hex_sha1("admin") + ",length=" + hex_sha1("admin").length());

    }

}

希望本文所述对大家的java程序设计有所帮助。

 类似资料:
  • 本文向大家介绍JavaScript实现SHA-1加密算法的方法,包括了JavaScript实现SHA-1加密算法的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JavaScript实现SHA-1加密算法的方法。分享给大家供大家参考。具体实现方法如下: 调用方法:hex_sha1即可。 希望本文所述对大家的javascript程序设计有所帮助。

  • 本文向大家介绍Java加密 消息摘要算法SHA实现详解,包括了Java加密 消息摘要算法SHA实现详解的使用技巧和注意事项,需要的朋友参考一下 SHA是消息摘要算法的一种实现方式,前面已经总结过MD2\4\5的实现,接下来就为大家总结一下SHA的实现。 SHA的jdk实现: SHA的BC实现: 对于SHA224,JAVA jdk并没有提供实现,下面是利用BC实现的方法: 对于SHA224还有一种类

  • 我需要用Java实现一个带有Key Vault的符号,使用Sha1算法,但不被支持,如何实现呢,我尝试用bouncy castle做了de digest并用RSNULL算法使用Key Vault客户端,但结果是不正确的。 产生的输出:IOGXIIIZ5ZYM2M7OZZ/ET8UOWWTWMKESEJVVS9W9CPHZ11WKFZ/IKGX2SJ4ADHCN32QCDBOSV/KNATVPYW+

  • 本文向大家介绍java中加密的实现方法(MD5,MD2,SHA),包括了java中加密的实现方法(MD5,MD2,SHA)的使用技巧和注意事项,需要的朋友参考一下 java中加密的实现方法(MD5,MD2,SHA)      实例代码:注释都很清楚, 输出结果:  以上就是java 加密的实例,如疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

  • 本文向大家介绍python实现八大排序算法(1),包括了python实现八大排序算法(1)的使用技巧和注意事项,需要的朋友参考一下 排序 排序是计算机内经常进行的一种操作,其目的是将一组”无序”的记录序列调整为”有序”的记录序列。分内部排序和外部排序。若整个排序过程不需要访问外存便能完成,则称此类排序问题为内部排序。反之,若参加排序的记录数量很大,整个序列的排序过程不可能完全在内存中完成,需要访问

  • 我正在寻找一种通用模式来分解一些常见的代码:我需要在具有不同算术属性的类之间实现代数加法和减法。一个典型的例子是可以用秒、小时和分钟表示的间隔,我用一个具有三个int属性的类实现了它。 例如,如果我想减去0秒、0分钟、1小时的周期,减去0秒、30分钟、0小时的周期,我不想获得0秒、-30分钟、1小时的周期。 我需要编码两个时间间隔之间的加减法,有没有通用的模式来编码这个代数?我应该寻找不同的代表吗