Tagged Questions

In cryptography, HMAC (Hash-based Message Authentication Code) is a specific construction for calculating a message authentication code (MAC) involving a cryptographic hash function in combination with a secret key.

learn more… | top users | synonyms

17
votes
5answers
8k views

java equivalent to php's hmac-SHA1

I'm looking for a java equivalent to this php call: hash_hmac('sha1', "test", "secret") I tried this, using java.crypto.Mac, but the two do not agree: String mykey = "secret"; String test = ...
14
votes
5answers
12k views

Objective-C sample code for HMAC-SHA1

I need to generate HMAC-SHA1 in Objective C. But i didnt find anything that works. I tried with CommonCrypto, using CCHMAC, but didnt works. I need to generate a hmac and after generate HOTP number. ...
13
votes
3answers
739 views

HMAC vs simple MD5 Hash

Anyone can point out what is real advantage of using HMАC. For example, I have a text T and a key K, I can use HMAC-MD5 algorithm to get a signature. I can also use Md5(T + K) to get the signature. ...
12
votes
9answers
3k views

How to send password securely via HTTP using Javascript in absence of HTTPS?

The very basic issue all developers face: Whenever user submits the form, the password is sent via network and it must be protected. The site I develop for doesn't have HTTPS. Neither does the owner ...
7
votes
2answers
2k views

What's the difference between Message Digest, Message Authentication Code, and HMAC?

My understanding of a message digest is that it's an encrypted hash of some data sent along with the encrypted data so you may verify that the data has not been tampered with. What is the difference ...
7
votes
7answers
475 views

Double hashing passwords - client & server

Hey, first, let me say, I'm not asking about things like md5(md5(..., there are already topics about it. My question is this: We allow our clients to store their passwords locally. Naturally, we ...
6
votes
1answer
67 views

Convert C# hashing function into PHP

I have the following function in C#, a hashing function which I need converted into PHP. I've tried a few things in PHP but I don't get the same results (I'm not at all good with .NET) private static ...
6
votes
3answers
1k views

PHP Password storage with HMAC+nonce - Is nonce randomness important?

