Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
2k 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 ...
7
votes
2answers
314 views

php salt my passwords per user sha512 - am I doing this right?

I'm trying to correctly do a per user and site wide salt for my passwords. Here's what I've got: require('../../salt.php'); //this is above the web root and provides $salt variable $pw = ...
5
votes
4answers
290 views

Securely erasing a file using simple methods? [closed]

Possible Duplicate: C# - Deleting a file permanently Hello, I am using C# .NET Framework 2.0. I have a question relating to file shredding. My target operating systems are Windows 7, ...
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 ...
5
votes
3answers
443 views

SHA512 within Silverlight is not available, is there a managed library available?

SHA512Managed is missing in Silverlight (for Windows Phone 7 CTP SDK), only upto SHA256 is available for use. Does anyone know a .NET class that I could use that offers a self-contained C# or VB.net ...
4
votes
4answers
551 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?
4
votes
2answers
585 views

Problems with Python MD5, SHA512 (+salt) encryption

I'm trying to understand how does Linux encrypt our password on the etc/shadow file, so I've dont a new virtual 'test' user to make some test: user: newuser password: usrpw123 Generated salt: ...
4
votes
3answers
3k views

How can I create an SHA512 digest string in Java using bouncy castle?

This unit test is failing: public void testDigest() throws NoSuchAlgorithmException { String hashExpected = ...
3
votes
1answer
69 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
2answers
366 views

Iterate SHA512 to make it more secure?

I currently use SHA512 with per user random salt to hash user passwords and store them in a database. I thought this was pretty secure until I read this article about the use of cheap GPU's to brute ...
3
votes
3answers
984 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
6answers
2k views

Reasons why SHA512 is superior to MD5

I was wondering if I could reasons or links to resources explaining why SHA512 is a superior hashing algorithm to MD5.
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
838 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
2answers
299 views

How do I generate an encrypted password string, as it is in /etc/shadow?

I'm trying to mimic the creation of password strings as they appear in /etc/shadow. This is what I've got so far, but the encrypted passwords don't match, when I use the same password and the same ...
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
395 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
3answers
44 views

Python sha512 security

I was wondering if this would be a secure method of authentication: theInput = raw_input("Enter password: ") theHashed = hashlib.sha512(theInput).hexdigest() if theHashed == ...
1
vote
2answers
41 views

Why should't I use an encryption salt I enter myself and use a function to randomize a salt for me?

I am just typing a salt and on php documentations, people always use some random variable function. What is the disadvantage of typing a salt instead of generating it?
1
vote
2answers
83 views

does it make sense to encrypt a password in javascript before submit?

I'm following the example on http://marakana.com/blog/examples/php-implementing-secure-login-with-php-javascript-and-sessions-without-ssl.html The thing I don't fully understand is what is the gain ...
1
vote
1answer
204 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
1answer
73 views

sha-1 creation in vb .net 3.5

I'm having a great deal of difficulty finding a function or sub for vb (not C) that provides an easy way to convert a given string into a sha-1 (or sha512 ideally) hash. If someone could provide a ...
1
vote
2answers
311 views

Library providing various hash algorithms (MD5, SHA1, SHA256, etc) in Java?

Is there a simple library out there for Java in a Maven repository that will give me simple, one-liner hash methods for the popular hash functions such as MD5, SHA1, SHA256, and SHA512? I'd really ...
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
2answers
525 views

Generating a base64 encoded SHA512 digest for a file (or set of files)

The BlackBerry WebWorks SDK for Tablet OS build tool generates an archive that contains the files and a MANIFEST.MF with entry for each file and a base64 encoded SHA512 digest. However, there is a ...
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
1
vote
2answers
819 views

Porting SHA512 Javascript implemention to Actionscript

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 will be easy for ...
1
vote
3answers
908 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
0answers
18 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 ...
0
votes
1answer
37 views

How to convert php crypt function (SHA512) to ruby?

note: i am not looking for workaround, i am looking for a plain ruby solution! this question is the similar to this question, but it isn't answerd, its just a workaround to a shell commando there. i ...
0
votes
1answer
32 views

Is it possible to use a SHA512 digest in MS Access 2007

We have a MS Access app that uses a mysql database via odbc, which contains a table for user credentials. The table consists of a username and a crypted password digested with SHA512. What we are ...
0
votes
3answers
29 views

How many characters should I reserve in my database for storing SHA512 hash?

Column: pwdhash Type: char Many web pages give me the bit size, not a character size. Should I use a binary field instead?
0
votes
0answers
29 views

Does VBA have a Hash_HMAC

Hi I am trying to Encrypt a string to invoke a web service from VBA. I need to do the following function in VBA and i have example code in PHP. Here is the PHP code. Does anyone know how to do this in ...
0
votes
1answer
146 views

clarification for crypt SHA-512 algorithm (c#)

EDIT: Sorry I forgot to mention, I'm not using the implemented sha512 crypt because as far as I can tell it doesn't involve a salt value or a specified number of rounds to compute the hash with. Okay ...
0
votes
1answer
71 views

converting java sha512crypt to c#

I am trying to duplicate the following JAVA code into C# but I don't think I'm doing it right o_o (The code is taken from ftp://ftp.arlut.utexas.edu/pub/java_hashes/Sha512Crypt.java) JAVA variables: ...
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
3answers
154 views

Php Login / Mysql checking against mysql is not working with SHA512

GOAL: Trying to create a login. The registration page uses this to create the username and password based on input: Register <?php $host="localhost"; // Host name $username="root"; // Mysql ...
0
votes
2answers
786 views

android sha512 example

Can someone provide an example for java/android on how to hash a password using PW_HASH_ITERATION_COUNT iterations of sha512 + salt? in pseudo code: hash = sha512(concat(pw,salt)); for (i = 1; ...
0
votes
1answer
91 views

Should all implementations of SHA512 give the same Hash?

I am working on writing a SHA512 function. When i check the file I am encrypting on different sources, a Linux SHA512SUM tool, a couple websites, and run it through the old source code i have for ...
0
votes
2answers
215 views

PHP SHA-512 to Python+C SHA-512

I am working on a website for a game. The accounts are created via the php based website, and the game login server is being prototyped in Python, and will be finalized in C. The problem I am having ...
0
votes
1answer
481 views

Objective C SHA512 hash of two NSData

Here is a Java code, which computes SHA512 hash of a byte array with salt: private static String DIGEST_ALGORITHM = "SHA-512"; public static byte[] getHash(final byte[] data, final byte[] salt) ...
0
votes
3answers
245 views

Does Free Pascal have a way to implement SHA256 or SHA512?

In the Free Pascal libraries there's a hash library that enables use of MD5 and SHA1 hashing algorithms (http://wiki.freepascal.org/hash). But what if I wanted to use a higher one, such as SHA256 or ...
0
votes
3answers
104 views

How To Secure Encrypted Password Even The Weakest One?

I am always looking for ways to secure my user's passwords. I am currently using some combination of hashing algorithm with random salt. The main thing in this problem is when my user set a very very ...
0
votes
1answer
464 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
162 views

Convert C# CUSTOM getSHA512 function into Ruby

I was wondering if someone could help me to get this method converted to ruby, is this possible at all? public static string getSHA512(string str){ UnicodeEncoding UE = new UnicodeEncoding(); ...
0
votes
2answers
932 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
3answers
1k views

HMAC-SHA-512 implemention for ActionScript

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 functions, however, I am ...
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 = ...