Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-07-06 | Add godoc comments to all internal packages | Jakob Unterwurzacher | |
2016-06-16 | readpassword: clean up leftover debug commit | Jakob Unterwurzacher | |
2016-06-15 | Rename internal "toggledlog" package to "tlog" | Jakob Unterwurzacher | |
tlog is used heavily everywhere and deserves a shorter name. Renamed using sed magic, without any manual rework: find * -type f -exec sed -i 's/toggledlog/tlog/g' {} + | |||
2016-06-15 | toggledlog: assume command of color handling | Jakob Unterwurzacher | |
We want to use colored error messages also outside of main, so let's handle it in the logging package. The fatal logger now automatically prints red. | |||
2016-06-15 | readpassword: create internal package for password reading | Jakob Unterwurzacher | |
* Supports stdin * Add tests for extpass and stdin As per user request at https://github.com/rfjakob/gocryptfs/issues/30 |