The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
19 views

SHA_256 functions corrupting memory space

I've been trying to use the SHA_256 functions in sha256.h on a FreeBSD 9.1 system but it seems to be corrupting memory space of my program causing all kinds of manic behavior. I wrote up a quick ...
0
votes
0answers
55 views

jSCEP Message-digest attribute Exception

I create SCEP client for android. I create server on jSCEP and it forking fine, at least iPad can enroll certificate successfully. But android client get error: ...
0
votes
2answers
294 views

MD5 Message Digest Java

I'm trying to convert two strings from an String List into MD5 message digests. My String List is called "usernamepassword". try { MessageDigest mdg = MessageDigest.getInstance("MD5"); ...
0
votes
2answers
163 views

When to use MessageDigest.reset()

I've blindly followed OWASP's recommendation on hash generation in java (see here), and I'm not sure I've done it correctly. Specifically, I'm unsure about the purpose and effect of ...
-1
votes
1answer
171 views

openssl digest different in c compared to java

Following is the code which is part of the DigitalSigning Handler final String NAMESPACEURI_WSSECURITY_WSU= "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"; ...
6
votes
1answer
188 views

How is md5Hash calculated for com.google.appengine.api.blobstore.BlobInfo

We're trying to avoid saving duplicate files. However, our md5 result is always different from BlobInfo. How we calculate it: MessageDigest messageDigest = ...
0
votes
2answers
158 views

Hashing password and comparing with MD5

I have the following requirement. 1. save a user password converted to hash(digested) 2. when comparing with data base, add random bytes with the password given from user 3. now send the random ...
0
votes
0answers
92 views

MessageDigest to Identify the duplicate file upload does not work when file renamed?

I need to identify duplicate file imports in my web-application so using MessageDigest I'm generating a unique hash key for each file and storing the hash value in a Database and while importing I ...
1
vote
1answer
279 views

same message digest but different signature value

I have 2 signature file that only different in namespace. Both these file provide the same message digest. I use the same key to sign with the same algo RSA-SHA1. But there are 2 different signature. ...
1
vote
1answer
633 views

Illegal block size exception while decrypting the encrypted message digest

I want to decrpyt the encrypted message digest. i hav this code in my java program: String bobSignedMsg = SignedMsg; //At the receiving end, Bob extracts the msg // length, the msg text, ...
1
vote
2answers
198 views

Hashing image bytes with SHA-256 yields many random collisions, what am I doing wrong?

I'm using the SHA-256 algorithm to detect identical images in a database. Because we use a lot of different image formats I don't want to compute the hash directly on the file. Instead I want to ...
2
votes
1answer
847 views

Java MD5 hashing not matching C# MD5 hashing

I know very little about encryption/hashing. I have to hash an encryption key. The example in Java is like this... String encryptionKey = "test"; MessageDigest messageDigest = ...
1
vote
1answer
214 views

Hashing using salt on android and iphone

I am developing an app on both android and iphone which requires encryption of some data. I want to know is there any way to encrypt data producing same hash on both platform. I have common salt, ...
1
vote
1answer
581 views

How does SDK or ADT generate SHA1-Digest for Resources of Android application packages

In a signed apk, there would be a META-INF/MANIFEST.MF file. And in this file, we can find the digests like these: Name: res/layout/main.xml SHA1-Digest: NJ1YLN3mBEKTPibVXbFO8eRCAr8= Name: ...
1
vote
0answers
533 views

“Application not installed”, is it a bug of ADT?

I exported an apk by ADT in eclipse, and I attempted to install this apk into a avd, but it raised "Application not installed". I checked the logcat, and found this: W/PackageParser(59): ...
1
vote
1answer
229 views

MD5sum is not calculated correctly

