Keats / rust-bcrypt

Easily hash and verify passwords using Bcrypt
MIT License
340 stars 49 forks source link

Zero out password copy made in `_hash_password` #68

Closed typetetris closed 2 years ago

typetetris commented 2 years ago

Please consider merging #67 , so passwords aren't in danger of still being in memory.

After the call returns, the vector is dropped and callers can't easily zero out this part of the memory any more.