Tagged Questions
5
votes
5answers
257 views
How to calculate sha256 faster in java?
I have found out that calculating sha256 in java is slow. For example, it is slower than python. I wrote two simple benchmarks that calculate sha256 of 1GB of zeroes. In both cases the result is the ...
5
votes
1answer
409 views
MessageDigest SHA-512 different than openssl
I can't figure out what I'm doing wrong here. I have the following code:
byte[] digest = new byte[0];
MessageDigest md = null;
try{
md = MessageDigest.getInstance( "SHA-512" );
}
catch( ...
4
votes
1answer
137 views
Java: How to create SHA-1 for a file?
What is the best way to create a SHA-1 for a very large file in pure Java6? How to implement this method:
public abstract String createSha1(java.io.File file);
4
votes
3answers
875 views
Can you get this same Java SHA-1 in PHP please?
I find myself in a need to change website platforms from Java to PHP but I'd like to keep all my user's passwords...
I had this code do the password hashing prior to writting the hashed value as the ...
3
votes
1answer
248 views
Android SHA1 is painfully slow
Am I doing it wrong, or Android's JVM implementation of SHA1 is painfully slow? My code is below:
in = new FileInputStream("/mnt/sdcard/200mb");
MessageDigest digester = ...
3
votes
2answers
1k views
How can I calculate the SHA-256 hash of a string in Android?
I'm trying to get the SHA256 of a string in Android.
Here is the PHP code that I want to match:
echo bin2hex(mhash(MHASH_SHA256,"asdf"));
//outputs ...
3
votes
3answers
154 views
How to decrease the size of SHA1?
I have a problem, maybe a silly question, I want to store data in a database after I hash with the SHA1 algorithm. However, at a future time, the size in database will increase because size words in ...
2
votes
2answers
63 views
SHA hashes same string into different blobs
I am using the following code to hash an incoming string, in expecting that same thing applied to the method multiple times will always get the same results. The scenario will be for password hashing ...
2
votes
4answers
207 views
SHA hash function gives a negative output
I'm trying to implement DSA signature algorithm and I'm stuck on a problem. I'm using the java.security MessageDigest class, here's the code:
MessageDigest md;
md = ...
1
vote
2answers
82 views
crypt(3) $6$ password hash algorythm (based on SHA-512) in Java?
I'm looking for a Java function to generate/verify password hashes that were encoded in the way crypt(3) does when storing them in the Linux /etc/shadow file if sha512 is activated in ...
1
vote
1answer
65 views
How to calculate SHA in parallel?
Calculation of SHA variants is simple, you create a message digest, update it with data and get the result.
But, if we have many cores, how to do that in parallel? You can not calculate it on blocks ...
1
vote
5answers
926 views
SHA-1 Hashes Mixed with Strings
I have to parse something like the following "some text <40 byte hash>" can i read this whole thing in to a string without corrupting 40 byte hash part?
The thing is hash is not going to be there ...
0
votes
4answers
496 views
SHA2 password hashing in java
I'm trying to hash some passwords with SHA2.
Where can I get a snippet of java code for make that?
I have seen that post but I have something missing:
SHA2 password storage with Java
Mac mac = ...
0
votes
2answers
198 views
How can I create the hash of a webpage in java?
I need to create the hash of a the html of a webpage (from its URL) using SHA1 or MD5 in java, but I don't know how to do it... can you help me?
0
votes
4answers
3k views
Java Encode SHA-1 Byte Array
I have an SHA-1 byte array that I would like to use in a GET request. I need to encode this. URLEncoder expects a string, and if I create a string of it and then encode it, it gets corrupt?
To ...
-2
votes
1answer
37 views
How to find the SHA algorithm's encryption key if we know the plain & cipher text? [closed]
I'm working on a Java project in which I need to encrypt the plain text using SHA-256 bit encryption. I know the plain text & cipher text (of 64 digits). Can I find the key used for the ...