mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 19:38:01 +03:00
swaylock: Securely zero-out password.
- Replace char* with static array. Any chars > 1024 will be discarded. - mlock() password buffer so it can't be written to swap. - Clear password buffer after auth succeeds or fails. This is basically the same treatment I gave the 0.15 branch in https://github.com/swaywm/sway/pull/1519
This commit is contained in:
parent
200d0360ea
commit
ad6aa21c43
3 changed files with 34 additions and 26 deletions
|
@ -24,9 +24,8 @@ struct swaylock_args {
|
|||
};
|
||||
|
||||
struct swaylock_password {
|
||||
size_t size;
|
||||
size_t len;
|
||||
char *buffer;
|
||||
char buffer[1024];
|
||||
};
|
||||
|
||||
struct swaylock_state {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue