mirror of
https://github.com/Finb/Bark.git
synced 2026-04-26 06:25:55 +03:00
[GH-ISSUE #188] Security issue with the new encryption support #169
Labels
No labels
bug
enhancement
in progress
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Bark#169
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @harryzcy on GitHub (Mar 15, 2023).
Original GitHub issue: https://github.com/Finb/Bark/issues/188
Initialization vector shouldn't be fixed in the setting, as it is vulnerable to chosen plaintext attacks. IV is not secret and is ok to be public. The important thing is not to reuse IV in multiple requests.
The correct practice is to have IV generated by crypto-secure random generator by the client, and to be included in payload along with other data.
From Wikipedia:
More links: