Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-09-08 | stupidgcm: add PreferOpenSSL{AES256GCM,Xchacha20poly1305} | Jakob Unterwurzacher | |
Add PreferOpenSSLXchacha20poly1305, rename PreferOpenSSL -> PreferOpenSSLAES256GCM. | |||
2021-08-23 | go mod: declare module version v2 | Jakob Unterwurzacher | |
Our git version is v2+ for some time now, but go.mod still declared v1. Hopefully making both match makes https://pkg.go.dev/github.com/rfjakob/gocryptfs/v2 work. All the import paths have been fixed like this: find . -name \*.go | xargs sed -i s%github.com/rfjakob/gocryptfs/%github.com/rfjakob/gocryptfs/v2/% | |||
2021-08-10 | main: add testcases for convertToDoubleDash & parseCliOpts | Jakob Unterwurzacher | |
2021-08-10 | main: take advantage of pflag slice types | Jakob Unterwurzacher | |
Our multipleStrings type is now built in. | |||
2021-08-10 | main: push TestPrefixOArgs testcase struct into TestPrefixOArgs | Jakob Unterwurzacher | |
No need to have it declared globally. | |||
2018-08-11 | cli: add multipleStrings type | Jakob Unterwurzacher | |
Will be used for --exclude. | |||
2018-06-05 | main: make prefixOArgs errors testable | Jakob Unterwurzacher | |
By returning an error instead of calling os.Exit, error cases can be tested easily. Error cases were not tested until now. | |||
2017-04-29 | main: "--" should also block "-o" parsing | Jakob Unterwurzacher | |
Includes test cases. | |||
2016-10-24 | Run cli_args_test.go through "gofmt -s" | Jakob Unterwurzacher | |
2016-10-10 | main: accept "-o" at the front AND at the end | Jakob Unterwurzacher | |
Moving "-o" to the end broke a third-party app, SiriKali. Breaking your users is bad, so let's accept "-o" anywhere. | |||
2016-10-09 | main: add tests for the "-o" parsing | Jakob Unterwurzacher | |