WDef
Group: Members
Posts: 798
Joined: Sep. 2005 |
|
Posted: May 08 2008,11:30 |
|
Not sure I'd entirely agree with that.
bcrypt is smaller and faster perhaps but it doesn't work in a pipe so dsl is currently writing unencrypted plaintext to disk before encrypting it, then using bcrypt's overwriting feature to overwrite the plaintext. For strong security, the unencrypted data should never get written to disk in the first place, since (especially on very old drives) overwriting a few times may not prevent recovery of the data, especially when attacked with the right resources, which are not expensive.
Also, bcrypt has not been maintained for a long time. For any program related to security, that is not so good.
In my reading flaws in the algorithm itself are much less likely these days than common flaws in implementation, as far as vulnerabilities go. Writing to disk in plaintext has to be considered a problematic implementation.
My $0.02 worth.
|