Tagged Questions
HMAC SHA-1 stands for Hashed Message Authentication Code using Sercure Hash Algorithm 1. It applies a hash algorithm to data and uses a private key or secret key to provide sender authentication.
7
votes
4answers
327 views
How much can you truncate a SHA1 hash and be reasonably sure of having an unique ID?
I am making an application that stores documents and gives each one a UID based on a SHA1 digest of a few things including the timestamp. The digest has a lot of characters, and I want to allow users ...
6
votes
2answers
2k views
hmac-sha1 in ruby differs from C# HMACSHA1
I am trying to test the API from ankoder.com and have problem on the digest calculation for the authentication token . The sample is ruby while I am trying to call from C#. When I compare the digest ...
5
votes
4answers
3k views
How to decrypt a string encrypted with HMACSHA1?
I'm an encryption novice trying to pass some values back and forth between systems. I can encrypt the value, but can't seem to figure out how to decrypt on the other end. I've created a simple ...
4
votes
2answers
477 views
HMAC-SHA1 in bash
Is there a bash script to generate a HMAC-SHA1 hash?
The equivalent of the following PHP code:
hash_hmac("sha1", "value", "key");
Thanks
4
votes
1answer
1k views
HMAC-SHA1: How to do it properly in Java?
I'm hashing some values using HMAC-SHA1, using the following code in Java:
public static String hmacSha1(String value, String key) {
try {
// Get an hmac_sha1 key from the raw key ...
3
votes
1answer
55 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
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 ...
2
votes
2answers
40 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
304 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
3answers
658 views
Library for generating HMAC-SHA1 OAuth signature on Android?
Using the specifications below I need to create an oauth_signature on Android. I'm looking for a library that handles the boiler plate code in creating a signature for accessing resources via OAuth.
...
2
votes
2answers
436 views
Getting HMACSHA1 correctly on iPhone using openssl
Argh, my head hurts!
Context
I need to write some C/Objective-C code to decrypt files that are stored on a remote server. The encryption is open-source and written in C#
I'm using libssl.a and ...
2
votes
3answers
502 views
My OAuth request signature differs from my service provider's one
I'm developing an app using OAuth1.0a for iPad.
My problem is that I can't get the right signature for my request_token request.
The service I want to connect with has a debugging tool that allows to ...
2
votes
4answers
2k views
How to implement HMAC-SHA1 algorithm in Qt
I'm trying to implement HMAC-SHA1 algorithm in my C++/Qt application.
I have a method for Sha1 algorithm available, I just need to understand the HMAC part of it.
This pseudocode is from wikipedia:
...
2
votes
1answer
387 views
Generating consumer key/secrets for HMAC-SHA1
I am looking for a programmatic way to generate consumer key/secrets for HMAC-SHA1 to be used by clients invoking our API over OAuth. Any pointers to existing implementations would be highly helpful.
1
vote
3answers
110 views
Implementaion HMAC-SHA1 in python
I am trying to use the OAuth of a website, which requires the signature method to be 'HMAC-SHA1' only.
I am wondering how to implement this in Python?
1
vote
1answer
149 views
HMAC-SHA1 Example not returning desired hash?
I am using this example: http://msdn.microsoft.com/en-us/library/aa382379%28VS.85%29.aspx
Directly copied and pasted, and using the following link as a reference for checking the digest: ...
1
vote
1answer
84 views
HMACSHA1 off by 2 bytes
I am using this class in MSVC++ 2010 Express: http://www.codeproject.com/KB/recipes/HMACSHA1class.aspx. I am running Vista 32bit. Pretty much to get it working I just changed...
SHA1.cpp:
fIn = ...
1
vote
1answer
448 views
Android HMAC-SHA1 Different than Standard Java HMAC-SHA1
I'm having issues with some HMAC on android. I am using the SHA1 algorithm with the following code which shows up all over the web when searching for android hmac-sha1.
String base_string = ...
1
vote
3answers
267 views
Is a hmac-sha1 hash always 20 bytes long? Python code
Is the digest always 20 bytes long? len(hashed.digest()) seems to always be 20.
hashed = hmac.new(key, signature_base_string, sha)
print hashed.digest()
print len(hashed.digest())
i = 0
for c in ...
1
vote
1answer
127 views
how to generate s3 style access/secret key using java
I am trying to generate access keys and secret keys in the same fashion as S3 using java but am having some trouble.
As a starting point I am looking at this bouncy castle example , I have this ...
1
vote
1answer
249 views
Mac.getInstance() for HmacSHA1 taking ages to execute
I've recently ran into a deployment issue with a call to Mac.getInstance("HmacSHA1").
It can take up to 10 minutes to execute that single call on this specific server, whilst on other machines its ...
1
vote
1answer
457 views
hmac key and salt length
I'm using hmac sha1 to sign a userid which is passed to a third party service.
The same secret is used for all users and the salt is unique for each user.
token = userid : timestamp+2hours : ...
1
vote
1answer
149 views
Is /proc/sys/kernel/random/uuid strong keying material?
I've been looking at ways to generate a strong 256 bit/32 byte symmetric key for the HMAC_SHA256 algorithm. I stumbled upon the /proc/sys/kernel/random/uuid file.
According to man random(4): "The ...
1
vote
0answers
133 views
getting “key too short” exception while creating object of SecretKeySpec
I am developing app where I use the PBKDF2 algorithm.
I am trying the following code:
Mac mac = Mac.getInstance();
mac.init(new SecretKeySpec(password,macAlgo));
In the above code the password is a ...
1
vote
1answer
1k views
Trying to find a good javascript function for hmac-sha1
So i have been searching the web for a javascript source for an Hmac-sha1 algorithm. I saw Crypto's but i cant seem to get it to work, mainly because it has no idea what crypto means. (i copied the ...
0
votes
2answers
37 views
HMAC SHA1 using the same value for key and message
I'm working on some C# security code and was about to replace it when I saw that it was using the HMACSHA1 class. The code is used to hash a password for storing in the database. The thing that caught ...
0
votes
5answers
53 views
Encryption using SHA1
I am developing a large application and i need encryption when a data is traveling between two machines in different continents. I have never worked on encryption. I want a simple encryption which can ...
0
votes
1answer
52 views
SHA1 HMAC a byte array with Arduino
How can I HMAC a byte array on an Arduino? I've found this library for SHA1 HMACs, but it appears to be used only for strings.
I've passed it bytes in a null-terminated byte array. This does give ...
0
votes
1answer
70 views
Signing an oAuth request with HMAC-SHA1
I'm struggling on iOS to sign an oAuth request with oAuth. I don't need to sign on behalf of a user, so I just have my app's key/secret from my provider. Is there an iOS library or 3rd party library ...
0
votes
1answer
51 views
Is it possible to provide a custom key for SQL HashBytes function?
I'm using HMACSHA1 with machine validation key in C# .NET 4.0 to generate hash in my application but I can't seem to find any resource on TSQL HashBytes function being able to take a key string.
Can ...
0
votes
1answer
106 views
Getting an OAuth access token (not language specific) - same issue for Flickr and Tumblr, but not Twitter
I'm making the huge mistake of writing my own OAuth library and wrapper classes in PHP. Everything works wonderfully for Twitter's OAuth implementation, but I fail on signing the access_token step ...
0
votes
0answers
55 views
Getting 'Type Mismatch' using hmac_sha1_js.asp in classic ASP
I am using the hex_sha1 function from the publicly available hmac_sha1_js.asp module.
In my ASP page, i have the directive to add the hmac_sha1 file, and i am calling the function like this:
Dim ...
0
votes
0answers
181 views
HMAC-SHA1 with OpenSSL/Request to Amazon S3 signature
I am writing a program to upload file to Amazon S3 in C with libCurl and OpenSSL. To send a request to amazon I have to sign it - with HMAC-SHA1 here amazon doc that explain it. Help, please, can it ...
0
votes
1answer
92 views
How make signature in Amazon S3 in C
I'm writing in C, I'm using libcurl+openSSL to send POST request. In case of Amazon S3, I have to make signature in my request, that is formed as RFC 2104 HMAC-SHA1 from AWS Secret Access Key. Advise, ...
0
votes
1answer
39 views
Password Reset policy in OpenSSO
I had to implement Password Reset policy....For which I had OpenSSO deployed on Glassfish server and OpenDS as the Data Store...I followed Indira's blog...
Password Reset With OpenDS
And executed ...
0
votes
0answers
17 views
Cannot see HOTP option in OpenSSO
When I log into OpenSSO using "amadmin" ...After Selecting the Configuration-> Authentication Tab, I can see various options such as
Active Directory,Anonymous,Certificate,Core,Data ...
0
votes
1answer
161 views
C++ OpenSSL HMACSHA1 works but not how I want it to
(MSVC++ 2010 Express)This HMACSHA1 code below works for converting "Password" and "Message" to: AFF791FA574D564C83F6456CC198CBD316949DC9 As evidence by: http://buchananweb.co.uk/security01.aspx.
My ...
0
votes
0answers
217 views
Yahoo! IM Session Management, oauth_problem=“signature_invalid”
I receive "signature_invalid" response when I try to get session information after successfully creating the Yahoo! Messenger session.
The signature method is "HMAC-SHA1" which works perfect on the ...
0
votes
2answers
153 views
base64 HmacSHA1 decode in iPhone
I am working on an iPhone application that requires Base64 decoding using HmacSHA1 algorithm. Can anyone help me doing the objective-C equivalent of the given Java code:
SecretKeykey = new ...
0
votes
1answer
334 views
HmacSHA1 generates different signatures on different systems using same secret
I have a jersey oauth provider that uses HmacSHA1 for signing/verifying requests. This works for my development & test platforms where client & server are both different physical systems. ...
0
votes
1answer
1k views
OAuth for Jersey
The RESTful system is constructed by using jersey.
The error occurs when signature is verified and it is not possible to execute it.
Please teach if the person who understands the cause enters.
...
0
votes
2answers
359 views
C# HMAC to Java
I'm making the equivalent java code for the code below. But I can make something that returns the same result for encodedString. What Java class can I use for achieve the same result?
//Set the Hash ...
0
votes
1answer
1k views
How to generate an HMAC in Java equivalent to a Python example?
I'm looking at implementing an app getting Twitter authorization via Oauth in Java. The first step is getting a request token. Here is a Python example for app engine. To test my code, I am running ...
0
votes
2answers
461 views
Trying to digitally sign via HMAC-SHA1 with PHP
I'm trying to setup some google maps premier API action, and to do so, I need to sign my URLs to authenticate. If you go down to Signature examples, there is some Python, C# and Java code to show you ...
0
votes
2answers
2k views
iPhone: convert string using HMAC-SHA1
i want to generate HMAC-SHA1 of NSString type variable. I see the post but this method give me error in CCHmac(kCCHmacAlgSHA256, cKey, strlen(cKey), cData, strlen(cData), cHMAC);
and
NSString *hash ...
0
votes
1answer
343 views
I need clarification with hmac-sha1 sample
I am new to hmac-sha1. I have a couple of questions about the sample.
/*
inputs:
NSData *keyData;
NSData *clearTextData
*/
uint8_t digest[CC_SHA1_DIGEST_LENGTH] = {0};
CCHmacContext ...