On Mon, Oct 21, 2013 at 10:48 AM, Jason (spot) Brower
<encomp...@gmail.com>wrote:

I have the following in my controller...
> # -*- coding: utf-8 -*-
> def validate_message(recieved_data, message_hash):
>     secret_salt = "12345"
>     import hashlib
>     m = hashlib.sha224()
>     m.update(recieved_data + secret_salt)
>     hashed_message = m.digest()
>     if message_hash == hashed_message:
>         return [True, hashed_message]
>     else:
>         return [False, hashed_message]Traceback (most recent call last):
>
> UnicodeDecodeError: 'utf8' codec can't decode byte 0xb9 in position 2: 
> invalid start byte
>
>
Why don't you use m.hexdigest() instead of m.digest() above?


Ricardo

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to