Crypto in Ruby and Alphanumeric - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T06:10:54Z http://stackoverflow.com/feeds/question/960658 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric 0 Crypto in Ruby and Alphanumeric Julien Genestoux 2009-06-06T22:05:14Z 2009-06-08T05:59:34Z <p>Hey,</p> <p>I am working on a project that involves a url "forwarder" (like bit.ly or tinyurl.com, but we don't really need it to be short).</p> <p>For that, I need to "generate" alphanumeric strings (I explicitly want alphanumeric) to map to each url. One of the options would be generate a random string and store it somewhere. However, I'd like to avoid using a database since we don't use any in our app. I want to actually "encode" the url so that it can be decoded later.</p> <p>Any tips on how to do that?</p> http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric/960678#960678 2 Answer by kquinn for Crypto in Ruby and Alphanumeric kquinn 2009-06-06T22:13:27Z 2009-06-06T22:34:18Z <p>Can't be done. An arbitrary URL contains many characters -- let's say 100. A shortened URL contains maybe 5. You can't use 5 characters to reconstruct 100 without a lookup table of some kind; there's simply not enough information available to do it.</p> <p><strong>EDIT 1:</strong> Well, if you don't actually need a URL <em>shortener</em> (then why did you write that?), there are plenty of options. I'd go for plain Base64 encoding, perhaps after a pass through zlib or another compressor (that might make URLs longer; you'll have to measure if it helps or not).</p> <p><strong>EDIT 2:</strong> Standard Base64 does use three non-alphanumeric characters: <code>+</code>, <code>/</code>, and <code>-</code>. If these are unacceptable, you have a couple of options:</p> <ol> <li><p>Modified Base64. <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">Wikipedia suggests</a> "modified Base64 for URL", which drops all <code>=</code> and replaces <code>+</code> and <code>/</code> with <code>-</code> and <code>_</code> respectively. But those still aren't alphanumeric, which doesn't help you.</p></li> <li><p>Some ad-hoc scheme, like Base32 or Base36. This is really easy to implement if you know how Base64 is done (see above link). (Edit 3: I guess Base32 is actually <a href="http://en.wikipedia.org/wiki/Base32" rel="nofollow">standardized</a>. Looks like RFC 4648 Base32 with <code>8</code> padding instead of <code>=</code> padding would work just fine for you).</p></li> <li><p>Some semi-standard approach. There are plenty of possibilities. Unfortunately, most of them rely on a couple of special non-alphanumeric characters, simply because by using as few as one or two more characters you can get far superior performance. Take a look at <a href="http://en.wikipedia.org/wiki/Binary-to-text%5Fencoding" rel="nofollow">Binary-to-text encoding</a> for a better survey than I can give.</p></li> </ol> http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric/960784#960784 0 Answer by Pete for Crypto in Ruby and Alphanumeric Pete 2009-06-06T23:18:33Z 2009-06-06T23:18:33Z <p>A simple way to do that would be to list all the symbols allowed in a URL that aren't alphanumeric — the ones I came up with with a quick Internet search are $-<em>.+!</em>'();/?:@=&amp; — and just encode those somehow. My list has 17 symbols, and the simplest way to encode them without surrendering legibility that I can think of would be to pick one alphanumeric symbol, say s, to act as a shift code:</p> <blockquote> <pre><code>$ ⇒ s0 - ⇒ s1 _ ⇒ s2 . ⇒ s3 + ⇒ s4 ! ⇒ s5 * ⇒ s6 ' ⇒ s7 ( ⇒ s8 ) ⇒ s9 ; ⇒ sa / ⇒ sb ? ⇒ sc : ⇒ sd @ ⇒ se = ⇒ sf &amp; ⇒ sg s ⇒ ss </code></pre> </blockquote> <p>Another approach would be to transform the original URL into a bitstream, preferably with some compression algorithm since you forfeited legibility already, and then assigning an alphanumeric symbol for each possible 6-bit sequence. Note that this leaves 4 alphanumeric symbols you never use — you could reclaim them if you really cared about length, but it hardly seems worth the complication.</p> <p>I'll ignore the "crypto" word in the topic, since you don't seem all that interested in making the scheme difficult to uncover.</p> http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric/961182#961182 2 Answer by Julien Genestoux for Crypto in Ruby and Alphanumeric Julien Genestoux 2009-06-07T04:13:16Z 2009-06-07T04:13:16Z <p>I think I actually found a better solution (at least more suitable and easy to implement in my case)</p> <p>It is somehow a hack which consist of unpackking the string with the H* parameter. Here is a sample of the code :</p> <pre><code>url = "http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric" unpacked = url.unpack("H*") # =&gt; 687474703a2f2f737461636b6f766572666c6f772e636f6d2f7175657374696f6e732f3936303635382f63727970746f2d696e2d727562792d616e642d616c7068616e756d65726963 unpacked.pack("H*") # =&gt; http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric </code></pre> <p>I will not mark this as the answer (not even sure I can...), but I'd like to let the readers know that it actually did the trick for me ;)</p> http://stackoverflow.com/questions/960658/crypto-in-ruby-and-alphanumeric/963177#963177 0 Answer by fuzzymonk for Crypto in Ruby and Alphanumeric fuzzymonk 2009-06-08T01:22:49Z 2009-06-08T01:22:49Z <p>As long as you don't mind ugly urls you could do a quick one with base64 and url escape:</p> <pre><code>require 'base64' require 'cgi' require 'uri' def encode_url(url) CGI.escape(Base64.encode64(url)) end </code></pre> <p>And back again:</p> <pre><code>def decode_url(encoded_url) Base64.decode64(CGI.unescape(encoded_url)) end </code></pre> <p>Big ugly urls, but it would get the job done:</p> <pre><code>&gt;&gt; u = encode_url("http://railsruby.blogspot.com/2006/07/url-escape-and-url-unescape.html") =&gt; "aHR0cDovL3JhaWxzcnVieS5ibG9nc3BvdC5jb20vMjAwNi8wNy91cmwtZXNj%0AYXBlLWFuZC11cmwtdW5lc2NhcGUuaHRtbA%3D%3D%0A" &gt;&gt; decode_url u =&gt; "http://railsruby.blogspot.com/2006/07/url-escape-and-url-unescape.html" </code></pre>