Home Answers Viewqa Java-Beginners One way hash in Java

 
 


Umesh
One way hash in Java
1 Answer(s)      2 years and 10 months ago
Posted in : Java Beginners

Hi,

What is one way hashing. How to implement it in Java. I've to compare the contents of two files by generating their hash value in Java.
Please give some examples.

Thank You,
View Answers

July 16, 2010 at 3:38 PM


Hi Friend,

A one-way hash function is used to create digital signatures, which in turn identify and authenticate the message.

Example:
********************

import java.util.*;
import java.security.*;
public class Hashing {

public static String convert(String st)throws Exception{
byte[] by = st.getBytes();
MessageDigest md = MessageDigest.getInstance("MD5");
md.reset();
md.update(by);
byte messageDigest[] = md.digest();
StringBuffer buffer = new StringBuffer();
for (int i = 0; i < messageDigest.length; i++) {
buffer.append(Integer.toHexString(0xFF & messageDigest[i]));
}
return buffer.toString();
}
public static void main(String[]args)throws Exception{
Scanner input=new Scanner(System.in);
System.out.print("Enter text: ");
String text=input.nextLine();

String st=Hashing.convert(text);
System.out.println(st);
}
}

Thanks









Related Pages:
One way hash in Java - Java Beginners
One way hash in Java  Hi, What is one way hashing. How... their hash value in Java. Please give some examples. Thank You,  Hi Friend, A one-way hash function is used to create digital signatures, which in turn
Java One way Hashing
Java One way Hashing One way hash functions are a major tool in cryptography. It is used to create digital signatures, which in turn identify and authenticate the message. It can have other practical applications as well
Hash value is not same - Java Beginners
Hash value is not same  Hi, I've two Excel files with same data. One is in Excel 2003 (.xls) format and other one is in Excel 2007 (.xlsx) format. I've generated one way hash using SHA-1 algorithm. But the hash value of Excel
Simple Hash Table implementation in Java
Simple Hash Table implementation in Java       This section describes the complete Hash Table... is provided for the best illustration of the way of hash table manipulation
Example to show Hash table exception in java
of using exception class in java. This tutorial describes  the way to handle Hash... Example to show Hash table exception in java...) hashtable.get("One");   System.out.println("
Creating a Hash Table
Creating a Hash Table : Java Util       This section explains the implementation of the hash... of entries which have to entered into the hash table and takes one-by-one key
Usage of Hash Code - Java Interview Questions
Usage of Hash Code  Dear sir, What is Hashcode in Java and What is its usage? Thanks and Regards M.KehtraBalan  Hi Friend, A hashCode is a way of computing a small (32-bit) numeric key from a long
Hash table
Hash table  Hi guys.. I have question about hash table How to implement a hash table of English words? with these methods ïâ??· A method put(s... different from the one presented in the lecture). ïâ??· A method remove(s), which
hash function for java strings
hash function for java strings  hash function for java strings   int hash=7; for (int i=0; i < strlen; i++) { hash = hash*31+charAt(i
Java Hash table
Java Hash table   Hi I have to create code to allow the insertion of a sequence of numbers into a hash table,using a fixed size hash table. Then i... of numbers; insert these into the hash table. Can anyone give me any help
Hash-function: "weakly collision-free" and "strongly collision-free"
is said to be one-way if it is hard to invert, where ``hard to invert'' means... collision-free hash function. A strongly collision-free hash function H is one...Hash-function: "weakly collision-free" and "strongly collision-free"  
java code to compare two hash map objects
java code to compare two hash map objects  java code to compare two hash map objects
Using Arraylist or Hash Map - Java Interview Questions
Using Arraylist or Hash Map  what could b the pros and cons changing between Hash Map to Array List
Example to show Hash map exception in java
Example to show Hash map exception in java  ...-value pairs Understand with Example Hash map in java is same as the Hash table...():-This is the way for creating a HashMap.Here we have created an empty  Hash Map
java program(Hash Table) - Java Beginners
java program(Hash Table)  Store the names of 10 major cities and the names of corresponding countries in a hash table. Accept the name of a city... argument or specifies a city that is not in the hash table.  Hi friend
read from file and store using hash map
read from file and store using hash map  I was stuck with a java project where I have to read a file with two different concepts and store them differently in hashmap. My data file would be something like Adults: Name, xyz
what is difference between one-way data binding and two-way data binding?
what is difference between one-way data binding and two-way data binding?  what is difference between one-way data binding and two-way data binding? Thanks
Best way to reading file in java
Best way to reading file in java  Hi, As a beginner I want to learn about Java programming and make a program for reading a text file in java. What is the best way for reading file in Java? Thanks
How to generate hash code of Zip file.
How to generate hash code of Zip file. In this tutorial, we will see how to generate hash code of zip file entries. The ZipFile   class is used to read... returns hash code of associated method. enumeration
Hash Map
Hash Map  how to add the hash map objects in the list and iterate the objects
Hash Table for maintaining popup menus in Java
Hash Table for maintaining popup menus in Java  ... of maintaining popup menus through hash table in your Java program. This section... to create and maintain popup menus in Java. All the elements listed in the hash
Thread Access through the Hash Table in Java
Thread Access through the Hash Table in Java       Here, you will learn about how a thread is accessed by using the hash table in Java.      Here
hash value
hash value   what is the meaning of this line private int hashValue = 0
java array sorting manual way
java array sorting manual way  Hi, Anyone has any sample code on how to sort a array manually without using the inbuild sorting algorithm? Thanks
Partial Search from Hash Table in Java
Partial Search from Hash Table in Java   ... string in the Hash Table through the Java program and get these string easily. Here... to put some string in the Hash Table of Java and get it for searching. This is done
hash map
hash map  write a program in hash map , that shows the value in asending order. but not key value. ex: key value ==== ===== k5 ashutosh k1 babita k7 debasis k2 vikas plz help me
Writing and reading from/to a serialized file through Hash Table in Java
Writing and reading from/to a serialized file through Hash Table in Java... illustrates you how to read and write from/to a serialized file through the hash table in Java. This section provides an example with the complete code of the program
hash map
hash map  how to add object of test class in a hashmap test class is as follows class test{ String str1; String str2; String str3; int i1; int i2; } values of instance variable is coming from different database tables;  
What is the best way to write to file in Java?
What is the best way to write to file in Java?  I am creating a program in Java which writes into a text file. What can be the be best method to write to a text file in Java? Since my program will continuously write the data
Right Way of Creating an Article Outline
Right Way of Creating an Article Outline   ... one for many people. In today's context, when writing and submitting articles... to the final one. By exerting such control on the affairs related to article writing
Right Way of Planning Your Articles
Right Way of Planning Your Articles Article writing is a creative as well as competitive task. A plethora of writers are available nowadays which has made... drifting away from the chalked out or planned requirements as one may easily get lost
Comparing Strings in a Locale-Independent Way
Comparing Strings in a Locale-Independent Way In this section, you will learn how to compare strings in a locale independent way. For handling strings... then second and 0 if the first string argument is equal to second one. Here is the code
How to Explain different way of using thread?
How to Explain different way of using thread?  Hi, How to explain how to using different thread in Java program
Decreasing process time by caching through the Hash Table in Java
Decreasing process time by caching through the Hash Table in Java... by your java program. You can easily improve the process completion time... operation in plain way and completing operation by caching and show the whole
easy way to make a JCombobox look like a JTextField?
easy way to make a JCombobox look like a JTextField?  Is there a good(and easy) way to make a JCombobox look like a JTextField? By this I mean... show multible results. Basically the same way google, youtube, facebook etc
How to Explain different way of using thread?
How to Explain different way of using thread?  Hi, How to explain how to using different thread in Java program........   Hi, There are different types Thread in Java program. Here is the explain how to using thread
Given a code listing, determine whether it is a legal and appropriate way to programmatically access a caller's security context.
whether it is a legal and appropriate way to programmatically access a caller's... it is a legal and appropriate way to programmatically access a caller's... in the environment. Object result = initCtx.lookup("java:comp/env/ejb
Many Public Classes in One File - Java Tutorials
Many Public Classes in One File 2003-10-13 The Java Specialists' Newsletter [Issue 080] - Many Public Classes in One File Author: Dr. Heinz M. Kabutz... Java classes in China. I was talking about Java only allowing one public
Balance multi-way tree implimentation reating database - Java Beginners
Balance multi-way tree implimentation reating database  I am doning a project in which I have to create a database product in java where user can... database like Access,MySQL.As we know database is based on Balance multi-way tree
Hibernate One-to-one Relationships
Hibernate One-to-one Relationships       Hibernate One-to-one Relationships - One to one relationships example using xml meta-data This section we
which one is better, Flex or Java?
which one is better, Flex or Java?  Does flex has a scope to survive in IT? Which one of these two, Flex and Java, has a better scope of survival
multiple resultset in one resultset
multiple resultset in one resultset  how to retrive multiple resultsets in one resultset in java.? plz help
pattern matching --four way technique........brute force algorithm
pattern matching - four way technique  Hi, here's my question.. I... trying to apply four way technique to search a given pattern in a text.in this four way technique I will be splitting text which is of length "n" into two halves
one dimensional array using java
one dimensional array using java  design and implement a java program that will read a file containing numbers and compute the following statistics: the range(low,high) the average and the median
view jsp file (reference file). is the way of coding good ?
view jsp file (reference file). is the way of coding good ?  <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> View Retailer <%@ page import="com.tcs.ilp.*" %>
Software Consulting Revolutionizing The Way You Do Business
Software Consulting – Revolutionizing The Way You Do Business Running a business is hard enough but when it comes to one on the IT industry you had... to do these updates yourself. Hiring a consultant is the best way to go. Let
Find Your Way with a Map Mobile Application
Find Your Way with a Map Mobile Application Keeping tabs on how to get from one place to another is important to do. This is why a map mobile application... of application that can allow a person to find one’s way around different places
Regarding one business scenario
Regarding one business scenario  Ya actually i have a requirement which is I have four questions 1.DOB... Java And how to integrate java application to jsp page
Moving file or directory from one directory to another
Moving file or directory from one directory to another... directory is moved from one directory to another directory. This program... from one directory to another. In this section an example is given
one dimensional array program
one dimensional array program  Design and implement a java program that will read a file containing numbers and compute the following statistics: the rannge( low, high), the average and the median(middle number). Notes

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.