Tagged Questions
The digest tag has no wiki summary.
14
votes
4answers
2k views
What are the chances that two messages have the same MD5 digest and the same SHA1 digest?
Given two different messages, A and B (maybe 20-80 characters of text, if size matters at all), what is the probability that the MD5 digest of A is the same as the MD5 digest of B and the SHA1 digest ...
9
votes
3answers
1k views
How can I do digest authentication with HttpWebRequest?
Various articles (1, 2) I discovered make this look easy enough:
WebRequest request = HttpWebRequest.Create(url);
var credentialCache = new CredentialCache();
credentialCache.Add(
new Uri(url), // ...
6
votes
3answers
273 views
Creating an md5 hash of a number, string, array, or hash in Ruby
I need to create a signature string for a variable in Ruby, where the variable can be a number, a string, a hash, or an array. The hash values and array elements can also be any of these types.
This ...
5
votes
1answer
197 views
Issue with securing RTMP streams from Level3 CDN
I am currently dealing with securing rtmp streams from Level3 CDN.
The documentation can be found here:
https://rapidshare.com/files/1450549534/Token_Components.html
(looks like you need to be ...
5
votes
1answer
370 views
MessageDigest SHA-512 different than openssl
I can't figure out what I'm doing wrong here. I have the following code:
byte[] digest = new byte[0];
MessageDigest md = null;
try{
md = MessageDigest.getInstance( "SHA-512" );
}
catch( ...
5
votes
1answer
1k views
HTTP Digest Authentication
I want to use HTTP Digest Authentication with a central database that stores usernames and encrypted passwords. These data should be used by different servers like Apache httpd or Tomcat for example. ...
5
votes
3answers
3k views
HTTP Digest Authentication versus SSL
What is the difference between HTTP Digest Authentication and SSL from a performance, security and flexibility point of view?
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
1answer
134 views
Hashing with ironclad and flexi-streams
I'm trying to hash some strings in a Common Lisp app I'm working on. The sd-sha1 package seems to be unsupported, and has been for some time judging by the CLiki page, which suggests using Ironclad ...
4
votes
1answer
2k views
Glassfish Security - jdbcRealm: How to configure login with SHA-256 digest
I use jdbcRealm for security in my glassfish v3.0.1 b22. It is set up so that it use the USER table inside my database for authentication by following this blog: ...
3
votes
2answers
793 views
How can I calculate the SHA-256 hash of a string in Android?
I'm trying to get the SHA256 of a string in Android.
Here is the PHP code that I want to match:
echo bin2hex(mhash(MHASH_SHA256,"asdf"));
//outputs ...
3
votes
2answers
308 views
Base-36 representation of Digest
I would like to be able to take an arbitrary string, run it through a hashing function (like MD5), and then interpret the resulting digest in base-36.
I know there already exists a Digest library in ...
3
votes
1answer
422 views
Custom Digest Authentication
I've made a Http module for digest authentication. On the server, on every request for a page this module check for existing of 'authenticate' header. If this header doesn't exist the user will get ...
3
votes
2answers
121 views
As of 2011, what hash algo is the most suitable for message digest?
I'm a bit conflicted with an answer when I google for this, as these algos are constantly improving and new exploits are being found and new issues come up all the time... a lot of advice on what algo ...
3
votes
1answer
327 views
cxf client authorization issue
I use JAXRSClientFactory.create method to create proxy like this:
IMyService myService
= JAXRSClientFactory.create("http://myserviceurl/", IMyService.class, "login1", "pwd", null);
and this code ...
3
votes
2answers
392 views
Differences between Oracle and tomcat md5 hash?
when using oracle forms to generate md5 hash, i get result that is different from the result given by tomcat.
when using tomcat digest, i get:
C:\apache-tomcat-6.0.26\bin>digest -a md5 mypass
...
3
votes
3answers
8k views
Example of SOAP request authenticated with WS-UsernameToken
I'm trying to authenticate a SOAP request using WS-UsernameToken spec, but the target device is always denying access. My non-working request looks like this. (The password I'm trying to hash is ...
3
votes
3answers
3k views
XML Signature: How to calculate the digest value?
I have an XML like this
<?xml version="1.0" encoding="utf-8"?>
<foo>
<bar>
<value>A</value>
</bar>
<bar>
<value>B</value>
...
3
votes
2answers
5k views
Implement Digest authentication via HttpWebRequest in C#
Does anyone know how to screen scrape web-sites that use digest http authentication?
I use code like this:
var request = (HttpWebRequest)WebRequest.Create(SiteUrl);
request.Credentials=new ...
2
votes
0answers
55 views
A way to authenticate SOAP clients through digest (java)
I'm on programming a WebService in Java EE and need to secure the connection. For this purpose i will use https. But I need to authenticate the user, who calls the webservice. The hardware which ...
2
votes
1answer
70 views
Using digest authentication for user login
I am building an REST API using Phils RESTserver (PHP).
For the time being I am going to use Digest Authentication then oAuth.
Using Digest, one must supply username and password. Is it wrong to use
...
2
votes
2answers
991 views
PHP Digest HTTP Authentication example not working, why?
So I decided to use digest HTTP authentication for my REST API. I googled it and found an entry in the PHP manual with an example of how to do it. So I copy the script, put it in index.php on my ...
2
votes
2answers
463 views
What's the best way to generate a short hash string from a longer string
I'm trying to create short non-colliding strings from longer strings in Ruby. What's the best way to do this? Base64 encode a MD5 hash?
This is the use case:
loop do
key = ...
2
votes
1answer
191 views
How does digest authentication prevents replay attacks?
I found many questions on stackoverflow which has a mention about digest authentication. I could not find on how does the digest authentication prevent replay attacks? I use the fiddler tool to ...
2
votes
1answer
340 views
Looking for a way to get HTTP Digest Authentication headers from incoming http requests
I've been working on a REST implementation with my existing Cake install, and it's looking great except that I want to use HTTP Digest Authentication for all requests (Basic Auth won't cut it). So ...
2
votes
2answers
445 views
Setting up a weekly digest in Sharepoint
I'm currently working on a MOSS 2007 site and i need to set up a "system" which will e-mail all the changes in all the lists and libraries in the site.
I'm new to the Sharepoint world, i wonder if it ...
2
votes
2answers
215 views
Why does Digest::SHA come up with different hashes than those shown in RFC 4868?
I'm trying to write some Perl to inter operate with hash functions in other languages, namely Java at this point. We have found what is presumably a correct source, RFC 4868 which includes some test ...
2
votes
3answers
432 views
Best general-purpose digest function?
When writing an average new app in 2009, what's the most reasonable digest function to use, in terms of security and performance? (And how can I determine this in the future, as conditions change?)
...
2
votes
2answers
213 views
Is there a service that can take a feed and produce a daily digest from it?
I run a feed aggregator (http://planetdb2.com/) and I need to aggregate both prolific (many posts a day) and less prolific (one post a day at most) feeds.
Creating a daily digest -- one post summary ...
1
vote
1answer
24 views
How to prepare digested passwords for Tomcat JDBCRealm?
In example here http://tomcat.apache.org/tomcat-7.0-doc/realm-howto.html#JDBCRealm the type of user_pass column is varchar(15), while java.security.MessageDigest class takes and returns byte[]. Which ...
1
vote
2answers
69 views
Digest::CRC32 with Zlib
In my code, I need to hash files using a variety of algorithms, including CRC32. Since I'm also using other cryptographic hash functions in the Digest family, I thought it would be nice to maintain a ...
1
vote
1answer
44 views
iphone md5 generates different string as generated by Ruby on Rails
My iphone code donot generate same hex-string as generated by Ruby on Rails.
My Ruby Code:
hash = Digest::MD5.digest('aaa')
hexMd5FromRuby = Digest::MD5.hexdigest( hash)
iPhone Code:
...
1
vote
3answers
69 views
PHP rewriting password hashing function what algo to use?
I'm rewriting my password hashing function.
It currently uses sha1.
I'm thinking about using sha512.
Am I right to think that sha512 is sha2?
Is this currently the standard for hashing passwords ...
1
vote
1answer
84 views
Strategies for email frequency configuration in a rails app
I'm looking forward to allowing my users configure their email notifications frequency.
I'd like to offer them the typical options: direct email, daily and weekly digests
¿What would it be the best ...
1
vote
1answer
101 views
Apache Digest/Basic Login Through PHP
I'm trying to figure out if there is a way to get PHP to log into Apache for a user. So if the user supplies a valid username and password on an HTML form, PHP would login with credentials. So, ...
1
vote
3answers
712 views
HttpClient 4.1.1 returns 401 when authenticating with NTLM, browsers work fine
I'm trying to use the Apache/Jakarta HttpClient 4.1.1 to connect to an arbitrary web page using the given credentials. To test this, I have a minimal install of IIS 7.5 on my dev machine running ...
1
vote
1answer
203 views
Digest a message and best encoding from byte[] to String
Situation
I am using Bouncy Castle API in my C# project. I need to hash a String using Org.BouncyCastle.Crypto
My Sample
String msg = "Message to Hash";
MD5Digest dig = new MD5Digest();
byte[] ...
1
vote
2answers
65 views
Message Digest Strength: Concatenation vs Iteration
If I have 3 fields that get exposed "in the clear", and I want to digitally sign these fields to make sure that they're not tampered with using a secure hash function. I have 2 options:
I can ...
1
vote
1answer
317 views
zootool api authorization
I'm trying to add a page to my zootool page via the api ( http://zootool.com/api/docs/add ) with java. For this i need to use digest authentication.
A php example is given for the authorization of ...
1
vote
2answers
241 views
digest HTTP Authentication using iPhone programming?
I'm trying to connect to an webservice using digest HTTP Authentication through iPhone programming.Is it possible through iPhone.Please provide a link or sample code for this type of authentication.
...
1
vote
1answer
577 views
Calculate SHA1 digest in Ruby of a Bignum
I have this code in C that use openssl library to calculate the SHA1 digest of a bignumber.
How I can translate this code in Ruby?
#include <stdio.h>
#include <openssl/sha.h>
#include ...
1
vote
3answers
211 views
convert digest to base10
Is it possible to take a digest created like
my $digest = Digest::SHA->new('sha1')->add('hello')->digest;
and then convert $digest to base10 (instead of hex or base64?) or could you split ...
1
vote
2answers
404 views
What are the advantages of Digest::SHA over Digest::SHA1?
Are there any advantages in using Digest::SHA over Digest::SHA1 or vice versa? both seem to be maintained but I don't see a reason for Digest::SHA1 to even exist with the existence of Digest::SHA.
1
vote
0answers
515 views
WCF digest Authentication
What should be specified on the client side?
Is this enough:
binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.Digest;
//...
cf.Credentials.HttpDigest.ClientCredential = ...
1
vote
1answer
551 views
Tomcat Digest with Manager WebApp
I'm trying to get a digest password setup for the tomcat manager application.
I've got
<Realm className="org.apache.catalina.realm.UserDatabaseRealm"
resourceName="UserDatabase" ...
1
vote
3answers
262 views
What c# equivalent encoding does Python's hash.digest() use?
I am trying to port a python program to c#. Here is the line that's supposed to be a walkthrough but is currently tormenting me:
hash = hashlib.md5(inputstring).digest()
After generating a similar ...
1
vote
2answers
284 views
How to create a SHA1 digest on a tree of objects?
Let's say that I have a tree of objects of which every one have a string representation. I want to create a SHA1 digest on the whole tree.
The easiest way would be to recursively go over each node ...
1
vote
1answer
537 views
HTTP Digest Authentication Fails With URL Parameters (CakePHP)
I have a RESTful API set up and working with CakePHP using mapResources() and parseExtensions(). Authentication is handled by CakePHP's security component using HTTP Digest Authentication.
Everything ...
1
vote
2answers
332 views
How to handle correctly HTTP Digest Authentication on iPhone
I'm trying to upload a file onto my personal server.
I've written a small php page that works flawlessy so far.
The little weird thing is the fact that I generate all the body of the HTTP message ...
1
vote
1answer
860 views
HttpClient commons-httpclient Digest Authentication
I am getting this error from a PostMethod using commons-httpclient
No credentials available for DIGEST 'realm'@localhost
and a 401 back from the server.
I followed the example from this post
java ...