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.