A few years I asked here on stackoverflow about how to make PHP password storage safe. The main answer suggests using the following hashing algorithm: function hash_password($password, $nonce) { ...
6
votes
3answers
1k views

Ruby and PHP HMACs not agreeing

I'm trying to create an HMAC in Ruby and then verify it in PHP. Ruby: require 'openssl' message = "A522EBF2-5083-484D-99D9-AA97CE49FC6C,1234567890,/api/comic/aWh62,GET" key = ...
5
votes
6answers
2k views

Why would HMAC SHA-1 return a different digest with the same input?

I am trying to build a working encrypted signature for the Amazon S3 web service, writing a connection library using Objective C. I have run into HMAC SHA-1 digest problems with the ObjC code, so ...
4
votes
3answers
125 views

HMC SHA1 hash - Java producing different hash output than C#

This is a follow up to this question, but I'm trying to port C# code to Java instead of Ruby code to C#, as was the case in the related question. I am trying to verify the encrypted signature ...
4
votes
2answers
527 views

One-Time-Password (OTP) C# to Java conversion of Code

I wrote an One-Time-Password (OTP) generator in C# last year. Now I need to use an OTP generator in Java but I couldn't find the equivalent functions in Java. Here is the code I wrote last year: (I ...
4
votes
2answers
552 views

Using HMAC-SHA1 for API authentication - how to store the client password securely?

In a RESTful API that uses S3-style authentication, the API client signs the request with his secret key using HMAC-SHA1, so the secret key is never transmitted over the wire. The server then ...
4
votes
3answers
450 views

HMAC security - Is the security of the HMAC based on SHA-1 affected by the collisions attacks on SHA-1?

Is the security of the HMAC based on SHA-1 affected by the collisions attacks on SHA-1?
4
votes
4answers
2k views

How to create MD5 hash with HMAC module in Ruby?

Using Google + Bing didn't yield an answer to what should be a simple question: How are you supposed to use the HMAC module in Ruby to create a HMAC with MD5 (that uses a secret)? The HMAC docs seem ...
4
votes
2answers
4k views

Calculate HMAC-SHA256 digest in ColdFusion using Java

We are trying to calculate a HMAC-SHA256 digest in ColdFusion and we are using the HMAC CFC, but in one case it is producing a different result for the digest compared to ones generated in different ...
4
votes
6answers
7k views

iPhone and HMAC-SHA-1 encoding

im trying to get a call to amazon web service and im stuck on getting the signature, looked at this but i still have a question on it. using this example what is the NSData *keyData; NSData ...
3
votes
1answer
56 views

Amazon S3 Policy Signing in Java

For some reason, I'm struggling with the signature generation for my Amazon S3 upload policy. I swear I had this working at one point but no longer. Any help would be much appreciated. I need a fresh ...
3
votes
1answer
80 views

Trying to create php equivalent of C# signature hash method for api

I'm trying to replicate a c# method for generating a signature hash to communicate with an API, having trouble reproducing the same example result in PHP based on the c# method examples I was given. ...
3
votes
1answer
177 views

Why the hashlib and hmac are generating different hash values?

In Python 2.7, my = "my" key = "key" print(hashlib.sha256(my + key).hexdigest()) print(hmac.new(my, key, hashlib.sha256).hexdigest()) output, ...
3
votes
3answers
249 views

Computing an HMAC-SHA signature

I'm writing a module for Amazon's SimpleDB. They require REST requests to be signed using HMAC-SHA algorithm. (Details here.) I'm told that there is a function to computer this signature, but I can't ...
3
votes
3answers
704 views

AES256 CBC + HMAC SHA256 ensuring confidentiality *and* authentication?

I'm thinking of using AES256 CBC + HMAC SHA-256 as a building block for messages that ensures both confidentiality and authentication. In particular, consider this scenario: Alice is possession a ...
3
votes
2answers
860 views

PBKDF2-HMAC-SHA2 test vectors

There are test vectors for PBKDF2-HMAC-SHA1 in RFC6070. There are test vectors for HMAC-SHA2 in RFC4231. But so far I haven't found test vectors for PBKDF2-HMAC-SHA2 anywhere. I'm most interested in ...
3
votes
1answer
607 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
3answers
1k views

HMAC SHA1 ColdFusion

Please help! I have been pulling out my hair over this one. :) I have a site that I need to HMAC SHA1 for authentication. It currently works with another language but now I need to move it to ...
3
votes
1answer
3k views

PBKDF2-HMAC-SHA1

To generate a valid pairwise master key for a WPA2 network a router uses the PBKDF2-HMAC-SHA1 algorithm. I understand that the sha1 function is performed 4096 times to derive the PMK, however I have ...
3
votes
4answers
1k views

HMAC-SHA256 in Delphi

I need to generate HMAC-SHA256 signatures for the Amazon web services API. The old DCPcrypt library has sha256 routines but does not do HMAC signing. Anyone know of a free hashing library I could use? ...
3
votes
1answer
2k views

digest/hmac is part of ruby standard lib

i'm working with some codes that has a: begin require 'digest/hmac' USE_EMBEDDED_HMAC = false rescue puts "HMAC, not found in standard lib." + $!.message require 'hmac-sha1' USE_EMBEDDED_HMAC = true ...
2
votes
1answer
31 views

FIPS HMAC SHA512

I'm hoping this isn't a repeat question, I couldn't find exactly what I was looking for on this site. So I'm building a FIPS compliant application and have the FIPS mode turned on on my computer. I ...
2
votes
1answer
55 views

How to efficiently implement hash validation of a file while using BinaryWriter & Reader?

I'm relatively new to C# so please bear with me. I am writing a small application in C# (.NET 4.0). For writing files I use some variation of this code: using (var fStream = new FileStream(filename, ...
2
votes
2answers
41 views

What implementations allow me to detect failed HMAC validations to detect active attacks?

I'm trying to bring awareness around the need for authentication with encryption by using software to alert and report on failed MAC verification attempts, and sharing the results with middle ...
2
votes
1answer
305 views

MSDN HMAC-SHA1 Example Steps HOW-TO Not Working

Creating an HMAC steps by using CryptoAPI found here: http://msdn.microsoft.com/en-us/library/Aa379863 To compute an HMAC Get a pointer to the Microsoft Cryptographic Service Provider (CSP) by ...
2
votes
1answer
104 views

python equivalent of perl hmac_sha1_hex

