Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
8answers
33k views

(PHP) SHA1 vs md5 vs SHA256: which to use for a PHP login?

I'm making a php login, and I'm trying to decide whether to use SHA1 or Md5, or SHA256 which I read about in another stackoverflow article. Are any of them more secure than others? For SHA1/256, do I ...
11
votes
3answers
6k views

(PHP) When using a SHA256 hash, how long is the hash? (ie, how long should my mysql VARCHAR be?)

I'm going to run SHA256 on a password + salt, but I don't know how long to make my VARCHAR when setting up the mysql database. What is a good length?
9
votes
3answers
6k views

generate sha256 with openssl and C++

I'm looking to create a hash with sha256 using openssl and C++. I know there's a similar post about this here: http://stackoverflow.com/questions/918676/generate-sha-hash-in-openssl, but I'm looking ...
8
votes
1answer
1k views

How can I compute a SHA-2 (ideally SHA 256 or SHA 512) hash in iOS?

The Security services API doesn't appear to allow me to compute a hash directly. There are plenty of public domain and liberally licensed versions available, but I'd rather use a system library ...
7
votes
2answers
2k views

(bitcoin) Calculate hash from getwork function - how to do it?

when I call getwork on my bitcoind server, I get the following: ./bitcoind getwork { "midstate" : "695d56ae173bbd0fd5f51d8f7753438b940b7cdd61eb62039036acd1af5e51e3", "data" : ...
6
votes
7answers
265 views

Problems encoding Amazon Flexible Payments secret string in PHP

I am trying to use Amazon Payment Services, and they require me to do something like this: Here is the complete signature so you can see I added the signature method: $string_to_sign = "GET\n ...
6
votes
3answers
251 views

Is any substring of an encrypted hash (md5, sha1) more “random” than another?

Here's 3 example md5 hashes $ md5 -s "1" && md5 -s "2" && md5 -s "3" MD5 ("1") = c4ca4238a0b923820dcc509a6f75849b MD5 ("2") = c81e728d9d4c2f636f067f89cc14862c MD5 ("3") = ...
5
votes
5answers
220 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
256 views

PKCS#7 SignedData and multiple digest algorithms

I'm investigating upgrading an application from SHA1 as the default PKCS#7 SignedData digest algorithm to stronger digests such as SHA256, in ways that preserve backwards compatibility for signature ...
5
votes
5answers
4k views

Hashing passwords with MD5 or sha-256 C#

I'm writing a register form for a application but still having problems with being new to c#. I am looking to encrypt/hash passwords to md5 or sha-256, preferably sha-256. Any good examples? I want ...
5
votes
3answers
453 views

Why is ComputeHash not acting deterministicly?

I've run into an interesting issue.. It seems that ComputeHash() for a "HMACSHA256" hash is not behaving deterministicly.. if I create two instances of HashAlgorithm using ...
4
votes
1answer
214 views

PHP crypt() with sha256 in Zend Server CE 5.5 truncates the supplied salt

During an upgrade from Zend Server CE 5.1 to Zend Server CE 5.5, PHP also got an upgrade from 5.3.5 to 5.3.8. After this transition the login function for a zend application I'm working on suddenly ...
4
votes
2answers
175 views

Calculating a hash code for a large file in parallel

I would like to improve the performance of hashing large files, say for example in the tens of gigabytes in size. Normally, you sequentially hash the bytes of the files using a hash function (say, ...
4
votes
2answers
203 views

Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash?

Is it possible to calculate sha256 hashes in the browser using the user's video card, eg. by using WebGL or Flash? I'm afraid this is all there is to ask, but if more elaboration is needed please do ...
4
votes
2answers
202 views

SHA256 security question

Having that the result for some string STR was: SHA256(STR)=3f7c54571faee024e3fd68603c5c95f6a4c8ef73a398840b974f3f57737a116f Would it be possible to get the result of SHA256(myOwnString+STR)? ('+' ...
4
votes
1answer
2k views

Glassfish Security - jdbcRealm: How to configure login with SHA-256 digest

I use jdbcRealm for security in my glassfish v3.0.1 b22. It is set up so that it use the USER table inside my database for authentication by following this blog: ...
4
votes
4answers
289 views

Are SHA-1, SHA-2 patented?

Do you need a license to use SHA-1 or SHA-2 for commercial purposes?
4
votes
5answers
530 views

Are there circumstances where a hash algorithm can be guaranteed unique?

If I'm hashing size-constrained similar data (social security numbers, for example) using a hash algorithm with a larger byte size than the data (sha-256, for example), will the hash guarantee the ...
4
votes
7answers
4k views

Java: Calculate SHA-256 hash of large file efficiently

I need to calculate a SHA-256 hash of large file (or portion of it). My implementation works fine, but its much slower than the C++'s CryptoPP calculation (25 Min. vs. 10 Min for ~30GB file). What I ...
4
votes
3answers
2k views

SHA256 hash in Python 2.4

Is there a way I can calculate a SHA256 hash in Python 2.4 ? (I emphasize: Python 2.4) I know how to do it in Python 2.5 but unfortunately it's not available on my server and an upgrade will not be ...
3
votes
2answers
171 views

Rails: checksum of uploaded files

I am generating the checksum (sha256) of an uploaded image in Ruby on Rails. upload = params[:file] data1 = upload.read data2 = File.read(upload.tempfile) checksum1 = Digest::SHA256.hexdigest(data1) ...
3
votes
1answer
109 views

How do I convert the first 32 bits of the fractional part of a Float into a Word32?

Say I have a Float. I want the first 32 bits of the fractional part of this Float? Specifically, I am looking at getting this part of the sha256 pseudo-code working (from the wikipedia) # Note 1: All ...
3
votes
2answers
175 views

Code hash function over data in form - already have function but don't know where to call

I have form in my html page <form id="login_form" method="POST" action="index.php"> <table> <tr> <td><label style="color:#47A3FF;" for="name" ...
3
votes
1answer
606 views

PBKDF2-HMAC-SHA256 Objective-C implementation

Can someone point me to an implementation of PBKDF2 using HMAC-SHA256 to generate a key, in Objective-C. This is part of the key generation process that I will later use for AES-CBC-Pad encryption. ...
3
votes
4answers
2k views

Generating a sha256 from the Linux command line

I know the string "foobar" generates the SHA 256 hash c3ab8ff13720e8ad9047dd39466b3c8974e592c2fa383d4a3960714caef0c4f2 using http://hash.online-convert.com/sha256-generator However the command line ...
3
votes
4answers
3k views

Hash String via SHA-256 in Java

By looking around here as well as the internet in general, I have found Bouncy Castle. I want to use Bouncy Castle (or some other freely available utility) to generate a SHA-256 Hash of a String in ...
3
votes
2answers
1k views

Will a SHA256 hash always have 64 characters?

I'm setting up my database to receive hashed passwords and not accept plain text. Would I go something like this? create table User( username varchar(20) not null, password varchar(64) not null, ); ...
3
votes
2answers
751 views

How to use sha256 in php5.3.0

I'm using sha256 to encrypt the password. I can save the sha256 encrypted password in mysql. But i can't login with the same clause. Insert code: <?php error_reporting(E_ALL ^ E_NOTICE); ...
3
votes
5answers
3k views

Calculating a SHA hash with a string + secret key in python

Amazon Product API now requires a signature with every request which I'm trying to generate ushing Python. The step I get hung up on is this one: "Calculate an RFC 2104-compliant HMAC with the ...
2
votes
2answers
58 views

Objective C equivalent of MessageDigest in Java?

I'm taking a task converting Java code to Objective C. This is the code in Java that I have to convert: private String getHash(String input) { String ret = null; try { ...
2
votes
2answers
55 views

Login token with sha256

I need to create a login token that I can pass from site 1 to site 2 in a querystring. I don't need to transfer a username or id, I just need to know on site 2 that the user has a valid login on site ...
2
votes
2answers
120 views

How do I create a hash of a file on iOS?

I'm trying to create unique file names by renaming them using their hashed value in iOS. How can I do that?
2
votes
1answer
118 views

What is the C++ equivalent of PHP's hash_hmac function?

I'm porting a PHP application to C++. The PHP application is using this function: hash_hmac — Generate a keyed hash value using the HMAC method If I have this code, what is it actually doing? ...
2
votes
2answers
217 views

SHA-256 implementation in Python

I'm looking for an implementation of the SHA-256 hash function written in Python. I want to use it to get a better understanding of how the SHA-256 function works, and I think Python is the ideal ...
2
votes
4answers
442 views

C++ how to make simple sha256 generator with boost?

I need a simple string to sha256 generator class. I do not want to build big libraries for that like openSSL or Cripto++ - all I want is to turn strings into sha256. How to create such class or where ...
2
votes
2answers
262 views

One way hash (not for crypto/security), use SHA256 (not MD5, SHA-1)?

On a new system, we require a one-way-hash to compute a digital signature from binary input (e.g., a kilobyte of text, or larger text-and-binary files). The need is similar to how Scons (build ...
2
votes
2answers
202 views

Little endian data and sha 256

I have to generate sha256 hashes of data that is in little endian form. I would like to know if I have to convert it to big endian first, before using the sha 256 algorithm. Or if, the algorithm is ...
2
votes
2answers
901 views

Can anybody give me a working example of generating a SHA256 hash in C++ with Crypto++, taking a string as input and outputting a string?

I need an example of how to use Crypto++ to generate a SHA256 hash from a std::string and output a std::string. I can't seem to figure it out. Everything I've tried gives me invalid output. Here's ...
2
votes
2answers
686 views

Perl code to generate secret key for HMAC SHA256 signing?

I'm planning to use code similar to Amazon AWS samples to authenticate signed API requests. So users will have something like: use Digest::SHA qw(hmac_sha256_base64); my $digest = hmac_sha256_base64 ...
2
votes
1answer
249 views

Membership Provider EncodePassword Method .NET 4.0

I am writing my own Custom Membership Provider but am using the Membership Providers own EncodePassword method which is shown below: internal string EncodePassword(string pass, int passwordFormat, ...
2
votes
3answers
2k views

Generate SHA256 String in Objective C [closed]

Possible Duplicate: Sha256 in Objective-C for iPhone Greetings, I'm having terrible trouble generating a SHA256 string in Objective C (probably because I'm so new to the language). In ...
2
votes
3answers
1k views

Java SHA256 outputs different hash to PHP SHA256?

PHP code: echo hash('sha256', 'jake'); PHP output: cdf30c6b345276278bedc7bcedd9d5582f5b8e0c1dd858f46ef4ea231f92731d Java code: String s = "jake"; MessageDigest md = ...
2
votes
1answer
85 views

Preventing preimage attack on limited set of values

I have asked about the cost of running a preimage attack on the hashes of social security numbers. The excellent answer I got was that the type of social security numbers only has 366,000,000 hashes, ...
2
votes
2answers
1k views

Windows CryptoAPI: CryptSignHash with CALG_SHA_256 and private key from MY keystore

I am trying to generate digital signatures on Windows (from XP SP3, but currently testing with Windows 7) with CryptoAPI that will be compatible with the following openssl commands: openssl dgst ...
2
votes
3answers
639 views

Is it okay to truncate a SHA256 hash to 128 bits?

MD5 and SHA-1 hashes have weaknesses against collision attacks. SHA256 does not but it outputs 256 bits. Can I safely take the first or last 128 bits and use that as the hash? I know it will be weaker ...
2
votes
1answer
935 views

Is it safe to use PBKDF2 with SHA256 to generate 128-bit AES keys?

I want to use PBKDF2 with some cryptographic hash function to generate 128-bit AES keys. SHA1 is also 128-bit, so I thought of using that with PBKDF2, but it was broken, so I have opted to use SHA256 ...
2
votes
2answers
195 views

What is wrong with this “StretchKey” implementation?

I'm trying to create a Delphi version of this algorithm: void PWSfileV3::StretchKey(const unsigned char *salt, unsigned long saltLen, const StringX &passkey, ...
2
votes
3answers
1k views

SHA256CryptoServiceProvider and related possible to use on WinXP?

Is it possible to use SHA256CryptoServiceProvider and related SHA2 providers on Windows XP? I know the providers use the cryptography services that are included in Vista and above is it possible to ...
2
votes
3answers
731 views

Fastest path to Lua SHA256 RFC-2104 compliant HMAC signature?

I'm running Debian Linux, and for a Lua script I need to create a SHA256 checksum to authenticate requests to Amazon Web Services. They don't say for sure but it looks as if they may want a base64 ...
2
votes
1answer
929 views

Difference in SHA hashes between ruby and C#

I'm developing an application, that makes use of some REST web services. It's technical documentation says that I should pass SHA256 hash of some string in the request. In an example request (in the ...

1 2 3