Tagged Questions

0
votes
1answer
28 views

Does this TPM emulator follow TPM spec for extending PCR register?

The following code is from TPM emulator from Mario Strasser. The spec says, PCR := SHA1(PCR || data) reads "concatenate the old value of PCR with the data, hash the concatenate …
0
votes
2answers
55 views

i want to convert 160-bit to integer

i am using SHA1 so i want to convert the output of this SHA1 to integer
2
votes
6answers
313 views

How do I convert password hashing from MD5 to SHA?

I've got an old application that has user passwords stored in the database with an MD5 hash. I'd like to replace this with something in the SHA-2 family. I've thought of two possi …
1
vote
1answer
140 views

RIPEMD-160 vs SHA-256

Can anyone shed some light into SHA-256 and RIPEMD-160, which algorithm is normally faster and what are the performance and space comparisons, if any? By space comparisons I don't …
0
votes
2answers
89 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?
1
vote
5answers
236 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 no …
-1
votes
4answers
896 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 get …
4
votes
11answers
627 views

Is MD5 less secure than SHA et. al. in a practical sense?

I've seen a few questions and answers on SO suggesting that MD5 is less secure than something like SHA. My question is, Is this worth worrying about in my situation? Here's an ex …
5
votes
11answers
2k views

What’s the difference between SHA and MD5 (in PHP)?

When you're hashing a password (or anything else) in PHP, does it make any difference if you use SHA or MD5?
4
votes
5answers
716 views

Delphi: How to calculate the SHA hash of a large file

Hi I need to generate a SHA over a 5 Gig file Do you know of a non string based Delphi library that can do this ?
-2
votes
1answer
228 views

Is my OCaml implementation of SHA256 sane?

I'm a novice OCaml programmer and thought I would throw myself into the deep end by attempting to implement a very tricky algorithm. I'm open to all criticisms great and small be …