pdfrip
pdfrip copied to clipboard
Update default_query.rs
Solution Issue #21 and #28: default_query didn't had lower case letters, though explaining why failing to crack password "bored"
Optimization: Instead of cloning self.current at the beginning of the method, initialize var next directly with self.current.clone(), expect reduction in memory allocation, copying overhead, resulting in faster execution times and lower memory usage.