1
vote
3answers
100 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
1answer
111 views
Why do these two files hash to the same value when I use MemoryStream?
Hello,
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 …
1
vote
1answer
86 views
Ruby password SHA512 hash replication using PHP
Hi there, 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
1answer
84 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
2answers
103 views
How can I reproduce a SHA512 hash in C# that fits the PHP SHA512?
Hello :)
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. …
0
votes
1answer
156 views
HMAC-SHA-512 implemention for ActionScript
Hello everyone,
As mentioned by the title, I would like to find an implementation for HMAC-SHA-512 written for ActionScript. I was able to find a library that provide HMAC-SHA-256 with other …
0
votes
1answer
146 views
Porting SHA512 Javascript implemention to Actionscript
Hello Everyone,
I am wondering if anyone can help me in porting a SHA-512 implemention in Javascript to Actionscript. Since both Javascript and Actionscript share the same origin, I think porting it …
1
vote
3answers
186 views
Difference in SHA512 between python hashlib and sha512sum tool
I am getting different message digests from the linux 'sha512sum' tool and the python hashlib library.
Here is what I get on my Ubuntu 8.10:
$ echo test | sha512sum
…
0
votes
1answer
137 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 = …
