views:

3067

answers:

8

Hi,

I have a string like this:

String A: [ 12234_1_Hello'World_34433_22acb_4554344_accCC44 ]

I would like to encrypt String A to be used in a clean URL. something like this:

String B: [ cYdfkeYss4543423sdfHsaaZ ]

Is there a encode API in python, given String A, it returns String B? Is there a decode API in python, given String B, it returns String A?

+2  A: 

One way of doing the encode/decode is to use the package base64, for an example:

import base64
import sys

encoded = base64.b64encode(sys.stdin.read())
print encoded

decoded = base64.b64decode(encoded)
print decoded

Is it what you were looking for? With your particular case you get:

input: 12234_1_Hello'World_34433_22acb_4554344_accCC44

encoded: MTIyMzRfMV9IZWxsbydXb3JsZF8zNDQzM18yMmFjYl80NTU0MzQ0X2FjY0NDNDQ=

decoded: 12234_1_Hello'World_34433_22acb_4554344_accCC44

Daniel Persson
+1  A: 

The base64 module provides encoding and decoding for a string to and from different bases, since python 2.4.

In you example, you would do the following:

import base64
string_b = base64.b64encode(string_a)
string_a = base64.b64decode(string_b)

For full API: http://docs.python.org/library/base64.html

Brian Ramsay
A: 

Are you looking to encrypt the string or encode it to remove illegal characters for urls? If the latter, you can use urllib.quote:

>>> quoted = urllib.quote("12234_1_Hello'World_34433_22acb_4554344_accCC44")
>>> quoted
'12234_1_Hello%27World_34433_22acb_4554344_accCC44'

>>> urllib.unquote(quoted)
"12234_1_Hello'World_34433_22acb_4554344_accCC44"
dF
+3  A: 

Are you after encryption, compression, or just urlencoding? The string can be passed after urlencoding, but that will not make it smaller as in your example. Compression might shrink it, but you would still need to urlencode the result.

Do you actually need to hide the string data from the viewer (e.g. sensitive data, should not be viewable by someone reading the URL over your shoulder)?

JimG
No security issues. I was just thinking of randomizing the string and shrink it a bit. I have seen this on Kijiji.com where they append a random string to the end of their Slug. I am sure that is how they pass arguments around. I thought it would be cool to use stuff like as well.http://bayarea.kijiji.com/f-Jobs-Construction-trades-W0QQCatIdZ100060http://bayarea.kijiji.com/f-Jobs-Construction-trades-Peninsula-W0QQCatIdZ100060QQLocationZ2600043I'd like to have all the arguments in the URL so if people copy and email URLs, their friends would see the end result without cookies.Thanks
VN44CA
You might be mistaking storing data with referencing it. That is, the short string you see in the URL is actually a session ID, and the data it references is kept on the server. I could be wrong, I don't know any specifics about that site, but it is a common enough.
JimG
+4  A: 

To make it really short -> just insert a row into the database. Store something like a list of (id auto_increment, url) tuples. Then you can base64 encode the id to get a "proxy url". Decode it by decoding the id and looking up the proper url in the database. Or if you don't mind the identifiers looking sequential, just use the numbers.

viraptor
Beat me by a minute!
S.Lott
+2  A: 

It's hard to reduce the size of a string and preserve arbitrary content.

You have to restrict the data to something you can usefully compress.

Your alternative is to do the following.

  1. Save "all the arguments in the URL" in a database row.

  2. Assign a GUID key to this collection of arguments.

  3. Then provide that shortened GUID key.

S.Lott
The alternative would require an extra hit to the database right?I see lot of sites doing this, just have to find out how?
VN44CA
Extra relative to what? If you're authenticating users and checking authorization, you have queries there. If your data model is something other than a trivial table it may involve more than one query. Saving the "query" in the database will relatively easy to manage.
S.Lott
A: 

Another method that would also shorten the string would be to calculate the md5/sha1 hash of the string (concatenated with a seed if you wished):

import hashlib
>>> hashlib.sha1("12234_1_Hello'World_34433_22acb_4554344_accCC44").hexdigest()
'e1153227558aadc00a2e90b5013fdd6b0804fdfb'

In theory you should get a set of strings with very few collisions and with a fixed length. The hashlib library has an array of different hash functions you can use in this manner, with different output sizes.

Edit: You also said that you needed a reversible string, so this wouldn't work for that. Afaik, however, many web platforms that use clean URLs like you seem to want to implement use hash functions to calculate a shortened URL and then store that URL along with the page's other data to provide the reverse lookup capability.

chradcliffe
+2  A: 

note that theres a huge difference between encoding and encryption.

if you want to send sensitive data, then dont use the encoding mentioned above ;)