<html>
<head>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">

<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Tahoma
}
--></style>
</head>
<body class='hmmessage'><p><font size=2 color=navy face=Arial>
It seems to me a uuid + auto increment is easy, unique and secure with no need to compromise. <br></font></p>
<p><hr size=2 width="100%" align=center tabindex=-1>
<font face=Tahoma size=2>
<b>From</b>: kwlug-disc-bounces@kwlug.org <kwlug-disc-bounces@kwlug.org> <br><b>To</b>: kwlug-disc@kwlug.org <kwlug-disc@kwlug.org> <br><b>Sent</b>: Sun Jan 02 14:25:42 2011<br><b>Subject</b>: Re: [kwlug-disc] Hash functions. <br></font></p>

That is the rub, the size... I think I need an auto increment, but I would still like to obfuscate it somewhat I dont want it to look sequential. Am I thinking wrong? I just want to appear secure for the moment, or at least make it hard. I'm sure most of the coupons would be honored with or without the actual presentation; at least, thats been my experience in the low item value realm, if the coupons were for like $200 off I could understand, but for now I'm focusing on just individuaizing(Uniqueness generated in real time) to track redemption mostly. Each coupon shoud for the moment be in the cents or low dollars. At least until I can do some more testing and see if I really get collisions. I'm not sure about the math...<br>what is the least amount of (base n<127 bytes {no special characters please} )Some sms work on UTF-7 ???] that can represent 250 characters uniquely using time/date/message/fromID as inputs in 250 character blocks.<br><br><br>I think I'm over thinking this maybe??<br>Joseph Wennechuk<br>
________________<br><br><br><br><br><hr id="stopSpelling">Date: Sun, 2 Jan 2011 20:45:38 +0200<br>From: kb@2bits.com<br>To: kwlug-disc@kwlug.org<br>Subject: Re: [kwlug-disc] Hash functions.<br><br><div dir="ltr">You just need to generate a quasi-unique number from a set of variables.<br><br>$ php -a<br>php > $string = "Something or other with date and time";<br>php > $hash = md5($string);<br>php > print $hash;<br>
6d1740d6c0c59422b052916acb8ad778<br><br clear="all">Stuff what you want in $string, be it the store, date, whatever.<br><br>Then you can use the $hash value as the key in the database to track<br>this coupon.<br><br>All this would have worked if you have not said it should be short.<br>
<br>But you want it to be short, so the above may be too long.<br><br>Would this work? It is based on the microsecond time. If you<br>have a transaction every few seconds, then it should be OK.<br>Clashes can happen if you have two at the same exact micro-<br>
second.<br><br>$ php -a<br>php > print uniqid();<br>4d20c753e4001<br><br>Short enough?<br><br>Another approach: why not use an autoincrement key in the database table <br>that is the primary key for the coupon table, and be done with it? The<br>
rest of the data can be cross indexed in that table (store ID, date,<br>time, description, ...etc.). It will be just a number.<br>-- <br>Khalid M. Baheyeldin<br><a href="http://2bits.com" target="_blank">2bits.com</a>, Inc.<br><a href="http://2bits.com" target="_blank">http://2bits.com</a><br>
Drupal optimization, development, customization and consulting.<br>Simplicity is prerequisite for reliability. --  Edsger W.Dijkstra<br>Simplicity is the ultimate sophistication. --   Leonardo da Vinci<br>
</div>
<br>_______________________________________________
kwlug-disc_kwlug.org mailing list
kwlug-disc_kwlug.org@kwlug.org
http://astoria.ccjclearline.com/mailman/listinfo/kwlug-disc_kwlug.org                                     </body>
</html>