active questions tagged hash - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T05:56:13Zhttp://stackoverflow.com/feeds/tag/hashhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1839551/how-can-i-get-the-second-level-keys-in-a-perl-hash-of-hashes0How can I get the second-level keys in a Perl hash-of-hashes?Przemek2009-12-03T12:15:41Z2009-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 => {
Key4 => 4,
Key5 => 9,
Key6 => 10,
},
Key2 => {
Key7 => 5,
Key8 => 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->{'Key1'}->{'Key4'} = $value;
</code></pre>
<p>hope this helps.</p>
http://stackoverflow.com/questions/1837438/can-you-have-hash-tables-in-lisp1Can you have hash tables in lisp?Juanjo Conti2009-12-03T03:26:42Z2009-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-chaining1Collision Resolution : Quadratic Probing vs. Separate ChainingJohn2009-12-02T04:10:15Z2009-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-sha19When is CRC more appropriate to use than MD5/SHA1?Gili2009-06-15T15:43:51Z2009-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-perl3A clear explanation of difference between a Hash and Hash Reference in Perl.ajay2009-11-30T01:02:46Z2009-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-faxes1Comparing two PDF documents that are digitized faxesAlanK2009-12-02T23:24:27Z2009-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-optimization2Hash tables optimizationFlavius2009-12-02T21:07:02Z2009-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-dete1A way to generate a signature or a hash of an image in ASP.NET for duplicate detection?Kris2009-12-02T19:13:41Z2009-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-declared0In which header file c++ STL hash function object is declared?raj_arni2009-12-02T17:54:39Z2009-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-ruby0Dynamically Create Arrays in Rubymichaelmichael2009-12-01T21:56:32Z2009-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-database1Storing a SHA512 Password Hash in Databasestamp2009-12-01T21:02:44Z2009-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 & 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-enumerations0What's the meaning of the hashes at Enumerations?ApoY2k2009-12-01T12:48:44Z2009-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-problem0Perl - passing arguments to a subroutine as hash key-value pairs problemkk2009-12-01T10:26:42Z2009-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 => \@array, REF_RANGES=>\@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-pairs1Turning a hash into a string of name-value pairsjerhinesmith2009-12-01T03:10:58Z2009-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" => "foo", "b" => "bar"}
# Turn it into the name-value string
http_params = fields.map{|k,v| "#{k}=#{v}"}.join('&')
</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-jquery2Getting URL hash location, and using it in jQuery Robbie White2009-11-30T21:44:00Z2009-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-members5Why does Hash.new({}) hide hash members?Mladen Jablanović2009-11-30T19:54:05Z2009-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>>> a = Hash.new({})
=> {}
>> a[:a][:b] = 5
=> 5
>> a
=> {}
>> a[:a]
=> {:b=>5}
>> a.keys
=> []
>> a.size
=> 0
>> a[:a].size
=> 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-exists2Ruby Style: How to check whether a nested hash element existsTodd R2009-11-30T15:22:34Z2009-11-30T16:47:14Z
<p>Consider a "person" stored in a hash. Two examples are:</p>
<pre><code>fred = {:person => {:name => "Fred", :spouse => "Wilma", :children => {:child => {:name => "Pebbles"}}}}
slate = {:person => {:name => "Mr. Slate", :spouse => "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 => {:name => "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-c0Hashing function for four unsigned integers (C++)GenTiradentes2009-11-30T06:23:18Z2009-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-object0Convert XML collection (of Pivotal Tracker stories) to Ruby hash/objectmlambie2009-11-23T02:51:01Z2009-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><?xml version="1.0" encoding="UTF-8"?>
<stories type="array" count="145" total="145">
<story>
<id type="integer">16376</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/16376</url>
<estimate type="integer">2</estimate>
<current_state>accepted</current_state>
<description>A description</description>
<name>Receivable index listing will allow selection viewing</name>
<requested_by>Tony Superman</requested_by>
<owned_by>Tony Superman</owned_by>
<created_at type="datetime">2009/11/04 15:49:43 WST</created_at>
<accepted_at type="datetime">2009/11/10 11:06:16 WST</accepted_at>
<labels>index ui,receivables</labels>
</story>
<story>
<id type="integer">17427</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17427</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description></description>
<name>Validations in wizards based on direction</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/17 15:52:06 WST</created_at>
</story>
<story>
<id type="integer">17426</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17426</url>
<estimate type="integer">2</estimate>
<current_state>unscheduled</current_state>
<description>Manual payment needs a description field.</description>
<name>Add description to manual payment</name>
<requested_by>Tony Superman</requested_by>
<created_at type="datetime">2009/11/17 15:10:41 WST</created_at>
<labels>payment process</labels>
</story>
<story>
<id type="integer">17636</id>
<story_type>feature</story_type>
<url>http://www.pivotaltracker.com/story/show/17636</url>
<estimate type="integer">3</estimate>
<current_state>unscheduled</current_state>
<description>The SMS and email templates needs to be editable by merchants.</description>
<name>Notifications are editable by the merchant</name>
<requested_by>Matthew McBoggle</requested_by>
<created_at type="datetime">2009/11/19 16:44:08 WST</created_at>
</story>
</stories>
</code></pre>
http://stackoverflow.com/questions/1813078/restricting-user-password-character-set1Restricting user password character setstamp2009-11-28T17:06:22Z2009-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-hash0Is this snippet creating an anonymous Perl hash?Geo2009-11-28T21:24:21Z2009-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->add_filler( password => Interactive => []);
</code></pre>
<p>Is this <code>password => Interactive => []</code> equivalent to <code>{"password" => {"Interactive"=>[]}}</code>? If not, what does it become?</p>
http://stackoverflow.com/questions/1805940/rails-storing-host-password-for-ftp-model0Rails storing host password for FTP modelTrevor Hartman2009-11-26T22:27:19Z2009-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-objects2Using a hash function to give a memorable personality to objectscool-RR2009-11-26T07:33:33Z2009-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-instances1Is the value returned by ruby's #hash the same across interpreter instances?nicholaides2009-11-25T15:39:12Z2009-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-work0How does this PHP nonce library work?bobo2009-11-25T10:20:51Z2009-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><?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 <http://www.gnu.org/licenses/>.
*/
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 "<input type='hidden' name='".FT_NONCE_KEY."' value='".ft_nonce_create( $action . $user )."' />";
}
// 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.'); }
?>
</code></pre>
http://stackoverflow.com/questions/1782033/convert-perl-script-to-python-dedupe-2-files-based-on-hash-keys0Convert Perl script to Python: dedupe 2 files based on hash keysgalaxywatcher2009-11-23T09:31:19Z2009-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, '<', "file1.txt" or die $!;
while ( <$file1> ) {
my $name = $_;
$file1hash{$name}=$_;
}
## Opening file2.txt and store the data in a hash.
open my $file2, '<', "file2.txt" or die $!;
while ( <$file2> ) {
$name = $_;
$file2hash{$name}=$_;
}
open my $dfh, '>', "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, '>', "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-perl4How do I access the array's element stored in my hash in Perl?kunjaan2009-11-24T21:40:48Z2009-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-data0Check if the user changed dataMathias Fritsch2009-11-18T16:52:00Z2009-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-java3Which hash to use for file uniqueness in JavaC. Ross2009-11-23T21:56:23Z2009-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-hashes0How do I get a hash slice from a hash of hashes?alephnull2009-11-23T08:02:48Z2009-11-23T21:29:21Z
<p>I have a hash like so:</p>
<pre><code>my %h = ( a => { one => 1,
two => 2
},
b => { three => 3,
four => 4
},
c => { five => 5,
six => 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>