django-pgcrypto icon indicating copy to clipboard operation
django-pgcrypto copied to clipboard

Python and Django utilities for encrypted fields using pgcrypto.

Results 6 django-pgcrypto issues
Sort by recently updated
recently updated
newest added

I had this error: /usr/local/lib/python3.10/site - packages/pgcrypto/fields.py: 58: CryptographyDeprecationWarning: Blowfish has been deprecated. I had to remove the Blowfish in order for this error to disappear.

In log: ``` return {"aes": algorithms.AES, "bf": algorithms.Blowfish}[self.cipher_name] app_1 | /usr/local/lib/python3.10/site-packages/pgcrypto/fields.py:58: CryptographyDeprecationWarning: Blowfish has been deprecated ```

Hi, We're using an existing DB and we're migrating to an encrypted solution, so some of our DB data has empty strings - code crashes when calling Django bulk update...

I have an issue upgrading from the version `1.4.0` to `2.0.0` I can't access the values of the fields stored in the DB with the version of the 1.4.0. Here...

as its marked as deprecated on [cryptography==37.0.0](https://cryptography.io/en/latest/changelog/#v37-0-0) ``` /opt/venv/lib/python3.9/site-packages/pgcrypto/fields.py:58: CryptographyDeprecationWarning: Blowfish has been deprecated return {"aes": algorithms.AES, "bf": algorithms.Blowfish}[self.cipher_name] ``` May fix https://github.com/dcwatson/django-pgcrypto/issues/32

Hey there! Thanks so much for releasing/maintaining this package, so far it's worked well for us. We're running into a tiny problem at the moment, it seems like we can't...