Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
259 views

Why a different SHA-1 for the same file under windows or linux?

Why on the same machine computing the SHA-1 hash of the same file produces two completely different SHA-1 hashes in windows and inside a msysgit Git bash? Doesn't the SHA-1 algorithm was intended to ...
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 ...
3
votes
2answers
362 views

Convert a string to a byte array in PowerShell version 2

What I'm trying to do is use SHA1 UTF-8 encryption and then base64 encoding and on a password string value. However, I needed to do the encryption first, then the encoding, but I did it the other ...
3
votes
4answers
2k views

SHA1 hashing in Delphi XE

I'm in the process of implementing XML digital signatures. I'm starting with little steps, so right now I want to solve the problem of SHA-1 hashing. There are lots of questions about this in SO: ...
3
votes
1answer
341 views

SHA-1 and Unicode

Is behavior of SHA-1 algorithm defined for Unicode strings? I do realize that SHA-1 itself does not care about the content of the string, however, it seems to me that in order to pass standard tests ...
3
votes
3answers
637 views

A 16-digit hashing function

Is there a hash function that returns a 16-digit hex value (as MD5 returns 32-digit), or is there a library (for C++) in which I can use MD5 or SHA-1 which returns a 16-digit value
3
votes
2answers
217 views

Significance of Hex numbers specified in RFC 3174 (SHA-1)

I'm trying to learn about SHA-1, I was looking at the C implementation that was included in the specification (RFC 31741) and this part confuses me: context->Intermediate_Hash[0] = 0x67452301; ...
2
votes
2answers
269 views

Get git SHA1 hash of a changeset (or diff) in a commit

I'm mostly integrating finished topic branches into the main development branch, in git. While doing that I sometimes have to change the message of commit (improving, correcting spelling, ...) which ...
2
votes
2answers
261 views

Python crashing while calculating SHA-1 hashs for large files in Windows OS

I am wondering if I could have some fresh eyes on this python script. It works fine with small and medium size files but with large ones (4-8GB or so) it inexplicable crashes after running for a ...
2
votes
1answer
104 views

SHA-1, RFC3174 and RFC4634

New to the community, but not new to programming. I've been trying to get a collection of hash functions up/running and I succeeded. However I found some weird results and haven't been able to put my ...
2
votes
2answers
2k views

SHA-1 MessageDigest not available

I have searched and searched and searched. I cannot seem to download the Google APIs using the Android SDK and AVD manager. It's driving me nuts! I get the subject title message as an error: SHA-1 ...
2
votes
2answers
326 views

why these two sources calculate different sha-1 sums

The following snippets are both supposed to calculate sha-1 sum. But for the same file they calculate different sha-1 sums. //snippet1 byte[] byteArr = new byte[(int) uploadedFile.getLength()]; try ...
1
vote
1answer
30 views

Restrict SHA-1 hash algorithm to produce hashing within 24-bits, C#

I was wondering if there is an implementation of SHA-1 hashing in C#, that restricts the hashing output to 24bits? As far as I have seen (hopefully not missing a point) in the .NET version of SHA-1, ...
1
vote
2answers
41 views

What's the maximal length of string that's going to be hashed?

I wonder... what's the maximal length of string that's going to be hashed? For example, to hash Hello, world! with SHA-1 is no problems. But what about string that's like 100'000'000 chars long? Does ...
1
vote
1answer
393 views

iphone SDK : How Can I Convert a string to SHA-1 And SHA-1 to Base64? (for WSSecurity)

my convert code is all i have, but it converts a string to sha-1 to hex format. how can i convert sha-1 to base64 ? -(NSString )digest:(NSString)input int i; const char *cstr = [input ...
1
vote
0answers
248 views

Hashing - Salting and Stretching [closed]

Possible Duplicates: hash(hash()) vs salted hash Many hash iterations: append salt every time? While reading a recent answer I came to this juicy blog post about password hashing, and ...
1
vote
1answer
278 views

storing SHA-1 Hashes with EclipseLink & PostgreSQL

I'm using eclipselink as JPA Implementation and PostgreSQL and want to store SHA-1 Hashes in the database. But I'm getting an Exception like this: Internal Exception: ...
1
vote
3answers
480 views

Lua library/wrapper for cryptography

I'm looking for a library or wrapper for Lua to use some cryptographic functions. Initially I only need to create SHA-1 hashs. Any tips or suggestion are appreciated.
1
vote
4answers
1k views

SHA-1 hash for storing Files

After reading this, it sounds like a great idea to store files using the SHA-1 for the directory. I have no idea what this means however, all I know is that SHA-1 and MD5 are hashing algorithms. If ...
1
vote
3answers
784 views

HMACSHA1.ComputeHash() thread-safety question

i am asking myself if it would be dangerous on a asp.net page“s codebehind to use an static (Shared) variable which holds an HMACSHA1-instance. the problem is that the same HMACSHA1-instance would be ...
0
votes
2answers
97 views

Calculate sha-1 or CRC32 checksum for big files > 400mb

I have a newbie question, I've never read files bigger than 4Mb with function like fopen, ReadFile(WINAPI). My question is What is the best way to read a big file like 400Mb load blocks of 512 bits ...
0
votes
1answer
52 views

Converting a byte [] to PrivateKey in java for digital signature

I need to digitally sign a String using the SHA-1 digest algorithm first and then apply the RSA algorithm, using a PrivateKey to sign it. I already have the PrivateKey stored in my database as data ...
0
votes
1answer
25 views

Will hash strings returned from .NET web service and Android app be same

I have implemented a web service(.asmx) using .NET framework that returns me a hash string Here is the code: public string HashCode(string str) { string rethash = ""; ...
0
votes
1answer
376 views

iOS/Objective C: SHA-1 and Base64 problem

I have to convert the phrase '1234' into the Base64-encoding of its SHA-1 hash.. I want to have: '1234' = cRDtpNCeBiql5KOQsKVyrA0sAiA= (This example work in connection with the server ...
0
votes
1answer
127 views

Is there's a hexToString implemented method in Java for Hashing?

I'm working in a little method that hashes a String. Looking for information, I could find that MessageDigest can help me to make this task, here Java Compute SHA-1 But now I have a question. It ...
0
votes
1answer
236 views

Get UTF-8 bytes from a string in Ruby

I have a requirement to "Perform the SHA1 hashing on the UTF-8 bytes of a string". I'm not sure how to get the UTF-8 bytes out. Here's an example of what I should get: original = ...
0
votes
1answer
137 views

SHA-1 Hash of uploaded xls file always different, With csv file hashing works

I got the following problem. I upload csv and excel files via WCF Service. Hash calculation does only work for csv files. With xls files i get a different value with every upload. Hash Calculation: ...