I am trying to match the md5sum of a downloaded file from server. Processing will be continued only if sums match. try { MessageDigest digest = MessageDigest.getInstance("MD5"); File f = ...
4
votes
1answer
2k views

Does every Android phone support SHA-256

So reading this post: How can I calculate the SHA-256 hash of a string in Android? and the docs: http://developer.android.com/reference/java/security/MessageDigest.html I'm curious; which phones ...
2
votes
0answers
123 views

Why are the openssl EVP_DigestInit man pages on http://linux.die.net more up to date than http://www.openssl.org/docs? [closed]

Why are the openssl man pages on http://linux.die.net more up to date than http://www.openssl.org/docs? For example, the cryptographic message digest SHA-256 has been around since 2004. The die.net ...
1
vote
2answers
272 views

Why are my two MD5 hashing methods producing different hashes?

I'm new to java and really need some help. I created a command line tool in order to get an MD5 hash of a file. This worked so I then tailored my code to put it in GUI form. The two programs give ...
3
votes
1answer
79 views

Something like a message digest but that progressively describes a file

I have a set of geographically remote nodes with heterogeneous operating systems which need to transfer files and updates around using a Java program I am writing. At present I need to send the entire ...
0
votes
1answer
502 views

S/MIME verification with x509 certificate

I have some problems with verifying S/Mime signed message with x509 certificate. This is my code: public class verifyMsg { private static void verify(SMIMESignedParser s) throws Exception { ...
0
votes
3answers
175 views

How is an MD5 or SHA-X hash different from an encryption?

I've read a couple times that MD5 is not an encryption, e.g. on MD5 ... Encryption? or Command Line Message Digest Utility. Well, I get that it's a hash/message digest, and the explanation in the ...
1
vote
1answer
460 views

Is there a way to shorten a java.security.MessageDigest generated value?

If I generate a message digest (for a security feature in my app) using this Java code: java.security.MessageDigest saltDigest = MessageDigest.getInstance("SHA-256"); ...
4
votes
3answers
2k views

will java messagedigest generated different MD5 hash on different jdk version?

I am using java message digest to create MD5 hash, which is used for authentication. The MD5 hash is stored in the database as varchar2. I did a test to create a user on my tomcat server on my local ...
0
votes
1answer
286 views

HMAC-Whirlpool implementation in Android

Has anyone implemented or using Hmac-Whirlpool on Android phone? I found whirlpool.java on internet but default security provider in Android SDK seems not to have Whirlpool nor Hmac-Whirlpool.
2
votes
1answer
1k views

Java equivalent for PHP's pack function

I have a sample application which generates a SHA1 hash in PHP as follows. base64_encode(pack('H*', sha1($pass))); I tried to achieve the same in Java, but so far, the output is different. The ...
3
votes
3answers
1k views

protocol to use password hashing with salt

I am trying to understand what information are needed to be sent in a web application . Basically I have a web app running on a web server , a database which has a user table with hashed password and ...
0
votes
1answer
162 views

Do I need to pass the MessageDigest object from register to login?

Ok, I'm a little confused. I'm trying to use MessageDigest to store my passwords in the database as MD5 hashes, and then pull the hash out to check a user's password when they try to log in. So, when ...
0
votes
1answer
208 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 ...
2
votes
2answers
357 views

Get sha1 message digest from plaintext+private key in delphi

I want to create a Sha1 message digest, and it should use my private key as input along with the plain text. Everything I have found so far either dont use a private key or just take a lot of ...
2
votes
2answers
330 views

Collision Attacks, Message Digests and a Possible solution

I've been doing some preliminary research in the area of message digests. Specifically collision attacks of cryptographic hash functions such as MD5 and SHA-1, such as the Postscript example and X.509 ...
15
votes
2answers
6k 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 ...
2
votes
3answers
828 views

How to set MessageDigest seed?

The MessageDigest class implements the SHA-1 algorithm (among many others). The SHA-1 algorithm allows one to use different "seeds" or initial digests. See SHA-1 Psuedocode The algorithm ...
6
votes
6answers
739 views

construct a unique number for a string in java

We have a requirement of reading/writing more than 10 million strings into a file. Also we do not want duplicates in the file. Since the strings would be flushed to a file as soon as they are read we ...
13
votes
6answers
818 views

When is it safe to use a broken hash function?

It is trivial to use a secure hash function like SHA256 and continuing to use md5 for security is reckless behavior. However, there are some complexities to hash function vulnerabilities that I ...
0
votes
2answers
132 views

Verifying file digests

Say I have 'n' number of files, for each of which I have CRC32, MD5 and SHA1 digests Now these 'n' number of files are actually split files/archives of single large file. When these smaller files ...
6
votes
4answers
7k views

c# fast hash calculation

I'm looking for a c# wrapper to a native MD5 or SHA1 library to improve hash calculation performance. Previously I switched SharpZipLib to zlib and got more than 2x performance boost. (ok, you've to ...