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

I'm following the example from one of django snippets for encrypting data into a mysql field. I've had issue before though with unicode where somehow some non-ascii field gets introduced when I think it typically is from some unintended copy/paste operation. When I try to encrypt values like this I get an encoding error.

Traceback (most recent call last):
  File "./encrypt_field.py", line 48, in <module>
    raise e
UnicodeEncodeError: 'ascii' codec can't encode character u'\ufeff' in position 571: ordinal not in range(128)

Pretty much all the text I'm encrypting is text/html and I can probably remove these characters without issue. Is there a simple way to exclude non-ascii characters before trying to encrypt them with PyCrypto?

def get_db_prep_value(self, value):
    if value is not None and not self._is_encrypted(value):
        padding = self._get_padding(value)
        if padding > 0:
            value += "\0" + ''.join([random.choice(string.printable) for index in\

range(padding-1)])
value = self.prefix + binascii.b2a_hex(self.cipher.encrypt(value)) return value

The above code raises an exception when it hits the encrypt() function at the end.

share|improve this question
You can't encrypt characters, only bytes. Encode the text first. – Ignacio Vazquez-Abrams Aug 19 '12 at 22:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.