i need to reproduce in python what perl does # perl perl -e'use Digest::HMAC_SHA1 qw(hmac_sha1_hex); my $hmac = hmac_sha1_hex("string1", "string2"); print $hmac . "\n";' ...
2
votes
1answer
240 views

HMAC MD5 on Windows Phone 7 / Silverlight

I'm trying to generate a HMAC_MD5 algorithm on Windows Phone 7. As as I discovered , HMACMD5 class in not implemented in WP7. On the other hand, I found a MD5 Silverlight library ( ...
2
votes
1answer
75 views

How long should I make my key for php's hmac, when used with SHA512?

I'm using this code to hash passwords: hash_hmac('sha512', $password . $salt, $hmac_key); Is 4096 bits enough for a key? Thank you!
2
votes
2answers
135 views

Java equivalent of Fantom HMAC using SHA1

I'm having trouble doing the following in Java. Below is the Fantom code from the documentation for the the tool I am using. // compute salted hmac hmac := ...
2
votes
2answers
101 views

Does using channel encryption (https) make hashing the secret key redundant?

I'm designing a web service that clients connect to in order to retrieve some private data. Each client has a unique ID and a secret key (generated by the server) that are sent as parameters to the ...
2
votes
2answers
690 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
3answers
2k views

basics of python encryption w/ hashlib sha1

I'm struggling to fully understand how encryption works and is coded, particularly with python. I'm just trying to get the basics down and create code in the simplest form. I'm going to be passing a ...
2
votes
1answer
40 views

Get original query from Django

I would like to get the original query (in the exact same format as sent) from Django. Currently, django sends me a query dict object, wherein if I do querydict.urlencode(), I get the query back, but ...
2
votes
1answer
2k views

openssl hmac using aes-256-cbc

I am trying to take an AES HMAC of a file using the openssl command line program on Linux. I have been looking at the man pages but can't quite figure out how successfully make a HMAC. I can encrypt ...
2
votes
2answers
730 views

Using one key for Encryption and HMAC

I am wondering whether I can use a shared secret key established between two clients as the HMAC key too. I saw that there is a problem when it is used as a CBC-MAC but I haven't found any evidence ...
2
votes
3answers
506 views

Pear Crypt/HMAC.php failed to open stream

I am on a MediaTemple Dedicated Virtual server and have enabled Pear using the instructions found at: ...
2
votes
1answer
202 views

How to Detect Diferences between GET and POST ViewModel Values in a form?

I have a single view that handles a lot of Models of type VoyagesViewModel, in that view the user can create a new voyage or edit all the active voyages, so i have different instances of the same ...
2
votes
1answer
293 views

How are these 2 lines of PHP different?

Assuming we have a salt that's in the database and that has been generated like this $salt = time(); What is the difference between these 2 lines. $pass1 = hash('sha1', $password . $salt); ...
2
votes
1answer
444 views

Best way to generate a hash signature (HMAC) for XMLSerialized objects in .NET?

I need to generate a HMAC for objects that I am serializing using the XMLSerializer found in the .NET framework. Each object will contain a property called "HMAC" that will contain a hash of the ...
2
votes
3answers
675 views

Scala HMAC-SHA1 signing?

I was wondering if there would be a way to get a HMAC-SHA1 signature in scala without having to compile a java class with the code everyone use in java. Any ideas?
2
votes
4answers
823 views

migrate from C#.net 2.0 to php so the hash value of the password - how to resolve?

we previously use a C#.net 2.0 to create a web app. Users password were hashed and stored in database using the following code. private const string encryptionKey = "AE09F72B007CAAB5"; HMACSHA1 ...
2
votes
4answers
2k views

Why do I get wrong results for hmac in Python but not Perl?

I'm trying to compute hmac using sha-512. The Perl code: use Digest::SHA qw(hmac_sha512_hex); $key = "\x0b"x20; $data = "Hi There"; $hash = hmac_sha512_hex($data, $key); print "$hash\n"; and ...
1
vote
1answer
96 views

Problems with reproducing the same HMAC MD5 on Java and C

I am currently stumped on recreating an HMAC MD5 hash generated by a Java program on C. Any help, suggestions, correction and recommendation would be greatly appreciated. The Java program creates the ...

1 2 3