Tagged Questions

8
votes
3answers
1k views

Python - Why ever use SHA1 when SHA512 is more secure?

I don't mean for this to be a debate, but I'm trying to understand the technical rationale behind why so many apps use SHA1, when SHA512 is more secure. Perhaps it's simply for backwards ...
5
votes
2answers
1k views

hash a password string using SHA512 like C#

I am developing logon function for my iPhone Application, so I want to hash the password using the SHA512 hashing algorithm then get the result as NSString (the result should be the same with SHA512 ...
4
votes
4answers
550 views

SHA-512 source code in C

Is there any library which implements SHA-512 in C? For example, Linux sha512sum. Where can I get it?
3
votes
1answer
68 views

Objective-C SHA2 hash not working correctly with non-ASCII

I am using xcode and this is my sha512 method: -(NSString*) sha512:(NSString*)input { const char *cstr = [input cStringUsingEncoding:NSUTF8StringEncoding]; NSData *data = [NSData ...
3
votes
3answers
981 views

How insecure is a salted SHA1 compared to a salted SHA512

SHA512 is more complex than SHA1, but how much security am I losing by hashing a salted password with SHA1 compared to hashing it with 512? in terms of the time it would take for someone who has the ...
3
votes
3answers
2k views

Storing a SHA512 Password Hash in Database

In my ASP.NET web app I'm hashing my user passwords with SHA512. Despite much SO'ing and Googling I'm unclear how I should be storing them in the database (SQL2005) - the code below shows the basics ...
2
votes
3answers
827 views

How to calculate a SHA-512 hash in C++ on Linux?

Is there a standard library or commonly used library that can be used for calculating SHA-512 hashes on Linux? I'm looking for a C or C++ library.
2
votes
1answer
304 views

Why do these two files hash to the same value when I use MemoryStream?

I'm writing a c# routine that creates hashes from jpg files. If I pass in a byte array to my SHA512 object then I get the expected behavior, however, if I pass in a memory stream the two files always ...
2
votes
2answers
394 views

How can I reproduce a SHA512 hash in C# that fits the PHP SHA512?

The question is pretty much self-explanatory. I Googled many sites, many methods, tried many encodings, but I can't get it to match. I'm trying to make the string "asdasd" match. ...
1
vote
1answer
203 views

HMAC SHA-512 Calculation + Timestamp

I'm doing an online "hacking" challenge and I'm trying to get to the next level. On the current level, we're given the Caption "Think fast", asked the following question, "What is element x in the ...
1
vote
4answers
192 views

Ruby sha512 password retrieval in php

(Updated due to some confusion over my question) We use this method to generate a digested_password, which is saved to our database for later lookup. When we authenticate a user to our application, ...
1
vote
1answer
752 views

Ruby password SHA512 hash replication using PHP

is there any way I can reproduce this ruby function: def Password.hash(password,salt) Digest::SHA512.hexdigest("#{password}:#{salt}") end In php. Cheers
0
votes
3answers
64 views

Should I prefer hash algorithms with longer outputs for storing passwords?

I'm building a site where security is somewhat important (then again, when is it not important?) and I was looking for the best way to store my passwords. I know that MD5 has issues with collisions as ...
0
votes
1answer
462 views

How to use mcrypt similar to crypt() in php 5.2

I have an app that runs on php 5.3 which stores passwords using PHP's crypt() function. However the hashing type (SHA 512) used is not available by default on one of the servers I'm now using which ...
0
votes
3answers
382 views

Use of undefined constant CRYPT_SHA512

I use a php script that hashes passwords using php's crypt and uses SHA512, however when I try to check if SHA512 is set I get the above error. Of course I know WHY I get this error.. php is missing ...
0
votes
2answers
928 views

How do a use a SecureString to create a SHA1 or SHA512 Hash?

I would like to use a SecureString varible within VB.NET and convert that to a SHA1 or SHA512 hash. How would I securely convert the SecureString to the Byte array that HashAlgorithm.ComputeHash will ...
0
votes
1answer
251 views

Computing file HASH returns different values

Does anybody know, why the following code returns different results on some machines? Private Shared Function ComputeHashValue(ByVal Data As String) As String Dim HashAlgorithm As SHA512 = ...