Age | Commit message (Collapse) | Author | |
---|---|---|---|
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-20 | Implement -deterministic-names: extended -zerodiriv | Jakob Unterwurzacher | |
-deterministc-names uses all-zero dirivs but does not write them to disk anymore. | |||
2021-06-26 | fusefrontend: ctlsock: get rid of unneccessary wrapper function | Jakob Unterwurzacher | |
2021-06-26 | fusefrontend: convert ctlsock from openBackingDir to prepareAtSyscall | Jakob Unterwurzacher | |
openBackingDir will be removed. Also, remove leftover debug printfs. | |||
2020-07-17 | v2api: implement ctlsocksrv.Interface | Jakob Unterwurzacher | |
2020-05-09 | ctlsock: create exported ctlsock client library | Jakob Unterwurzacher | |
The former interal ctlsock server package is renamed to ctlsocksrv. | |||
2019-01-03 | fusefrontend: Use appropriate flags in decryptPathAt. | Sebastian Lackner | |
2019-01-02 | fusefronted: make EncryptPath symlink-safe | Jakob Unterwurzacher | |
Finally allows us to delete EncryptPathDirIV. | |||
2019-01-01 | fusefrontend: fix fd leak in error path | Jakob Unterwurzacher | |
2019-01-01 | fusefrontend: use openBackingDir in ctlsock interface | Jakob Unterwurzacher | |
Instead of calling syscall.Open() ourselves, rely on openBackingDir(). | |||
2019-01-01 | fusefrontend: make DecryptPath() symlink-safe | Jakob Unterwurzacher | |
DecryptPath is now symlink-safe through the use of *at() functions. | |||
2017-05-07 | fusefrontend: implement path decryption via ctlsock | Jakob Unterwurzacher | |
Closes https://github.com/rfjakob/gocryptfs/issues/84 . | |||
2017-01-29 | ctlsock: better error message for forward mode path decryption | Jakob Unterwurzacher | |
2016-11-10 | ctlsock: implement EncryptPath for reverse mode, add tests | Jakob Unterwurzacher | |
2016-11-10 | ctlsock: add initial limited implementation | Jakob Unterwurzacher | |
At the moment, in forward mode you can only encrypt paths and in reverse mode you can only decrypt paths. |