bierschi / chromepass

Fetching passwords from the chrome browser database
MIT License
88 stars 20 forks source link

Don't reuse cipher object #6

Open dgburr opened 1 year ago

dgburr commented 1 year ago

Cipher objects are stateful, meaning that it is not possible to reuse the same object to decrypt multiple passwords. With the current implementation the first password will be decrypted successfully but all subsequent decryptions will fail.