Get Sha 1 string : SHA « Security « Java

Home
Java
1.2D Graphics GUI
2.3D
3.Advanced Graphics
4.Ant
5.Apache Common
6.Chart
7.Class
8.Collections Data Structure
9.Data Type
10.Database SQL JDBC
11.Design Pattern
12.Development Class
13.EJB3
14.Email
15.Event
16.File Input Output
17.Game
18.Generics
19.GWT
20.Hibernate
21.I18N
22.J2EE
23.J2ME
24.JDK 6
25.JNDI LDAP
26.JPA
27.JSP
28.JSTL
29.Language Basics
30.Network Protocol
31.PDF RTF
32.Reflection
33.Regular Expressions
34.Scripting
35.Security
36.Servlets
37.Spring
38.Swing Components
39.Swing JFC
40.SWT JFace Eclipse
41.Threads
42.Tiny Application
43.Velocity
44.Web Services SOA
45.XML
Java » Security » SHAScreenshots 
Get Sha 1 string
    
//package com.googlecode.propidle.util;

import static java.lang.String.format;
import java.security.MessageDigest;
import java.math.BigInteger;

/*
Based on http://www.anyexample.com/programming/java/java_simple_class_to_compute_sha_1_hash.xml
 */
public class Sha1 {

    public static String sha1(String text) {
        try {
            MessageDigest md = MessageDigest.getInstance("SHA-1");

            md.update(text.getBytes("iso-8859-1")0, text.length());

            return convertToHex(md.digest());
        catch (Exception e) {
            throw new Exception(format("Problem hashing %s", text), e);
        }
    }

    private static String convertToHex(byte[] data) {
        StringBuffer buf = new StringBuffer();
        for (int i = 0; i < data.length; i++) {
            int halfbyte = (data[i>>> 40x0F;
            int two_halfs = 0;
            do {
                if ((<= halfbyte&& (halfbyte <= 9))
                    buf.append((char) ('0' + halfbyte));
                else
                    buf.append((char) ('a' (halfbyte - 10)));
                halfbyte = data[i0x0F;
            while (two_halfs++ < 1);
        }
        return buf.toString();
    }
}

   
    
    
    
  
Related examples in the same category
1.An alternate SHA Interleave algorithm as implemented in the SRP distribution
2.SHA_Interleave algorithm as described in section 3.1 of RFC2945
3.Returns the Jensen-Shannon divergence.
4.SHA1 Sum
5.Encrypt password by using SHA-256 algorithm, encryptedPassword length is 32 bits
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.