active questions tagged digest - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T01:12:23Zhttp://stackoverflow.com/feeds/tag/digesthttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2245320/xml-signature-how-to-calculate-the-digest-value2XML Signature: How to calculate the digest value?acnsehttp://stackoverflow.com/users/2528162010-02-11T15:07:46Z2010-02-12T12:00:38Z
<p>I have an XML like this</p>
<pre><code><?xml version="1.0" encoding="utf-8"?>
<foo>
<bar>
<value>A</value>
</bar>
<bar>
<value>B</value>
</bar>
<baz>
<value>C</value>
</baz><Signature xmlns="http://www.w3.org/2000/09/xmldsig#"><SignedInfo><CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315" /><SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1" /><Reference URI=""><Transforms><Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature" /><Transform Algorithm="http://www.w3.org/2001/10/xml-exc-c14n#" /></Transforms><DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" /><DigestValue>WqpRWHxXA0YgH+p3Sxy6hRo1XIk=</DigestValue></Reference></SignedInfo><SignatureValue>EoRk/GhR4UA4D+8AzGPPkeim1dZrlSy88eF73n/T9Lpeq9IxoGRHNUA8FEwuDNJuz3IugC0n2RHQQpQajiYvhlY3XG+z742pgsdMfFE4Pddk4gF1T8CVS1rsF7bjX+FKT/c8B2/C8FNgmfkxDlB/ochtbRvuAGPQGtgJ3h/wjSg=</SignatureValue><KeyInfo><X509Data><X509Certificate>MIIB8zCCAVygAwIBAgIQgfzbrIjhLL9FobStI2ub3zANBgkqhkiG9w0BAQQFADATMREwDwYDVQQDEwhUZXN0ZUFjbjAeFw0wMDAxMDEwMDAwMDBaFw0zNjAxMDEwMDAwMDBaMBMxETAPBgNVBAMTCFRlc3RlQWNuMIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDO+yAZ8/qJbhSVH/+2wMmzix3jM/CExb6sTgaiPwe6ylcHgF45zeQDq06OSJZCSns34em/ULINZddDf8z0b9uk/2sOGr1pYqsunLLBvw2FkvWJQDkhx2SzCm8v4xGX2kyXNbjiY/K56oPOMjpayKoAFnnvk7p2iFAxNZK/6lpZ7wIDAQABo0gwRjBEBgNVHQEEPTA7gBCOOHcajwnATYZ0t6w7LVU0oRUwEzERMA8GA1UEAxMIVGVzdGVBY26CEIH826yI4Sy/RaG0rSNrm98wDQYJKoZIhvcNAQEEBQADgYEABL9Qhi6f1Z+/t8oKXBQFx3UUsNF9N2o4k6q1c3CKZYqx2E/in+nARIYRdh5kbeLfomi6GIyVFeXExp8crob3MAzOQMvXf9+ByuezimMPIHDvv0u3kmmeITXfoZrHCDxLoWWlESN1owBfKPqe7JKAuu9ORDC0pUiUfCHWxCoqNos=</X509Certificate></X509Data></KeyInfo></Signature>
</foo>
</code></pre>
<p>How the digest value (WqpRWHxXA0YgH+p3Sxy6hRo1XIk=) in the reference is created? I mean how can I compute this value manually?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/2244642/setting-up-a-weekly-digest-in-sharepoint2Setting up a weekly digest in Sharepointfrbryhttp://stackoverflow.com/users/2535912010-02-11T13:19:26Z2010-02-12T11:01:38Z
<p>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.</p>
<p>I'm new to the Sharepoint world, i wonder if it is possible.</p>
<p>P.S. I have no access to the Central Administration panel. (If it has anything to do with my purpose)</p>
<p>Thanks</p>
http://stackoverflow.com/questions/2193993/are-there-algorithms-for-putting-a-digest-into-the-file-being-digested0Are there algorithms for putting a digest into the file being digested?Crazy Chenzhttp://stackoverflow.com/users/718652010-02-03T17:36:47Z2010-02-03T17:51:10Z
<p>Are there algorithms for putting a digest into the file being digested?</p>
<p>In otherwords, are there algorithms or libraries, or is it even possible to have a hash/digest of a file contained in the file being hashed/digested. This would be handy for obvious reasons, such as built in digests of ISOs. I've tried googling things like "MD5 injection" and "digest in a file of a file." No luck (probably for good reason.)</p>
<p>Not sure if it is even mathematically possible. Seems you'd be able to roll through the file but then you'd have to brute the last bit (assuming the digest was the last thing in the file or object.)</p>
<p>Thanks,
Chenz</p>
http://stackoverflow.com/questions/2160956/cant-connect-to-a-tls-web-service-using-c-and-digest-authentication-firefox-su0Can't connect to a TLS web service using C# and digest authentication, Firefox succeeds where IE8 failsnewthhttp://stackoverflow.com/users/1097972010-01-29T09:23:53Z2010-01-29T09:39:57Z
<p>Hi all,</p>
<p>I'm trying to connect to a web service using C# and digest authentication, but every time I got the <code>401 - Not Authorized</code> error. But when I try to reach the service over Firefox, everything's OK. When I use IE8, my password is not accepted and I got a 401. </p>
<p>Do you have any ideas? Thanks for the help.</p>
<p>Here's the test code I'm using:</p>
<pre><code> ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
ServicePointManager.ServerCertificateValidationCallback
= delegate(object s, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors) { return true; };
Uri uri = new Uri(URL);
NetworkCredential netCredential = new NetworkCredential(username, password);
CredentialCache cache = new CredentialCache();
cache.Add(URL, 443, "Digest", netCredential);
WebRequest request = WebRequest.Create(URL);
request.Credentials = cache;
request.PreAuthenticate = true;
request.Method = "POST";
WebResponse response;
try
{
response = request.GetResponse();
Stream stream = response.GetResponseStream();
StreamReader reader = new StreamReader(stream);
string result = reader.ReadToEnd();
Response.Write(result);
response.Close();
reader.Close();
}
catch (Exception ex)
{
Response.Write("Error: " + ex.Message + "<br/><br/><br/>");
Response.Write("Request Headers<br/><br/>");
WebHeaderCollection headers = request.Headers;
// Get each header and display each value.
foreach (string key in headers.AllKeys)
{
string value = headers[key];
Response.Write(key + ": " + value);
Response.Write("<br/><br/>");
}
}
</code></pre>
http://stackoverflow.com/questions/2109308/http-digest-authentication0HTTP Digest Authenticationdeamonhttp://stackoverflow.com/users/2381342010-01-21T12:59:53Z2010-01-21T16:15:10Z
<p>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. The clients will be humans with browsers and other applications communicating in a RESTful way.</p>
<p>As far as I understand I could not use a table with hashed passwords. It is only possibly to store <a href="http://en.wikipedia.org/wiki/Digest_access_authentication#Overview" rel="nofollow">HA1 = MD5(username:realm:password)</a> where a clear text password is required - correct?</p>
<p>On the other hand it seems to be possible to use hashed passwords with Apache httpd:</p>
<p><a href="http://httpd.apache.org/docs/2.2/mod/mod_authn_dbd.html" rel="nofollow">Apache httpd doc</a> says:</p>
<blockquote>
<p>The first column value of the first
row returned by the query statement
should be a string containing the
encrypted password.</p>
</blockquote>
<p>Does it work with digest authentication? There is no parameter to specify the hash algorithm. How does Apache httpd decide which algorithm to use?</p>
<p><a href="http://www.ietf.org/rfc/rfc2617.txt" rel="nofollow">RFC 2617</a> says:</p>
<blockquote>
<p>4.13 Storing passwords</p>
<p>Digest authentication requires that
the authenticating agent (usually
the server) store some data derived
from the user's name and password
in a "password file" associated with a
given realm. Normally this might
contain pairs consisting of username
and H(A1), where H(A1) is the
digested value of the username, realm,
and password as described above.</p>
</blockquote>
<p>It sounds like the password has to be clear text.</p>
<p>The Servlet 3.0 spec says:</p>
<blockquote>
<p>Although passwords are not sent on the
wire, HTTP Digest authentication
requires that clear text password
equivalents be avaialble to the
authenticating container so that it
can validate received authenticators
by calculating the expected digest.</p>
</blockquote>
<p>What is the "clear text password equivalent" here? The password hash?</p>
<p><a href="http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html#Digested%20Passwords" rel="nofollow">Tomcat documentation</a> says:</p>
<blockquote>
<p>If using digested passwords with
DIGEST authentication, the cleartext
used to generate the digest is
different. In the examples above
{cleartext-password} must be replaced
with
{username}:{realm}:{cleartext-password}.
For example, in a development
environment this might take the form
testUser:localhost:8080:testPassword.</p>
</blockquote>
<p>Here is a clear text password required. </p>
<p>So, can HTTP Digest authentication be used with already encrypted passwords or have the passwords to be clear text?</p>
<p>Must the user re-enter his credentials if he requests a page from a different subdomain?</p>
<p>Does the browser delete the cached password when the tab is closed or only when the whole is closed? Maybe this differs from browser to browser - I'd be interested in which browser delete it and which keep it.</p>
<p>The overall question is, whether digest authentication is suitable for my scenario with a central user db with already encrypted passwords. Or should I better use session based single sign on service?</p>
http://stackoverflow.com/questions/2053655/how-to-check-two-hashed-passwords-are-the-same1How to check two hashed passwords are the same?Vladimirhttp://stackoverflow.com/users/2494172010-01-13T00:55:52Z2010-01-13T02:25:52Z
<p>Hello,</p>
<p>I'm writing a program where I use MD5 to hash login details before I send them to a server, but there I have to compare it to a blowfish (jBCrypt) hashed password retrieved from a database.</p>
<p>jBCrypt uses:</p>
<pre><code>if (BCrypt.checkpw("candidatePassword", hashedPwd)) {
// they are the same
}
</code></pre>
<p>The problem is that, I don't have a candidate password to test. How can I have both secure transmission of my login details and secure storage of these details on the database. What is the best way to approach this?</p>
<p>I use username, timestamp, random bytes and password to create my md5 digest value.</p>
<p>Thanks,
Vladimir</p>
http://stackoverflow.com/questions/357939/example-of-using-authtype-digest-to-authenticate-a-user-once-across-sub-domains0Example of using AuthType Digest to authenticate a user once across sub-domains?ABreretonhttp://stackoverflow.com/users/430402008-12-10T23:09:35Z2009-12-30T04:20:58Z
<p>Hi there.</p>
<p>I have a domain that will be accessed by a small, private group of people. So I want to control access via authentication.</p>
<p>The domain has a collection of applications installed that each have their own sub-domain. Eg: domain.com, app1.domain.com, app2.domain.com, app3.domain.com</p>
<p>I'd love to have a single sign-on solution so they don't have to authenticate themselves for each application. Also, the applications are written in different languages (PHP, Python and Perl) so authenticating users through an Apache module is ideal.</p>
<p>I am new to digest authentication, but it seems like a good solution. I have used <code>htdigest</code> to create my users. I have configured my domain and sub-domains (See below).</p>
<p>If I go to the domain or any of the sub-domains it will prompt for a username and password. If I enter a correct username and password, it will authenticate me and the page will load. However, if I go to another sub-domain, it will ask for me to enter a username and password again. If I enter the same username and password, it will work.</p>
<p>So the password file is OK, and authentication is OK, but the problem seems to lie in the configuration of the <code>AuthDigestDomain</code>.</p>
<p>I have searched all over the net to find an example of using Digest authentication on multiple domains, but I cannot find a specific example that solves my problem.</p>
<p>I am hoping someone here can assist. Do I put the same authentication information in every <code>Directory</code>? Should I be using <code>Directory</code> or <code>Location</code> or <code>Files</code>? Have I missed something all-together?</p>
<p>Thanks in advance!</p>
<p>Below is an example of my Apache config for domain.com:</p>
<pre><code><Directory /var/www>
AuthType Digest
AuthName "realm"
AuthDigestAlgorithm MD5
AuthDigestDomain / http://domain.com/ http://app1.domain.com/ http://app2.domain.com/ http://app3.domain.com/
AuthDigestNcCheck Off
AuthDigestNonceLifetime 0
AuthDigestQop auth
AuthDigestProvider file
AuthUserFile /etc/apache2/.htpasswd-digest
AuthGroupFile /dev/null
Require valid-user
</Directory>
</code></pre>
<p>And here is an example of app1.domain.com:</p>
<pre><code><Directory /var/lib/app1>
AuthType Digest
AuthName "realm"
AuthDigestAlgorithm MD5
AuthDigestDomain / http://domain.com/ http://app1.domain.com/ http://app2.domain.com/ http://app3.domain.com/
AuthDigestNcCheck Off
AuthDigestNonceLifetime 0
AuthDigestQop auth
AuthDigestProvider file
AuthUserFile /etc/apache2/.htpasswd-digest
AuthGroupFile /dev/null
Require valid-user
</Directory>
</code></pre>
<p>To baffle things even further, this works when using IE6, but not Firefox or Chrome. Is it the clients not sending the authentication properly, or is is the server not sending the correct credentials?</p>
<p>I have also been reading up on <a href="http://www.faqs.org/rfcs/rfc2617.html" rel="nofollow">RFC 2617</a> and written the authentication headers using PHP to ensure that the request/response challenge is correct. This hasn't helped at all!</p>
http://stackoverflow.com/questions/1970465/https-digest-authentication0HTTPS & Digest AuthenticationNikhilhttp://stackoverflow.com/users/2001472009-12-28T17:10:56Z2009-12-28T19:21:43Z
<p>How to implement HTTPS with Digest Authentication in C#.Net? as per msdn, credential class has no support for SSL.. so how can we implement authentication? my code works with basic authentication but gives error with digest..</p>
http://stackoverflow.com/questions/288167/is-there-a-service-that-can-take-a-feed-and-produce-a-daily-digest-from-it2Is there a service that can take a feed and produce a daily digest from it?Leons Petrazickishttp://stackoverflow.com/users/374492008-11-13T20:24:58Z2009-12-15T17:50:47Z
<p>I run a feed aggregator (<a href="http://planetdb2.com/" rel="nofollow">http://planetdb2.com/</a>) and I need to aggregate both prolific (many posts a day) and less prolific (one post a day at most) feeds.</p>
<p>Creating a daily digest -- one post summary of the day's posts -- seems like the best solution.</p>
<p>There's a way to create a daily digest just for Twitter feeds via Yahoo Pipes, but it is neither general-purpose nor simple.</p>
<p>Feedburner will email you a daily digest, but it won't create a daily digest feed.</p>
<p>Is there an existing service that can take any feed and produce a daily? How do I use it?</p>
<p>Thanks,</p>
<p>Leons</p>
http://stackoverflow.com/questions/599048/http-digest-authentication-versus-ssl2HTTP Digest Authentication versus SSLGilihttp://stackoverflow.com/users/147312009-03-01T01:18:55Z2009-11-30T21:52:33Z
<p>What is the difference between <code>HTTP Digest Authentication</code> and <code>SSL</code> from a performance, security and flexibility point of view?</p>
http://stackoverflow.com/questions/1706644/client-digest-authentication-python-with-urllib2-will-not-remember-authorization1Client Digest Authentication Python with URLLIB2 will not remember Authorization Header InformationWally Livehttp://stackoverflow.com/users/2076372009-11-10T09:29:13Z2009-11-11T18:38:49Z
<p>I am trying to use Python to write a client that connects to a custom http server that uses digest authentication. I can connect and pull the first request without problem. Using TCPDUMP (I am on MAC OS X--I am both a MAC and a Python noob) I can see the first request is actually two http requests, as you would expect if you are familiar with RFC2617. The first results in the 401 UNAUTHORIZED. The header information sent back from the server is correctly used to generate headers for a second request with some custom Authorization header values which yields a 200 OK response and the payload.</p>
<p>Everything is great. My HTTPDigestAuthHandler opener is working, thanks to urllib2. </p>
<p>In the same program I attempt to request a second, different page, from the same server. I expect, per the RFC, that the TCPDUMP will show only one request this time, using almost all the same Authorization Header information (nc should increment).</p>
<p>Instead it starts from scratch and first gets the 401 and regenerates the information needed for a 200.</p>
<p>Is it possible with urllib2 to have subsequent requests with digest authentication recycle the known Authorization Header values and only do one request?</p>
<p>[Re-read that a couple times until it makes sense, I am not sure how to make it any more plain]</p>
<p>Google has yielded surprisingly little so I guess not. I looked at the code for urllib2.py and its really messy (comments like: "This isn't a fabulous effort"), so I wouldn't be shocked if this was a bug. I noticed that my Connection Header is Closed, and even if I set it to keepalive, it gets overwritten. That led me to keepalive.py but that didn't work for me either.</p>
<p>Pycurl won't work either.</p>
<p>I can hand code the entire interaction, but I would like to piggy back on existing libraries where possible.</p>
<p>In summary, is it possible with urllib2 and digest authentication to get 2 pages from the same server with only 3 http requests executed (2 for first page, 1 for second).</p>
<p>If you happen to have tried this before and already know its not possible please let me know. If you have an alternative I am all ears.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1467555/why-does-digestsha-come-up-with-different-hashes-than-those-shown-in-rfc-48682Why does Digest::SHA come up with different hashes than those shown in RFC 4868?Drew Stephenshttp://stackoverflow.com/users/173392009-09-23T17:44:23Z2009-09-23T21:14:18Z
<p>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, <a href="http://rfc-ref.org/RFC-TEXTS/4868/chapter2.html#sub7sub1" rel="nofollow">RFC 4868</a> which includes some test keys & strings along with their hashed values. I'm using the following snippet, and can't get Perl to come up with the same result. I can only assume that I'm using it incorrectly—can anyone point me in the right direction?</p>
<pre><code>use Digest::SHA qw(hmac_sha512_hex);
my $key = '0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b0b';
my $value = '4869205468657265';
print hmac_sha512_hex($value, $key);
</code></pre>
<p>The output is '4ef7 ... 5d40', though RFC 4868 (and my compatriot's Java implementation) returns '87aa ... 6854'</p>
http://stackoverflow.com/questions/1401947/cannot-build-cyrus-sasl-2-1-23-on-suse-linux-10-00Cannot build "cyrus-sasl-2.1.23" on SUSE Linux 10.0kadeshpahttp://stackoverflow.com/users/838132009-09-09T20:37:39Z2009-09-11T21:22:05Z
<p>I downloaded the source code from "ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/".</p>
<p>Configure went well but when i build I end up with following errors:</p>
<pre><code>digestmd5.c:852: error: 'des_context_t' has no member named 'keysched'
digestmd5.c:853: error: 'des_context_t' has no member named 'keysched2'
digestmd5.c:854: error: 'des_context_t' has no member named 'ivec'
digestmd5.c:855: error: 'DES_DECRYPT' undeclared (first use in this function)
</code></pre>
<p>....</p>
http://stackoverflow.com/questions/1049141/auth-digest-request-from-servlet1Auth (digest) request from Servletniklassaershttp://stackoverflow.com/users/802462009-06-26T13:30:42Z2009-08-27T20:00:02Z
<p>Hi guys,
I'm creating a small servlet. It's hosted at root, "/", and whatever comes after "/" is a resource, like "/myanim.swf". Most of the files are public, but some are private. For public files, they are just served, but for private files, I wish the browser to present an authentication box and have a Digest authentication sent back to the servlet, that can then verify it and serve the content. How should I implement the </p>
<pre><code>if(!file.isPublic())
</code></pre>
<p>part? Since I want the browser to do the authentication, I don't want to use j_security_check mechanism</p>
<p>Cheers</p>
<p>Nik</p>
http://stackoverflow.com/questions/1323013/what-are-the-chances-that-two-messages-have-the-same-md5-digest-and-the-same-sha110What are the chances that two messages have the same MD5 digest and the same SHA1 digest?John Siracusahttp://stackoverflow.com/users/1642009-08-24T15:17:36Z2009-08-26T19:15:50Z
<p>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 <em>and</em> the SHA1 digest of A is the same as the SHA1 digest of B? That is:</p>
<pre><code>(MD5(A) == MD5(B)) && (SHA1(A) == SHA1(B))
</code></pre>
<p>Assume no malicious intent, i.e., that the messages are not selected with an aim of finding a clash. I just want to know the odds of this happening naturally.</p>
<p>I'm thinking the chances are "astronomically low," but I'm not sure how to verify this.</p>
<p>More information: the size of the pool of possible messages is restricted, but large (several hundred million). Birthday paradox situations are exactly what I'm worried about.</p>
http://stackoverflow.com/questions/1244607/jdbcrealm-digest-for-mysql-password-function0JDBCRealm digest for MySQL PASSWORD() functionPlutorhttp://stackoverflow.com/users/530602009-08-07T13:07:34Z2009-08-10T13:20:43Z
<p>For an internal Tomcat/Java/Struts application, we're converting custom-written authentication code to use JDBCRealm. The database is MySQL 5.0, and the passwords are stored as <code>PASSWORD()</code>-encrypted strings. In our version of MySQL, the <a href="http://dev.mysql.com/doc/refman/5.1/en/password-hashing.html" rel="nofollow"><code>PASSWORD()</code> function</a> is a non-standard (proprietary?) 41-byte hash. (I know now that we shouldn't be using it for our passwords, but should instead be using <code>SHA1()</code> or <code>MD5()</code>. But here we are.)</p>
<p>Is there any way to use JDBMRealm without forcing all of our users to re-enter their passwords so we can re-encode them? Is there a JDBCRealm digest that will allow us to authenticate against a <code>PASSWORD()</code>-encoded password column?</p>
http://stackoverflow.com/questions/1147875/difference-in-sha512-between-python-hashlib-and-sha512sum-tool1Difference in SHA512 between python hashlib and sha512sum toolKIVhttp://stackoverflow.com/users/970992009-07-18T15:56:13Z2009-07-19T00:47:46Z
<p>I am getting different message digests from the linux 'sha512sum' tool and the python hashlib library.</p>
<p>Here is what I get on my Ubuntu 8.10:</p>
<pre><code>$ echo test | sha512sum
0e3e75234abc68f4378a86b3f4b32a198ba301845b0cd6e50106e874345700cc6663a86c1ea125dc5e92be17c98f9a0f85ca9d5f595db2012f7cc3571945c123 -
$ python
Python 2.5.2 (r252:60911, Oct 5 2008, 19:24:49)
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import hashlib
>>> hashlib.sha512("test").hexdigest()
'ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8e6f57f50028a8ff'
</code></pre>
<p>Both should calculate the message digest of the string "test", why do you think I am getting different results? </p>
http://stackoverflow.com/questions/996495/hash-collision-and-appending-data1hash collision and appending datamihihttp://stackoverflow.com/users/902032009-06-15T14:40:07Z2009-06-15T16:54:36Z
<p>Assume I have two strings (or byte arrays) A and B which both have the same hash (with hash I mean things like MD5 or SHA1). If I concatenate another string behind it, will A+C and B+C have the same hash H' as well? What happens to C+A and C+B?</p>
<p>I tested it with <a href="http://stackoverflow.com/questions/933497/create-your-own-md5-collisions">MD5</a> and in all my tests, appending something to the end made the hash the same, but appending at the beginning did not.</p>
<p>Is this always true (for all inputs)?</p>
<p>Is this true for all (well-known) hash functions? If no, is there a (well-known) hash function, where A+C and B+C will not collide (and C+A and C+B do not either)?</p>
<p>(besides from <code>MD5(x + reverse(x))</code> and other constructed stuff I mean)</p>
http://stackoverflow.com/questions/594323/implement-digest-authentication-via-httpwebrequest-in-c0Implement Digest authentication via HttpWebRequest in C#RaTThttp://stackoverflow.com/users/02009-02-27T11:01:15Z2009-05-07T18:17:25Z
<p>Hi all. Does anyone know how to screen scrape web-sites that use digest http authentication?
I use code like this:</p>
<pre><code>var request = (HttpWebRequest)WebRequest.Create(SiteUrl);
request.Credentials=new NetworkCredential(Login, Password)
</code></pre>
<p>I'm able to access the site's mainpage, but when I try to surf to any other pages (using another request with the same credentials) I get "HTTP/1.1 400 Bad Request" error.</p>
<p>I used Fiddler to compare requests of my C# application with Mozilla Firefox requests.</p>
<p>2 URLs that I try to access are:
https://mysiteurl/forum/index.php
https://mysiteurl/forum/viewforum.php?f=4&sid=d104363e563968b4e4c07e04f4a15203</p>
<p>Here are 2 requests () of my C# app:</p>
<pre><code>Authorization: Digest username="xxx",realm="abc",nonce="NXa26+NjBAA=747dfd1776c9d585bd388377ef3160f1ff265429",uri="/forum/index.php",algorithm="MD5",cnonce="89179bf17dd27785aa1c88ad976817c9",nc=00000001,qop="auth",response="3088821620d9cbbf71e775fddbacfb6d"
Authorization: Digest username="xxx",realm="abc",nonce="1h7T6+NjBAA=4fed4d804d0edcb54bf4c2f912246330d96afa76",uri="/forum/viewforum.php",algorithm="MD5",cnonce="bb990b0516a371549401c0289fbacc7c",nc=00000001,qop="auth",response="1ddb95a45fd7ea8dbefd37a2db705e3a"
</code></pre>
<p>And that's what Firefox sending to the server:</p>
<pre><code>Authorization: Digest username="xxx", realm="abc", nonce="T9ICNeRjBAA=4fbb28d42db044e182116ac27176e81d067a313c", uri="/forum/", algorithm=MD5, response="33f29dcc5d70b61be18eaddfca9bd601", qop=auth, nc=00000001, cnonce="ab96bbe39d8d776d"
Authorization: Digest username="xxx", realm="abc", nonce="T9ICNeRjBAA=4fbb28d42db044e182116ac27176e81d067a313c", uri="/forum/viewforum.php?f=4&sid=d104363e563968b4e4c07e04f4a15203", algorithm=MD5, response="a996dae9368a79d49f2f29ea7a327cd5", qop=auth, nc=00000002, cnonce="e233ae90908860e1"
</code></pre>
<p>So in my app I have different values in "nonce" field while in Firefox this field is the same. On the other hand I have same values in "nc" field while Firefox increments this field.</p>
<p>Also when my app tries to access site pages in Fiddler i can see that it always gets response "HTTP/1.1 401 Authorization Required", while Firefox authorizes only once. I've tried to set request.PreAuthenticate = true; but it seems to have no effect...</p>
<p>My question is: how to properly implement digest authentication using C#? Are there any standard methods or do I have to do it from scratch? Thanks in advance.</p>
http://stackoverflow.com/questions/604792/best-general-purpose-digest-function2Best general-purpose digest function?Anirvanhttp://stackoverflow.com/users/311002009-03-03T01:38:09Z2009-03-03T02:27:22Z
<p>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?)</p>
<p>When <a href="http://stackoverflow.com/questions/116684/what-algorithm-should-i-use-to-hash-passwords-into-my-database">similar</a> <a href="http://stackoverflow.com/questions/184089/what-is-the-strongest-hashing-algorithm-commonly-available-today">questions</a> <a href="http://stackoverflow.com/questions/287517/encrypting-hashing-plain-text-passwords-in-database">were</a> <a href="http://stackoverflow.com/questions/657/encrypting-passwords">asked</a> previously, answers have included SHA1, SHA2, SHA-256, SHA-512, MD5, bCrypt, and Blowfish.</p>
<p>I realize that to a great extent, any one of these could work, if used intelligently, but I'd rather not roll a dice and pick one randomly. Thanks.</p>
http://stackoverflow.com/questions/362461/why-would-hmac-sha-1-return-a-different-digest-with-the-same-input5Why would HMAC SHA-1 return a different digest with the same input?Alex Reynoldshttp://stackoverflow.com/users/194102008-12-12T10:50:35Z2008-12-12T21:10:00Z
<p>I am trying to build a working encrypted signature for the Amazon S3 web service, writing a connection library using Objective C. </p>
<p>I have run into HMAC SHA-1 digest problems with the ObjC code, so I'm putting that to the side and looking at existing, working Perl code, to try to troubleshoot digest creation.</p>
<p>I am testing HMAC SHA-1 digest output from the <code>s3ls</code> command of the <code>Net::Amazon::S3</code> package and comparing that against the <code>_encode</code> subroutine that I pulled out and put into its own perl script:</p>
<pre><code>#!/usr/bin/perl -w
use MIME::Base64 qw(encode_base64);
use Digest::HMAC_SHA1;
use String::Escape qw( printable unprintable );
sub _ascii_to_hex {
(my $str = shift) =~ s/(.|\n)/sprintf("%02lx", ord $1)/eg;
return $str;
}
sub _encode {
my ( $aws_secret_access_key, $str ) = @_;
print "secret key hex: "._ascii_to_hex($aws_secret_access_key)."\n";
my $hmac = Digest::HMAC_SHA1->new($aws_secret_access_key);
$hmac->add($str);
my $digest = $hmac->digest;
print "cleartext hex: "._ascii_to_hex($str)."\n";
print "digest hex: "._ascii_to_hex($digest)."\n";
my $b64 = encode_base64( $digest, '' );
print "encoded: ".$b64."\n";
}
my $secret = "abcd1234";
my $cleartext = "GET\n\n\nFri, 12 Dec 2008 10:08:51 GMT+00:00\n/";
_encode($secret, $cleartext);
</code></pre>
<p>Here is sample output from this script:</p>
<pre><code>$ ./testhmac.pl
secret key hex: 6162636431323334
cleartext hex: 4745540a0a0a4672692c2031322044656320323030382031303a30383a353120474d542b30303a30300a2f
digest hex: 63308f9b8a198440d6d8685a3f3f70d0aab02f68
encoded: YzCPm4oZhEDW2GhaPz9w0KqwL2g=
</code></pre>
<p>What I am testing is that, if I input the same secret key and cleartext into the same <code>_encode</code> function of the <code>Net::Amazon::S3</code> package, I should see the very same secret key, cleartext, and digest bytes.</p>
<p>Indeed, I get the same bytes for the secret key and cleartext.</p>
<p>But I get something different for the digest (and of course the base64 encoding), e.g.:</p>
<pre><code>$ s3ls --access-key=foobar --secret-key=abcd1234
...
secret key hex: 6162636431323334
cleartext hex: 4745540a0a0a4672692c2031322044656320323030382031303a30383a353120474d542b30303a30300a2f
digest hex: c0da50050c451847de7ed055c5286de584527a22
encoded: wNpQBQxFGEfeftBVxSht5YRSeiI=
</code></pre>
<p>I have verified that the secret key and clear text are the same input to both scripts. The encoding subroutine is virtually identical in both scripts (except for an unused argument passed to the subroutine, which I remove from my custom version).</p>
<p>What would cause the HMAC SHA-1 digest to be computed differently in both cases, if the input bytes and <code>_encode</code> subroutine are the same?</p>
<p>(I have also verified the two scripts against the test cases at <a href="http://www.faqs.org/rfcs/rfc2202.html" rel="nofollow">RFC 2201</a>.)</p>
http://stackoverflow.com/questions/331695/creating-an-id-from-name-and-address-data-hash-digest1Creating an id from name and address data. Hash/Digestuser42203http://stackoverflow.com/users/422032008-12-01T18:13:19Z2008-12-03T07:16:30Z
<p>My problem:</p>
<p>I'm looking for a way to represent a person's name and address as an encoded id. The id should contain only alpha-numeric characters, be collision-proof, and be represented in a smallest number of characters possible. My first thought was to simply use a cryptographic hash function like MD5 or SHA1, but this seems like overkill (security isn't important - doesn't need to be one-way) and I'd prefer to find something that would produce a shorter id. Does anyone know of an existing algorithm that fits this problem?</p>
<p>In other words, what is the best way to implement the following function so that the return value is the same consistently for the same input, collisions are unlikely, and ids are less than 20 characters?</p>
<pre><code>>>> make_fake_id(fname = 'Oscar', lname = 'Grouch', stnum = '1', stname = 'Sesame', zip = '12345')
N1743123734
</code></pre>
<p>Application Context (for those that are interested):</p>
<p>This will be used for a <a href="http://en.wikipedia.org/wiki/Record_linkage_problem" rel="nofollow">record linkage app</a>. Given an input name and address we search a very large database for the best match and return the database id and other data (how we do this is not important here). If there isn't a match I need to generate this psuedo/generated/derived id from the search input (entity's name and address data). Every search record should result in an output record with either a real (the actual database id resulting from a match/link) or this generated psuedo/generated/derived id. The psuedo id will be prefixed with a character (e.g. N) to differentiate it from a real id.</p>
http://stackoverflow.com/questions/235493/is-my-ocaml-implementation-of-sha256-sane-1Is my OCaml implementation of SHA256 sane?mbac32768http://stackoverflow.com/users/184462008-10-24T22:36:57Z2008-10-24T23:47:09Z
<p>I'm a novice OCaml programmer and thought I would throw myself into the deep end by attempting to implement a very tricky algorithm. I'm open to all criticisms great and small be they stylistic or security or performance related. </p>
<p>One criticism that I'm already aware of is that the algorithm requires the entire message to fit in memory (whereas the reference implementation of SHA256 can process a block at a time).</p>
<p>I'm especially concerned about if any of the recursive-functions are not tail-recursive.</p>
<p>I have tested the code and it does produce proper message digests on x86_64 Linux.</p>
<p>Thanks in advance for your consideration.</p>
<h1>Edit:</h1>
<p>Should nothing jump out at you please don't spend too much time here. I'm looking for obviously broken behavior, not rewrites.</p>
<pre><code>let as_bytes bits =
match (bits mod 8) with
| 0 -> (bits / 8)
| _ -> failwith "as_bytes: bits must be multiple of 8"
let as_bits bytes = bytes * 8
let k = [|
0x428a2f98l; 0x71374491l; 0xb5c0fbcfl; 0xe9b5dba5l;
0x3956c25bl; 0x59f111f1l; 0x923f82a4l; 0xab1c5ed5l;
0xd807aa98l; 0x12835b01l; 0x243185bel; 0x550c7dc3l;
0x72be5d74l; 0x80deb1fel; 0x9bdc06a7l; 0xc19bf174l;
0xe49b69c1l; 0xefbe4786l; 0x0fc19dc6l; 0x240ca1ccl;
0x2de92c6fl; 0x4a7484aal; 0x5cb0a9dcl; 0x76f988dal;
0x983e5152l; 0xa831c66dl; 0xb00327c8l; 0xbf597fc7l;
0xc6e00bf3l; 0xd5a79147l; 0x06ca6351l; 0x14292967l;
0x27b70a85l; 0x2e1b2138l; 0x4d2c6dfcl; 0x53380d13l;
0x650a7354l; 0x766a0abbl; 0x81c2c92el; 0x92722c85l;
0xa2bfe8a1l; 0xa81a664bl; 0xc24b8b70l; 0xc76c51a3l;
0xd192e819l; 0xd6990624l; 0xf40e3585l; 0x106aa070l;
0x19a4c116l; 0x1e376c08l; 0x2748774cl; 0x34b0bcb5l;
0x391c0cb3l; 0x4ed8aa4al; 0x5b9cca4fl; 0x682e6ff3l;
0x748f82eel; 0x78a5636fl; 0x84c87814l; 0x8cc70208l;
0x90befffal; 0xa4506cebl; 0xbef9a3f7l; 0xc67178f2l
|]
let hash s =
let add_int32 x y = Int32.add x y in
let left_int32 x n = Int32.shift_left x n in
let right_int32 x n = Int32.shift_right_logical x n in
let or_int32 x y = Int32.logor x y in
let xor_int32 x y = Int32.logxor x y in
let and_int32 x y = Int32.logand x y in
let not_int32 x = Int32.lognot x in
let rotate x n = (or_int32 (right_int32 x n) (left_int32 x (32 - n))) in
let shift x n = right_int32 x n in
let ch x y z = xor_int32 (and_int32 x y) (and_int32 (not_int32 x) z) in
let maj x y z = (xor_int32 (and_int32 x y) (xor_int32 (and_int32 x z) (and_int32 y z))) in
let sum0 x = (xor_int32 (rotate x 2) (xor_int32 (rotate x 13) (rotate x 22))) in
let sum1 x = (xor_int32 (rotate x 6) (xor_int32 (rotate x 11) (rotate x 25))) in
let rh00 x = (xor_int32 (rotate x 7) (xor_int32 (rotate x 18) (shift x 3))) in
let rh01 x = (xor_int32 (rotate x 17) (xor_int32 (rotate x 19) (shift x 10))) in
let as_bytes bits =
match (bits mod 8) with
| 0 -> (bits / 8)
| _ -> failwith "as_bytes: bits must be multiple of 8"
in
let as_bits bytes = bytes * 8 in
let sha = [|
0x6a09e667l;
0xbb67ae85l;
0x3c6ef372l;
0xa54ff53al;
0x510e527fl;
0x9b05688cl;
0x1f83d9abl;
0x5be0cd19l
|]
in
let message = Buffer.create (as_bytes 512) in (* smallest possible buffer is at least 512 bits *)
begin
Buffer.add_string message s;
let original_length = as_bits (Buffer.length message) in
Buffer.add_char message '\x80'; (* append '1' bit *)
let pad_start = as_bits (Buffer.length message) in
let pad_blocks = if (original_length mod 512) < 448 then 1 else 2 in
let message_length = ((original_length / 512) + pad_blocks) * 512 in
begin (* appending k bits of 0 (where message_length-64 is our k) *)
for i = as_bytes pad_start to (as_bytes (message_length - (as_bytes 64)))-8 do
Buffer.add_char message '\x00'
done;
Buffer.add_buffer message (Bin.pack64 (Int64.of_int original_length))
end
end;
let rec process_block i blocks =
let array_of_block i =
let boff = i*(as_bytes 512) in
let to_int32 x = (Int32.of_int (int_of_char x)) in
let w = Array.make (as_bytes 512) 0l in
begin
for t = 0 to 15 do
w.(t) <- (or_int32 (left_int32 (to_int32 (Buffer.nth message (boff + (t*4 )))) 24)
(or_int32 (left_int32 (to_int32 (Buffer.nth message (boff + (t*4+1)))) 16)
(or_int32 (left_int32 (to_int32 (Buffer.nth message (boff + (t*4+2)))) 8)
(to_int32 (Buffer.nth message (boff + (t*4+3)))) )));
done;
for t = 16 to 63 do
w.(t) <- add_int32 (add_int32 (rh01 w.(t-2)) w.(t-7)) (add_int32 (rh00 w.(t-15)) w.(t-16))
done;
w
end
in
if i = blocks then
let sha256 = Buffer.create (as_bytes 256) in
let rec pack_sha256 i =
match i with
| 8 -> Buffer.contents sha256
| _ ->
begin
Buffer.add_buffer sha256 (Bin.pack32 sha.(i));
pack_sha256 (i+1)
end
in pack_sha256 0
else
begin
let w = array_of_block i in
let tem = [| 0l; 0l |] in
begin
let a = ref sha.(0) in
let b = ref sha.(1) in
let c = ref sha.(2) in
let d = ref sha.(3) in
let e = ref sha.(4) in
let f = ref sha.(5) in
let g = ref sha.(6) in
let h = ref sha.(7) in
for t = 0 to 63 do
begin
tem.(0) <- add_int32 (add_int32 !h (sum1 !e)) (add_int32 (ch !e !f !g) (add_int32 k.(t) w.(t)));
tem.(1) <- add_int32 (sum0 !a) (maj !a !b !c);
h := !g;
g := !f;
f := !e;
e := add_int32 !d tem.(0);
d := !c;
c := !b;
b := !a;
a := add_int32 tem.(0) tem.(1);
end
done;
sha.(0) <- add_int32 sha.(0) !a;
sha.(1) <- add_int32 sha.(1) !b;
sha.(2) <- add_int32 sha.(2) !c;
sha.(3) <- add_int32 sha.(3) !d;
sha.(4) <- add_int32 sha.(4) !e;
sha.(5) <- add_int32 sha.(5) !f;
sha.(6) <- add_int32 sha.(6) !g;
sha.(7) <- add_int32 sha.(7) !h;
(* good faith attempt to clear memory *)
for i = 0 to 63 do w.(t) <- 0 done;
tem.(0) <- 0; tem.(1) <- 0;
a := 0; b := 0; c := 0; d := 0; e := 0; f := 0; g := 0; h := 0;
end;
process_block (i+1) blocks
end
in process_block 0 ((Buffer.length message) / (as_bytes 512))
let hexdigits s =
let rec hexdigits_inner hx i =
match i with
| 32 -> hx
| _ -> hexdigits_inner (hx ^ (Printf.sprintf "%02x" (int_of_char s.[i]))) (i+1)
in
hexdigits_inner "" 0
</code></pre>
<p>The pack functions, defined in a separate file, are thus:</p>
<pre><code>let pack64 x =
let b = Buffer.create 8 in
for i = 0 to 7 do
let shft = (7-i)*8 in
Buffer.add_char b (char_of_int (Int64.to_int (Int64.logand (Int64.shift_right x shft) 0xFFL)));
done;
b
let pack x n =
if (n mod 8) = 0 then
let n' = n/8 in
let b = Buffer.create n' in
for i = 0 to n'-1 do
let shft = ((n'-1)-i)*8 in
Buffer.add_char b (char_of_int (Int32.to_int (Int32.logand (Int32.shift_right x shft) 0xFFl)));
done;
b
else
raise (Invalid_argument ("pack: " ^ (string_of_int n) ^ " is not a multiple of 8"))
let pack32 x = pack x 32
let pack16 x = pack x 16
let pack8 x = pack x 8
</code></pre>