refactor - performance
clach04 opened this issue · 0 comments
clach04 commented
Use a profiler to find hotspots. There are inefficient pieces of code, for example
- single slices, rather than multiple
- (Byte) concatenation, compare:
- struct/array calls
- big ticket item likely to be key derivation called all the time for read and write encrypted_file() (not an issue for the class interface) - #11
- use a package that supports CBC, with manually applying it.
Blowfish.new(key, mode=Blowfish.MODE_ECB)
. See #3