Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This is the code:

>>> import base64
>>> id = 1
>>> key = "secret key very long"
>>> enc = base64.urlsafe_b64encode(str(id)+key)
>>> enc
'MXNlY3JldCBrZXkgdmVyeSBsb25n'
>>> base64.urlsafe_b64decode(enc)
'1secret key very long'

Works as intended on my machine, but when I upload this code to google appengine, both encoded and decoded strings are totally different. How come?

EDIT 1: this is the actual code:

import base64
id = 18005
key = "r-$b*8hglm+858&9t043hlm6-&6-3d3vfc4((7yd0dbrakhvi"
enc = base64.urlsafe_b64encode(str(id)+key)
print enc
# local machine: MTgwMDVyLSRiKjhoZ2xtKzg1OCY5dDA0M2hsbTYtJjYtM2QzdmZjNCgoN3lkMGRicmFraHZp
# appengine: PXItJGIqOGhnbG0rODU4Jjl0MDQzaGxtNi0mNi0zZDN2ZmM0KCg3eWQwZGJyYWtodmkxODAwNQ==
share|improve this question
2  
Can you show the different results you get? PS: if key is really a secret, base64 isn't doing much to protect it. – Ned Batchelder Jul 9 '11 at 2:01
Curious. I get identical results here shell.appspot.com – bernie Jul 9 '11 at 2:02
@Ned, I have updated the code. PS: How do I protect the key then? – user126284 Jul 9 '11 at 2:06
@Adam, I know, the error doesn't occur in the admin console for some reason. – user126284 Jul 9 '11 at 2:07
1  
To 'protect' the key? Don't send it to a user in the first place. – Nick Johnson Jul 10 '11 at 7:32
show 2 more comments

1 Answer

up vote 1 down vote accepted

I can't explain why per se, but decoding the string you got from appengine shows it prepended an '=' to your key; and appended, rather than prepended, the ID.

>>> key='r-$b*8hglm+858&9t043hlm6-&6-3d3vfc4((7yd0dbrakhvi'
>>> base64.urlsafe_b64decode('PXItJGIqOGhnbG0rODU4Jjl0MDQzaGxtNi0mNi0zZDN2ZmM0KCg3eWQwZGJyYWtodmkxODAwNQ==')
'=r-$b*8hglm+858&9t043hlm6-&6-3d3vfc4((7yd0dbrakhvi18005'
>>> '=' + key + str(18005) == _
True

are you absolutely sure you used the same code on the server?

share|improve this answer
thanks for the explananation. Yes, I'm sure I used the same code. I tested my django code on the local machine first, then did 'manage.py deploy' without changing anything. – user126284 Jul 9 '11 at 4:05
that is just plain weird! – jcomeau_ictx Jul 9 '11 at 4:07
@Bahodir Did your code ever do something different? Because I think we can be fairly confident that this isn't Python deciding to do something different with your code on the server. – Nick Johnson Jul 10 '11 at 7:33
@Nick, you are right. I must be overlooking something. – user126284 Jul 10 '11 at 15:07

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.