ssh-sync
ssh-sync copied to clipboard
An SSH syncing application built with Go.
This PR implements the ability to sync the known_hosts file across different machines, ensuring consistent SSH host verification across systems. ## Changes Made - Added `KnownHosts` field to `DataDto` structure...
When uploading ssh data, we should be able to sync the known_hosts file so that known hosts can be saved across different machines. details: support storing and writing known_hosts expose...
- [ ] Add a new DeleteConfig function in pkg/retrieval/data.go - [ ] Add test for DeleteConfig in pkg/retrieval/data_test.go - [ ] Add "Manage SSH Config" option to Main Menu...
It would be highly desirable to make ssh-sync quantum resistant. Work should be done to investigate this as Golang 1.24 has just been released with the `crypto/mlkem` package.
conflict resolution was easily added for download - it should probably be added for upload as well. This might be a more difficult task to implement as implementing it in...