You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"The ‘EncryptedType’ class will change implementation from ‘LargeBinary’ to ‘String’ in a future version. Use ‘StringEncryptedType’ to use the ‘String’ implementation."
I am not sure what triggered the migration but it worked fine on the database side.
However, when I am running my program now, I am getting:
"binascii.Error: Invalid base64-encoded string: number of data characters (49) cannot be 1 more than a multiple of 4"
I am using EncryptedType quite a bit.
Typical usage: "last_name = db.Column(StringEncryptedType(Unicode, SA_SECRET_KEY, AesEngine, 'pkcs5'), index=True, unique=False)"
I couldn't find anything on this issue or a hint on the migration in the usual sources.
Any suggestions?
Kind regards,
Jürgen
The text was updated successfully, but these errors were encountered:
Good morning
It just happend ...
"The ‘EncryptedType’ class will change implementation from ‘LargeBinary’ to ‘String’ in a future version. Use ‘StringEncryptedType’ to use the ‘String’ implementation."
I am not sure what triggered the migration but it worked fine on the database side.
However, when I am running my program now, I am getting:
"binascii.Error: Invalid base64-encoded string: number of data characters (49) cannot be 1 more than a multiple of 4"
I am using EncryptedType quite a bit.
Typical usage: "last_name = db.Column(StringEncryptedType(Unicode, SA_SECRET_KEY, AesEngine, 'pkcs5'), index=True, unique=False)"
I couldn't find anything on this issue or a hint on the migration in the usual sources.
Any suggestions?
Kind regards,
Jürgen
The text was updated successfully, but these errors were encountered: