Skip to content

fix encryption errors - #295

Closed
ajuniper wants to merge 1 commit into
mjg59:masterfrom
ajuniper:encryptionfix
Closed

fix encryption errors#295
ajuniper wants to merge 1 commit into
mjg59:masterfrom
ajuniper:encryptionfix

Conversation

@ajuniper

Copy link
Copy Markdown

These fixes address the issues seen in issue #294
I'm not a Python expert so they might be solid in all environments but they work for me...

@charliejllewellyn

Copy link
Copy Markdown

Nice thanks for this fix, it worked for me :) There is an error on line 170 though where you have an extra "("

return encryptor.update((bytes(payload)) + encryptor.finalize() should be
return encryptor.update(bytes(payload)) + encryptor.finalize()

Hopefully someone merges this soon :)

@felipediel

Copy link
Copy Markdown
Collaborator

HI @ajuniper. It seems that this problem still exists. Could you please resolve the conflicts so we can merge?

@felipedielfelipediel mentioned this pull request Jan 11, 2021
@felipediel

Copy link
Copy Markdown
Collaborator

I resolved conflicts and merged. Thank you very much @ajuniper!

@ajuniper

Copy link
Copy Markdown
Author

@felipediel Apologies for not commenting sooner, been AFK. Glad you resolved the conflicts.

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants

@ajuniper@charliejllewellyn@felipediel