active questions tagged hash - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T05:56:13Z http://stackoverflow.com/feeds/tag/hash http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashes 0 How can I get the second-level keys in a Perl hash-of-hashes? Przemek 2009-12-03T12:15:41Z 2009-12-03T17:35:16Z <p>I need to get all of the values for a certain key in a hash. The hash looks like this:</p> <pre><code>$bean = { Key1 =&gt; { Key4 =&gt; 4, Key5 =&gt; 9, Key6 =&gt; 10, }, Key2 =&gt; { Key7 =&gt; 5, Key8 =&gt; 9, }, }; </code></pre> <p>I just need the values to <code>Key4</code>, <code>Key5</code> and <code>Key6</code> for example. The rest is not the point of interest. How could I get the values?</p> <p>Update: So I don't have a <code>%bean</code> I just add the values to the <code>$bean</code> like this:</p> <pre><code> $bean-&gt;{'Key1'}-&gt;{'Key4'} = $value; </code></pre> <p>hope this helps.</p> http://stackoverflow.com/questions/1837438/can-you-have-hash-tables-in-lisp 1 Can you have hash tables in lisp? Juanjo Conti 2009-12-03T03:26:42Z 2009-12-03T16:36:13Z <p>Can you have hash tables or dicts in Lisp? I mean the data structure that is a collection of pairs (key, value) where values can be acceded using keys.</p> http://stackoverflow.com/questions/1830597/collision-resolution-quadratic-probing-vs-separate-chaining 1 Collision Resolution : Quadratic Probing vs. Separate Chaining John 2009-12-02T04:10:15Z 2009-12-03T14:37:11Z <p>Ok, so I've been doing some experiments with hash tables and different collision resolution problems. I'm trying to figure out which is more efficient for doing finds, a hash table that uses separate chaining or quadratic probing for collision resolution. My results suggest that separate chaining is faster than quadratic probing even for small load factors such as 0.4 or 0.2. Is this the case or are my results wrong? </p> http://stackoverflow.com/questions/996843/when-is-crc-more-appropriate-to-use-than-md5-sha1 9 When is CRC more appropriate to use than MD5/SHA1? Gili 2009-06-15T15:43:51Z 2009-12-03T08:36:56Z <p>When is it appropriate to use CRC for error detection versus more modern hashing functions such as MD5 or SHA1? Is the former easier to implement on embedded hardware?</p> http://stackoverflow.com/questions/1817394/a-clear-explanation-of-difference-between-a-hash-and-hash-reference-in-perl 3 A clear explanation of difference between a Hash and Hash Reference in Perl. ajay 2009-11-30T01:02:46Z 2009-12-03T04:31:54Z <p>Hi,</p> <p>I would like to properly understand Hashes in Perl. I've had to use Perl intermittently for quite some time and mostly whenever I need to do it, it's mostly related to text processing.</p> <p>And everytime, I have to deal with Hashes, it gets messed up. I find the syntax very cryptic for hashes</p> <p>A good explanation of Hashes and Hash references, their differences, when they are required etc. would be much appreciated.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1836609/comparing-two-pdf-documents-that-are-digitized-faxes 1 Comparing two PDF documents that are digitized faxes AlanK 2009-12-02T23:24:27Z 2009-12-03T01:04:30Z <p>I did a fair bit of looking around on the board before I posted here but I didn't see anything that captured what I was hoping to do.</p> <p>We receive a large number of inbound faxes (500+ pages/day) as separate documents (around 100+ documents/day). Quite often the sender (being a hospital) resends the same document a couple hours after the first try. I'd like to flag the second send as a "potential clone" so that it can be routed and flagged appropriately.</p> <p>I want to know how I can compute and tag with some sort of hash or ID on each arriving fax (PDF/TIFF) then quickly do a scan in our document DB to see if it's unique or not.</p> <p>Obviously there is no way without looking to be 100% sure but off the top of my head I'm thinking that one fax would be the same as another if:</p> <ul> <li>Same # of pages</li> <li>Sent within 24 hours of original</li> <li>Hash code is similar (within threshold)</li> </ul> <p>But I am getting a bit bogged down on the image compare. I am looking for a threshold hash code or some way to say "the images on p4 of each fax are 95% likely to be the same". It's possible, for example, that p4 of the original fax was skewed but p4 of the resent fax is straight. I was thinking of running all the fax pages through something like Inlite Research's ClearImage Repair first to straighten, rotate, and calibrate all pages.</p> <p>Has anyone done something like this?</p> http://stackoverflow.com/questions/1835815/hash-tables-optimization 2 Hash tables optimization Flavius 2009-12-02T21:07:02Z 2009-12-02T21:13:06Z <p>Hi</p> <p>In several hash table implementations I've seen the usage of heuristics like "transpose" or "move to front" for items in a bucket.</p> <ol> <li>What are the advantages of using such heuristics? I could't figure it out myself.</li> <li>Which other optimizations can be done at the hash table / bucket level, why, and under which circumstances?</li> </ol> <p>Optimizing hashing functions aside, please.</p> http://stackoverflow.com/questions/1835155/a-way-to-generate-a-signature-or-a-hash-of-an-image-in-asp-net-for-duplicate-dete 1 A way to generate a signature or a hash of an image in ASP.NET for duplicate detection? Kris 2009-12-02T19:13:41Z 2009-12-02T20:56:53Z <p>Hey guys, I run a rather large site where my members add thousands of images every day. Obviously there is a lot of duplication and i was just wondering if during an upload of an image i can somehow generate a signature or a hash of an image so i can store it. And every time someone uploads the picture i would simply run a check if this signature already exists and fire an error stating that this image already exists. Not sure if this kind of technology already exists for asp.net but i am aware of tineye.com which sort of does it already.</p> <p>If you think you can help i would appreciate your input.</p> <p>Kris</p> http://stackoverflow.com/questions/1834666/in-which-header-file-c-stl-hash-function-object-is-declared 0 In which header file c++ STL hash function object is declared? raj_arni 2009-12-02T17:54:39Z 2009-12-02T18:09:42Z <p>If I want to use the hash function object provided in STL, which header file I should include on Linux? e.g. hash Hf;</p> http://stackoverflow.com/questions/1829219/dynamically-create-arrays-in-ruby 0 Dynamically Create Arrays in Ruby michaelmichael 2009-12-01T21:56:32Z 2009-12-01T22:38:23Z <p>Is there a way to dynamically create arrays in Ruby? For example, let's say I wanted to loop through an array of books as input by a user:</p> <p><code>books = gets.chomp</code></p> <p>The user inputs:</p> <pre><code>"The Great Gatsby, Crime and Punishment, Dracula, Fahrenheit 451, Pride and Prejudice, Sense and Sensibility, Slaughterhouse-Five, The Adventures of Huckleberry Finn" </code></pre> <p>I turn this into an array:</p> <pre><code>books_array = books.split(", ") </code></pre> <p>Now, for each book the user input, I'd like to Ruby to create an array. Pseudo-code to do that:</p> <pre><code> x = 0 books_array.count.times do x += 1 puts "Please input weekly sales of #{books_array[x]} separated by a comma." weekly_sales = gets.chomp.split(",") end </code></pre> <p>Obviously this doesn't work. It would just re-define <code>weekly_sales</code> over and over again. Is there a way to achieve what I'm after, and with each loop of the <code>.times</code> method create a new array?</p> http://stackoverflow.com/questions/1828908/storing-a-sha512-password-hash-in-database 1 Storing a SHA512 Password Hash in Database stamp 2009-12-01T21:02:44Z 2009-12-01T21:16:43Z <p>In my ASP.NET web app I'm hashing my user passwords with SHA512.</p> <p>Despite much SO'ing and Googling I'm unclear how I should be storing them in the database (SQL2005) - the code below shows the basics of how I'm creating the hash as a string and I'm currently inserting it into the database into a Char(88) column as that seems to be the length created consistently</p> <p>Is holding it as a String the best way to do it, if so will it always be 88 chars on a SHA512 (as I have seen some bizarre stuff on Google)? </p> <pre><code> Dim byteInput As Byte() = Encoding.UTF8.GetBytes(sSalt &amp; sInput) Dim hash As HashAlgorithm = New SHA512Managed() Dim sInsertToDatabase As String = Convert.ToBase64String(hash.ComputeHash(byteInput)) </code></pre> http://stackoverflow.com/questions/1825998/whats-the-meaning-of-the-hashes-at-enumerations 0 What's the meaning of the hashes at Enumerations? ApoY2k 2009-12-01T12:48:44Z 2009-12-01T12:50:48Z <p>I use <code>GhostDoc</code> for the XML-Documentation of my code, and it has a neat "auto-document"-function I use quite often, so now I used it on an enumeration and it came up with some strange hash-code I don't quite understand.</p> <p>What is it for? Looks sort of like this:</p> <p><code>{35A90EBF-F421-44A3-BE3A-47C72AFE47FE}</code></p> http://stackoverflow.com/questions/1825300/perl-passing-arguments-to-a-subroutine-as-hash-key-value-pairs-problem 0 Perl - passing arguments to a subroutine as hash key-value pairs problem kk 2009-12-01T10:26:42Z 2009-12-01T11:32:08Z <p>I have to pass two references as arguments to a subroutine (buildRanges) as hash key-value pairs as show below </p> <p>Example:</p> <pre><code>@array = (“0A0”, “005”, “001”, “004”, “0BC”, “004”, “002”, “001”); @ranges = (); $numRanges = buildRanges(VALUES =&gt; \@array, REF_RANGES=&gt;\@ranges); </code></pre> <p>My question is<br> 1. is the syntax for the sub-routine call above is correct?<br> 2. what are VALUES and REF_RANGES?</p> <p>franckly speaking, i couldnt understand the sub-routine call, but i have been told to use that call only.</p> <p>Thanks.</p> <p>KK</p> http://stackoverflow.com/questions/1823758/turning-a-hash-into-a-string-of-name-value-pairs 1 Turning a hash into a string of name-value pairs jerhinesmith 2009-12-01T03:10:58Z 2009-12-01T06:14:02Z <p>If I'm turning a ruby hash into a string of name-value pairs (to be used in HTTP params, for example), is this the best way?</p> <pre><code># Define the hash fields = {"a" =&gt; "foo", "b" =&gt; "bar"} # Turn it into the name-value string http_params = fields.map{|k,v| "#{k}=#{v}"}.join('&amp;') </code></pre> <p>I guess my question is:</p> <p>Is there an easier way to get to <code>http_params</code>? Granted, the above way works and is fairly straightforward, but I'm curious if there's a way to get from the hash to the string without first creating an array (the result of the <code>map</code> method)?</p> http://stackoverflow.com/questions/1822598/getting-url-hash-location-and-using-it-in-jquery 2 Getting URL hash location, and using it in jQuery Robbie White 2009-11-30T21:44:00Z 2009-11-30T21:53:18Z <p>Heya guys.</p> <p>I'd like to get the value after a hash in the URL of the current page and then be able to apply this in a new function... eg.</p> <p>The URL could be</p> <pre><code>www.example.com/index.html#foo </code></pre> <p>And I would like to use this in conjunction with the following piece of code</p> <pre><code> $('ul#foo:first').show(); </code></pre> <p>I'm kinda assuming/hoping there is some way of grabbing this, and turning it into a variable that I can then use in the second piece of code.</p> <p>Any help would be massively appreciated!</p> <p>Cheers</p> http://stackoverflow.com/questions/1822021/why-does-hash-new-hide-hash-members 5 Why does Hash.new({}) hide hash members? Mladen Jablanović 2009-11-30T19:54:05Z 2009-11-30T20:10:01Z <p>Ok, so I wanted to create a hash which has an empty hash as the default value. A bit weird, I know, but let's say that I thought it might be useful.</p> <p>So here's what I did:</p> <pre><code>&gt;&gt; a = Hash.new({}) =&gt; {} &gt;&gt; a[:a][:b] = 5 =&gt; 5 &gt;&gt; a =&gt; {} &gt;&gt; a[:a] =&gt; {:b=&gt;5} &gt;&gt; a.keys =&gt; [] &gt;&gt; a.size =&gt; 0 &gt;&gt; a[:a].size =&gt; 1 </code></pre> <p>In other words, I don't see hash member when I inspect the hash, but I can access it by its key.</p> <p>Is this expected behavior? What is going on here?</p> <p>BTW, this is Ruby 1.9.1, haven't tried earlier versions.</p> <p>Edit: simplified example as it doesn't have to be a hash of hashes of hashes...</p> http://stackoverflow.com/questions/1820451/ruby-style-how-to-check-whether-a-nested-hash-element-exists 2 Ruby Style: How to check whether a nested hash element exists Todd R 2009-11-30T15:22:34Z 2009-11-30T16:47:14Z <p>Consider a "person" stored in a hash. Two examples are:</p> <pre><code>fred = {:person =&gt; {:name =&gt; "Fred", :spouse =&gt; "Wilma", :children =&gt; {:child =&gt; {:name =&gt; "Pebbles"}}}} slate = {:person =&gt; {:name =&gt; "Mr. Slate", :spouse =&gt; "Mrs. Slate"}} </code></pre> <p>If the "person" doesn't have any children, the "chilren" element is not present. So, for Mr. Slate, we can check whether he has parents:</p> <pre><code>slate_has_children = !slate[:person][:children].nil? </code></pre> <p>So, what if we don't know that "slate" is a "person" hash? Consider:</p> <pre><code>dino = {:pet =&gt; {:name =&gt; "Dino"}} </code></pre> <p>We can't easily check for children any longer:</p> <pre><code>dino_has_children = !dino[:person][:children].nil? NoMethodError: undefined method `[]' for nil:NilClass </code></pre> <p>So, how would you check the structure of a hash, especially if it is nested deeply (even deeper than the examples provided here)? Maybe a better question is: What's the "Ruby way" to do this?</p> http://stackoverflow.com/questions/1818134/hashing-function-for-four-unsigned-integers-c 0 Hashing function for four unsigned integers (C++) GenTiradentes 2009-11-30T06:23:18Z 2009-11-30T15:39:12Z <p>I'm writing a program right now which produces four unsigned 32-bit integers as output from a certain function. I'm wanting to hash these four integers, so I can compare the output of this function to future outputs.</p> <p>I'm having trouble writing a decent hashing function though. When I originally wrote this code, I threw in a simple addition of each of the four integers, which I knew would not suffice. I've tried several other techniques, such as shifting and adding, to no avail. I get a hash, but it's of poor quality, and the function generate a ton of collisions.</p> <p>The hash output can be either a 32-bit or 64-bit integer. The function in question generates many billions of hashes, so collisions are a real problem here, and I'm willing to use a larger variable to ensure that there are as few collisions as possible.</p> <p>Can anyone help me figure out how to write a quality hash function?</p> http://stackoverflow.com/questions/1780879/convert-xml-collection-of-pivotal-tracker-stories-to-ruby-hash-object 0 Convert XML collection (of Pivotal Tracker stories) to Ruby hash/object mlambie 2009-11-23T02:51:01Z 2009-11-30T04:01:57Z <p>I have a collection of stories in an XML format. I would like to parse the file and return each story as either hash or Ruby object, so that I can further manipulate the data within a Ruby script.</p> <p>Does <a href="http://nokogiri.org" rel="nofollow">Nokogiri</a> support this, or is there a better tool/library to use?</p> <p>The XML document has the following structure, returned via <a href="http://www.pivotaltracker.com/help/api" rel="nofollow">Pivotal Tracker's web API</a>:</p> <pre><code>&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;stories type="array" count="145" total="145"&gt; &lt;story&gt; &lt;id type="integer"&gt;16376&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/16376&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;accepted&lt;/current_state&gt; &lt;description&gt;A description&lt;/description&gt; &lt;name&gt;Receivable index listing will allow selection viewing&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;owned_by&gt;Tony Superman&lt;/owned_by&gt; &lt;created_at type="datetime"&gt;2009/11/04 15:49:43 WST&lt;/created_at&gt; &lt;accepted_at type="datetime"&gt;2009/11/10 11:06:16 WST&lt;/accepted_at&gt; &lt;labels&gt;index ui,receivables&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17427&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17427&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;&lt;/description&gt; &lt;name&gt;Validations in wizards based on direction&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:52:06 WST&lt;/created_at&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17426&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17426&lt;/url&gt; &lt;estimate type="integer"&gt;2&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;Manual payment needs a description field.&lt;/description&gt; &lt;name&gt;Add description to manual payment&lt;/name&gt; &lt;requested_by&gt;Tony Superman&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/17 15:10:41 WST&lt;/created_at&gt; &lt;labels&gt;payment process&lt;/labels&gt; &lt;/story&gt; &lt;story&gt; &lt;id type="integer"&gt;17636&lt;/id&gt; &lt;story_type&gt;feature&lt;/story_type&gt; &lt;url&gt;http://www.pivotaltracker.com/story/show/17636&lt;/url&gt; &lt;estimate type="integer"&gt;3&lt;/estimate&gt; &lt;current_state&gt;unscheduled&lt;/current_state&gt; &lt;description&gt;The SMS and email templates needs to be editable by merchants.&lt;/description&gt; &lt;name&gt;Notifications are editable by the merchant&lt;/name&gt; &lt;requested_by&gt;Matthew McBoggle&lt;/requested_by&gt; &lt;created_at type="datetime"&gt;2009/11/19 16:44:08 WST&lt;/created_at&gt; &lt;/story&gt; &lt;/stories&gt; </code></pre> http://stackoverflow.com/questions/1813078/restricting-user-password-character-set 1 Restricting user password character set stamp 2009-11-28T17:06:22Z 2009-11-29T09:54:56Z <p>Working on a login system - the point where customer chooses their password for site access. </p> <p>Beyond using RegEx to ensure that the password is strong enough, normally on our system all data that will wind up in the database is checked against injection etc and a reasonably restricted character set is enforced on all fields. I don't really want a particularly restrictive character set for the password, as I think it is a bit of an anti-pattern on security to control it too much. </p> <p>However in the case of the password, I'll be hashing it with a salted SHA-512 for insert anyway which raises a handful of questions:</p> <ul> <li><p>Is there any point whatsoever in restricting the character set that the customer can use in the password - ie am I exposed to any vulnerabilities outside of injection which I am assuming would be circumvented completely by the hashing?</p></li> <li><p>There must be negatives to an allow-all approach - I can think of the fact that in the future what is an innocent combination now could become a dangerous one - is that a real concern, and are there others I may have missed?</p></li> <li><p>Are there any characters/strings that must be rejected - would they get through the native ASP.NET protection anyway?</p></li> <li><p>A bit more subjective maybe, but given it is a SHA-512 hash - is there any point in restricting the maximum length of password that the user can choose (within reasonable parameters), assuming that a password of significant size/complexity could raise a warning to confirm that they do want to set it.</p></li> </ul> <p>Thanks for your help.</p> <p>EDIT: This is an ASP.NET web application accessing a MSSQL2008 database using ADO.NET (not LINQ/EF).</p> http://stackoverflow.com/questions/1813822/is-this-snippet-creating-an-anonymous-perl-hash 0 Is this snippet creating an anonymous Perl hash? Geo 2009-11-28T21:24:21Z 2009-11-28T22:29:18Z <p>While reading the snippets provided by <a href="http://search.cpan.org/~corion/WWW-Mechanize-FormFiller-0.10/lib/WWW/Mechanize/FormFiller.pm" rel="nofollow">FormFiller</a> ( where I kinda got by accident ) , I noticed this line:</p> <pre><code>$f-&gt;add_filler( password =&gt; Interactive =&gt; []); </code></pre> <p>Is this <code>password =&gt; Interactive =&gt; []</code> equivalent to <code>{"password" =&gt; {"Interactive"=&gt;[]}}</code>? If not, what does it become?</p> http://stackoverflow.com/questions/1805940/rails-storing-host-password-for-ftp-model 0 Rails storing host password for FTP model Trevor Hartman 2009-11-26T22:27:19Z 2009-11-27T13:46:13Z <p>I'm building a rails app that communicates with other servers via ftp. The user needs to input their host, username and password for their particular ftp server. I wouldn't want to store their password as cleartext, but I need the actual password to connect to the server when it comes time. Would it make sense to use a two-way hash?</p> <p>I found a few implementations that might do the job:<br> <a href="http://crypt.rubyforge.org/blowfish.html" rel="nofollow">http://crypt.rubyforge.org/blowfish.html</a><br> <a href="http://crypt.rubyforge.org/blowfish.html" rel="nofollow">http://crypt.rubyforge.org/rijndael.html</a><br> <a href="http://ezcrypto.rubyforge.org/" rel="nofollow">http://ezcrypto.rubyforge.org/</a></p> <p>Thanks,<br> Trevor</p> http://stackoverflow.com/questions/1802094/using-a-hash-function-to-give-a-memorable-personality-to-objects 2 Using a hash function to give a memorable personality to objects cool-RR 2009-11-26T07:33:33Z 2009-11-26T07:40:56Z <p>(Note: The project is in Python.)</p> <p>I'm running a simulation in which I have many objects that I want to show on the screen and manipulate with. There needs to be a way to identify each object, because they'll be moving from place to place abruptly and I want to be able to track which object moved where.</p> <p>What I've been thinking is, to every object I'll generate a "personality". A couple of colors, and an english name, and I'll put that as the object representation on the GUI. I figured that a hash function will be used to make these colors and names, but I've never worked with hash functions.</p> <p>How can I do what I want to do?</p> http://stackoverflow.com/questions/1797774/is-the-value-returned-by-rubys-hash-the-same-across-interpreter-instances 1 Is the value returned by ruby's #hash the same across interpreter instances? nicholaides 2009-11-25T15:39:12Z 2009-11-25T16:18:19Z <p>Is the value returned by ruby's #hash the same across interpreter instances?</p> <p>For example, if I do <code>"some string".hash</code>, will I always get the same number even if run in different instances of the interpreter? If so, is this also true for all the builtin types (e.g. <code>Hash</code>, <code>FixNum</code>, etc).</p> http://stackoverflow.com/questions/1795970/how-does-this-php-nonce-library-work 0 How does this PHP nonce library work? bobo 2009-11-25T10:20:51Z 2009-11-25T10:20:51Z <p>From <a href="http://fullthrottledevelopment.com/php-nonce-library#download" rel="nofollow">http://fullthrottledevelopment.com/php-nonce-library#download</a>, there is a PHP nonce library, but there are a few things that I don't know understand. The first one is that it reminds us to set a value for the <code>FT_NONCE_UNIQUE_KEY</code> but it never uses it in any of its functions.</p> <p>The second thing is, when I call the <code>ft_nonce_create_query_string</code> function, wait for a few seconds and then call it again with the same parameters, both calls return the same value. This is strange, I really don't understand how it can make sure for each nonce it generates, the nonce will be valid for the duration specified in the <code>FT_NONCE_DURATION</code>. </p> <p>But if I wait for longer time before the second call, they will return different value. I have pasted the codes <a href="http://codepad.org/cy4VvE2v" rel="nofollow">here</a> so that you can try to run it directly.</p> <p>Why is it like this? How is it supposed to work?</p> <pre><code>&lt;?php /* * Name: FT-NONCE-LIB * Created By: Full Throttle Development, LLC (http://fullthrottledevelopment.com) * Created On: July 2009 * Last Modified On: August 12, 2009 * Last Modified By: Glenn Ansley (glenn@fullthrottledevelopment.com) * Version: 0.2 */ /* Copyright 2009 Full Throttle Development, LLC This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;. */ define( 'FT_NONCE_UNIQUE_KEY' , '' ); define( 'FT_NONCE_DURATION' , 300 ); // 300 makes link or form good for 5 minutes from time of generation define( 'FT_NONCE_KEY' , '_nonce' ); // This method creates a key / value pair for a url string function ft_nonce_create_query_string( $action = '' , $user = '' ){ return FT_NONCE_KEY."=".ft_nonce_create( $action , $user ); } // This method creates an nonce for a form field function ft_nonce_create_form_input( $action = '' , $user='' ){ echo "&lt;input type='hidden' name='".FT_NONCE_KEY."' value='".ft_nonce_create( $action . $user )."' /&gt;"; } // This method creates an nonce. It should be called by one of the previous two functions. function ft_nonce_create( $action = '' , $user='' ){ return substr( ft_nonce_generate_hash( $action . $user ), -12, 10); } // This method validates an nonce function ft_nonce_is_valid( $nonce , $action = '' , $user='' ){ // Nonce generated 0-12 hours ago if ( substr(ft_nonce_generate_hash( $action . $user ), -12, 10) == $nonce ){ return true; } return false; } // This method generates the nonce timestamp function ft_nonce_generate_hash( $action='' , $user='' ){ $i = ceil( time() / ( FT_NONCE_DURATION / 2 ) ); return md5( $i . $action . $user . $action ); } if ( FT_NONCE_UNIQUE_KEY == '' ){ die( 'You must enter a unique key on line 2 of ft_nonce_lib.php to use this library.'); } ?&gt; </code></pre> http://stackoverflow.com/questions/1782033/convert-perl-script-to-python-dedupe-2-files-based-on-hash-keys 0 Convert Perl script to Python: dedupe 2 files based on hash keys galaxywatcher 2009-11-23T09:31:19Z 2009-11-25T09:50:13Z <p>I am new to Python and would like to know if someone would kindly convert an example of a fairly simple Perl script to Python? </p> <p>The script takes 2 files and outputs only unique lines from the second file by comparing hash keys. It also outputs duplicate lines to a file. I have found that this method of deduping is extremely fast with Perl, and would like to see how Python compares.</p> <pre><code>#! /usr/bin/perl ## Compare file1 and file2 and output only the unique lines from file2. ## Opening file1.txt and store the data in a hash. open my $file1, '&lt;', "file1.txt" or die $!; while ( &lt;$file1&gt; ) { my $name = $_; $file1hash{$name}=$_; } ## Opening file2.txt and store the data in a hash. open my $file2, '&lt;', "file2.txt" or die $!; while ( &lt;$file2&gt; ) { $name = $_; $file2hash{$name}=$_; } open my $dfh, '&gt;', "duplicate.txt"; ## Compare the keys and remove the duplicate one in the file2 hash foreach ( keys %file1hash ) { if ( exists ( $file2hash{$_} )) { print $dfh $file2hash{$_}; delete $file2hash{$_}; } } open my $ofh, '&gt;', "file2_clean.txt"; print $ofh values(%file2hash) ; </code></pre> <p>I have tested both perl and python scripts on 2 files of over 1 million lines and total time was less than 6 seconds. For the business purpose this served, the performance is outstanding!</p> <p>I modified the script Kriss offered and I am very happy with both results: 1) The performance of the script and 2) the ease with which I modified the script to be more flexible:</p> <pre><code>#!/usr/bin/env python import os filename1 = raw_input("What is the first file name to compare? ") filename2 = raw_input("What is the second file name to compare? ") file1set = set([line for line in file(filename1)]) file2set = set([line for line in file(filename2)]) for name, results in [ (os.path.abspath(os.getcwd()) + "/duplicate.txt", file1set.intersection(file2set)), (os.path.abspath(os.getcwd()) + "/" + filename2 + "_clean.txt", file2set.difference(file1set))]: with file(name, 'w') as fh: for line in results: fh.write(line) </code></pre> http://stackoverflow.com/questions/1793105/how-do-i-access-the-arrays-element-stored-in-my-hash-in-perl 4 How do I access the array's element stored in my hash in Perl? kunjaan 2009-11-24T21:40:48Z 2009-11-24T22:09:24Z <pre><code> # I have a hash my %my_hash; # I have an array @my_array = ["aa" , "bbb"]; # I store the array in my hash $my_hash{"Kunjan"} = @my_array; # But I can't print my array's element print $my_hash{"Kunjan"}[0]; </code></pre> <p>I am new to Perl. Please help me.</p> http://stackoverflow.com/questions/1757419/check-if-the-user-changed-data 0 Check if the user changed data Mathias Fritsch 2009-11-18T16:52:00Z 2009-11-24T16:19:08Z <p>When a user registers at our site we check the address with an address validation service. This service can return an address suggestion if the entered address is found but has some errors. This sugggestion is returned to the user.</p> <p>The user can accept the suggestion and is trusted. If he changes the address he is not trusted.</p> <p>Is there a good way to check if the data displayed to the user is the same as the data he posts? I guess I need a hidden field with the hash of the addressdata. But I am not shure which algorithm I should take. The algorithm should be case insensitive if possible.</p> <p>The algorithm should create a tamper-proof oneway hash.</p> <p>EDIT:</p> <p>This worked pretty well so far. I still have to test with umlaute (ä,ü ).</p> <pre><code> StringBuilder addressData = new StringBuilder(); addressData.Append(FirstName); addressData.Append(LastName); addressData.Append(StreetNumber); addressData.Append(StreetName); addressData.Append(City); addressData.Append(CountryISO); addressData.Append(Zip); string stringVal = addressData.ToString().ToLower(); System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); byte[] keyByte = encoding.GetBytes(ApplicationConfiguration.ShaKey); byte[] messageBytes = encoding.GetBytes(stringVal); HMACSHA256 hmacsha256 = new HMACSHA256(keyByte); byte[] hashmessage = hmacsha256.ComputeHash(messageBytes); string hash = ByteToString(hashmessage); return hash </code></pre> http://stackoverflow.com/questions/1786325/which-hash-to-use-for-file-uniqueness-in-java 3 Which hash to use for file uniqueness in Java C. Ross 2009-11-23T21:56:23Z 2009-11-24T10:32:54Z <p>I'm trying to keep track of a set of files, which may have the same name and metadata. I'd like to use a hash to differentiate and use it as a unique ID, but I'm not sure which one to use? The files are relatively small (in the 100 kb range) and I'd like to be able to hash that in less than 10 seconds. Which hash (that comes built in in Java 1.5) would best suite my needs?</p> http://stackoverflow.com/questions/1781700/how-do-i-get-a-hash-slice-from-a-hash-of-hashes 0 How do I get a hash slice from a hash of hashes? alephnull 2009-11-23T08:02:48Z 2009-11-23T21:29:21Z <p>I have a hash like so:</p> <pre><code>my %h = ( a =&gt; { one =&gt; 1, two =&gt; 2 }, b =&gt; { three =&gt; 3, four =&gt; 4 }, c =&gt; { five =&gt; 5, six =&gt; 6 } ); print join(',', @{$h{a}{qw/one two/}}); </code></pre> <p>The error I get is: Can't use an undefined value as an ARRAY reference at q.pl line 17 which is the line with the print.</p> <p>What I expected is 1,2</p>