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.
0
votes
0answers
5 views
Flex 4.0 HMAC.hash binary data
I have the following PHP code, which I need to get working in Flex 4.0:
$mac = base64_encode(hash_hmac('sha256', $message, $secret, true));
If the last element is a true the hash_hmac is outputted ...
0
votes
1answer
15 views
Amazon S3 REST API; how is the API-key transferred firsttime between client and service?
Within my research I came across many different sources, but somehow I fail to see, which side is generating the private API-key and how is the other side getting hold of it.
Many people recommend ...
7
votes
1answer
243 views
Java vs Python HMAC-SHA256 Mismatch
Based on recent feedback and findings on this problem, I've rewritten the question to get rid of noise.
I have 2 separate code paths, one in Java (Android), one and Python which accomplish the ...
1
vote
1answer
63 views
Golang crypto multiple calls have different responses
I'm having a problem with some Go code I've written for a password authentication library. The general idea is to provide 2 functions, Check() and New(), which are both provided a password and a 256 ...
0
votes
0answers
23 views
Where to distribute the HMAC Secret Key part?
So I'm currently in the process of developing an an app that will be cross-platform. For this reason I want the app to use an external database on a cloud service through a REST API build using the ...
0
votes
2answers
37 views
Rails and PHP encode64 not agreeing
I'm try to create an HMAC in Rails and verify it in PHP.
Rails shell:
pry(main)>appsecret = '00916893840fe0a29dfdc261efd3a26a&'
...
0
votes
2answers
139 views
First data payment gateway integration soap fault error
Hi I am trying to integrate First data payment gateway integration in soap request method using php. I have downloaded the working sample code from first data but when i am trying to submit a payment ...
0
votes
1answer
221 views
Internal server with MTGOX api
I have a problem calling the MTGox HTTP api v2.
I wrote a sendrequest function to generally handle all my requests.
It works great for MONEY/INFO or MONEY/ORDERS but I get a 500 internal server error ...
-1
votes
0answers
51 views
Brute Force key identification - SHA 256 HMAC [closed]
Background:
As a follow up to: Is It Possible To Reconstruct a Cryptographic Hash's Key
Situation:
-I am using a SHA256 HMAC function on a single word input: sha256hmac(privatekey,word) = ...
0
votes
1answer
44 views
hmac sha1 with salt and hash in coldfusion
Now I am doing a penetration testing for my customer.
I have got the administrator's hash(SHA1) ,but i can't decrypt it on the internet, thus I can't access the /CFIDE/administrator/index.cfm
But he ...
2
votes
2answers
81 views
Perl alternative to hash_hmac('ripemd160', $data, $key) in PHP
I need to produce same result in Perl that hash_hmac('ripemd160', $data, $key) produces in PHP
Managed to trace it down to two perl modules, just cant get them working together...
Digest::HMAC and ...
1
vote
1answer
54 views
SHA512 client handshake implementation
I'm attempting to make an hmac implementation that interacts with a server api and the only example I have to go off of is a python snippet. Unfortunately I've never touched python and my Java is a ...
1
vote
1answer
134 views
Stuck implementing HMAC in javascript
I've been trying to code HMAC algorithm in Javascript but have got to a point where I can not figure out what is going wrong. I'm at the point where you create the inner hash, but the returned value ...
0
votes
1answer
46 views
HMAC-MD5 using openSSL
I'm trying to study NTLMv2 response, Eric Glass's work.
but stuck at HMAC-MD5 section. (using function like this)
I got the right NTLM hash, and unicode username & domain.
(he only emphasize the ...
-1
votes
1answer
47 views
hash_hmac Python to PHP
I have snippet of Python code following:
import hmac
from hashlib import sha1
from time import time
method = 'GET'
expires = int(time() + 60)
path = '/v1/12345678912345/container/object'
tenant_id = ...
1
vote
0answers
46 views
Creating AWS SQS Request in Javascript with IAM user
I have created an IAM User that has only SendMessage privilege on one SQS queue. I would like to distribute this IAM user's credentials to my client's browser so that messages may be sent to this SQS ...
0
votes
0answers
19 views
cryptography notation [L]<sub>2</sub>
cryptography notation confusion?
http://csrc.nist.gov/publications/nistpubs/800-108/sp800-108.pdf
[L]2
An integer L represented as a binary string (denoted by the "2") with a length specified by ...
0
votes
0answers
104 views
Basic authentication or HMAC in WebApi?
I need to create a security model for a new project. Now this project is based in a WebApi.
The project is a tablet with Windows 8 + company server with Membership databases + customer server with ...
0
votes
0answers
39 views
Authentication options for API serving website and mobile app
As part of a wider learning process, I am looking to build a website and mobile application with a common api for data storage and retrieval (think of it as a simple cms). The mobile app will have ...
0
votes
2answers
80 views
HMAC SHA512 output varies in Perl
I have observed that the output of HMAC SHA512 for a given data and a key varies each time I execute the script.
first, I take an example of a script where the output does not vary:
#! /usr/bin/perl
...
0
votes
0answers
71 views
cannot import name SIGNATURE_HMAC
I am running the django example provided with python-social-auth, and am getting the following 500 server error.
ImportError at /login/bitbucket/
cannot import name SIGNATURE_HMAC
Request Method: GET
...
0
votes
0answers
20 views
How to guarantee counter synchronisation between client and server for counter in hmac-based one time password implementation?
We are trying to implement a hmac-based one time password protocol for use authenticating users over our api.
The idea is to encrypt a unique identifier for the user (uid) against a private key and ...
0
votes
0answers
39 views
How would I dupicate NodeJS Binary and crypto functionality in PHP
I'm trying to duplicate the following nodejs function in PHP and I'm not having any luck.. Basically I'm passing a utf8 body string and a base64 key string to retrieve an hmac hash returned in ...
1
vote
1answer
225 views
Why my python and objective-c code get different hmac-sha1 result?
I am writing a client/server project that need a signature. I use base64(hmac-sha1(key, data)) to generate a signature. But I got different signatures between python code and objective-c code:
...
4
votes
3answers
145 views
(Not-so)Clever key is causing problems with SHA512 Hmac in Node JS
This is an oddball question, but I have been working on this for hours now and am not making much progress. I am hoping someone here may be able to advise...
I am porting a script from php to node. ...
2
votes
1answer
114 views
Convert PHP hash_hmac(sha512) to NodeJS
I am porting a php script to node, and I don't know much about encryption.
The php script uses this function:
hash_hmac('sha512', text, key);
So, I need to implement a function in Node js for ...
2
votes
1answer
100 views
HMAC Mismatch Error Using PHP Decryptor for RNCryptor
I have an encrypted NSData variable that has been Base64 Encoded in Objective-C, and is being passed via POST to a PHP script. I am attempting to decrypt this string, but keep receiving a HMAC ...
0
votes
1answer
84 views
Validating HMAC using SecurityServiceProvider with Silex
I'm sending an hmac within the URL that I want to valid before allowing users access to the system. There is no user database, so its simply validating the url parameters to verity it was generated ...
1
vote
2answers
121 views
Using CryptoStreams to encrypt and HMAC data
Let's say we have a message that is signed with an HMAC, then that message and the HMAC are encrypted, then that is sent over a TCP socket:
// endpoint info excluded
TcpClient client = new ...
0
votes
1answer
68 views
PHP based app/web login framework? [closed]
I currently have a very simple PHP based login system that works with android, iOS, and the web but I'd like to use something with a little more security. My current setup simply passes the username, ...
1
vote
2answers
320 views
HMAC-SHA256 with AES-256 in CBC mode
I recently came across the following code sample for encrypting a file with AES-256 CBC with a SHA-256 HMAC for authentication and validation:
aes_key, hmac_key = self.keys
# create a PKCS#7 pad to ...
1
vote
2answers
169 views
Equivalent Hashing in C# and Objective-C using HMAC256
I'm working with a partner and we're not able to get C# and Objective-C to produce the same hashes using what we think are the same tools in the respective languages. In C#, I'm doing this:
byte[] ...
2
votes
1answer
107 views
Calculate a HMAC from an HTTP POST without copying entire request body into memory
In my application I want to calculate an HMAC of an HTTP POST request body. So this input now needs to be processed for two operations: request parsing, and HMAC calculation.
How can I achieve this ...
0
votes
0answers
451 views
HMAC with ASP.NET WebAPI using Cuong's Solution
I spent a some time today looking through various HMAC implementations in C# for an upcoming WebAPI project. I wanted to start out with some existing code just to see it all work and understand it ...
1
vote
0answers
59 views
hash_hmac() returns the same value, regardless of data used
I have a script that returns a hashed value based on a key, and data sent in the query string.
<?php
$transaction_key = "JBAKbdjsd9823hkjd3kdjk";
echo hash_hmac('md5', $_GET['data'], ...
5
votes
1answer
125 views
What are the benefits of HMAC over symmetric cryptography?
Somehow I don't get HMACs.
I once asked Why do I need HMACs when we do have public key signatures?, and I think I got this one. Easier to compute, and so on ...
But, what I do not get is why we need ...
1
vote
1answer
189 views
Creating a restful Login API
I have read a few articles on the subject, but I am just looking for some more advice really.
I have a WordPress site with a login functionality and user database on that site.
What I need to do is ...
0
votes
2answers
269 views
SHA-256 hashing function in Java ME/J2ME
I've posted this question on the Nokia Developer forums so please bear with me.
I'm writing an app which needs to find the SHA-256 hash of a URL keyed with a unique value – i.e. hmac('sha256', ...
0
votes
2answers
292 views
objective c hmac sha 256 gives wrong nsdata output
So finally figured out how to do an hmac sha 256 hashing. I will be using this for a wcf service api i made. My problem is that the NSData output that my method is sending out have spaces.
eg. This ...
1
vote
0answers
344 views
xcode ios HMAC SHA 256 hashing
So I'm trying to figure out how to do a hmacshad256 hash on ios as that's the hash I did for the wcf service api I made. I've been trying to look for some info about it but would usually just end up ...
2
votes
3answers
211 views
AES+HMAC encryption in multiple threads - Java
I'm developing a little program to encryp/decrypt a binary file using AES-256 and HMAC to check the results.
My code is based on AESCrypt implementation in Java, but I wanted to modify it to allow ...
0
votes
0answers
139 views
One time password using HMAC- SHA-1 algorithm ( creating HOTP) value
Hi in my application i have to generate one time password (6 digit number ) using HMAC- SHA-1 algorithm (HOTP value).Can any body help me please.I am developing an IOS application which requires ...
0
votes
1answer
85 views
Why do I need HMACs when we do have public key signatures?
Preamble: I am quite new to HMACs, so please forgive me if the question is a little bit dumb.
As far as I understood, an HMAC is used to make sure that a message has not been tampered. So basically, ...
0
votes
0answers
23 views
Integrity of http using browser
How is it possible to check the integrity of http messages in a way browser can do ?
Actually Digest authentication with "qop=auth-int" would work (because the md5 is also over the body) but ...
2
votes
1answer
537 views
How to calculate HMAC-SHA1 authentication code in .NET 4.5 Core
I’m currently facing a big problem (Environment: .NET 4.5 Core): We need to protect a message with a key using a HMAC-SHA1 algorithm. The problem is that the HMACSHA1-class of the namespace ...
0
votes
0answers
16 views
Please help me to convert my 5.2 mhash codes to 5.3
// compute HMAC-MD5
// Uses PHP mhash extension. Pl sure to enable the extension
function hmac ($key, $data)
{
return (bin2hex (mhash(MHASH_MD5, $data, $key)));
}
2
votes
1answer
76 views
Encryption hmac result is shorter in C than C#
Sometimes you have to implement C-Code and Encryption so I have a Problem with my C-Code implementation of hmac256 or sha2_hmac Implementation:
unsigned char key[19] = { "abcdef" };
size_t keylen = ...
-1
votes
2answers
513 views
How can I decrypt a HMAC?
I can make an HMAC using the following:
var encrypt = crypto.createHmac("SHA256", secret).update(string).digest('base64');
I am trying to decrypt an encoded HMAC with the secret:
var decrypt = ...
1
vote
1answer
142 views
HMAC-MD5 in pure lua
I need to write a HMAC-MD5 algorithm in pure Lua..
I got this algorithm from Wikipedia
function hmac (key, message)
if (length(key) > blocksize) then
key = hash(key) // keys longer ...
1
vote
1answer
289 views
SHA-1 hash for HMAC Generated in Objective C and PHP (hash_hmac) dont match
I am trying to implement HMAC authentication from Objective C(CCHmac) and PHP (hash_hmac). I got the different hash result. Have anyone can help me? I don't know why to get the different hash result? ...



