https://github.com/loadsmart/go_sftp
SFTP implementation for go, compatible with Encryption Algorithm DSA key length 2048, 3072, 4096
https://github.com/loadsmart/go_sftp
Last synced: 5 months ago
JSON representation
SFTP implementation for go, compatible with Encryption Algorithm DSA key length 2048, 3072, 4096
- Host: GitHub
- URL: https://github.com/loadsmart/go_sftp
- Owner: loadsmart
- License: gpl-3.0
- Archived: true
- Created: 2022-05-24T18:06:20.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-16T22:59:16.000Z (almost 4 years ago)
- Last Synced: 2024-06-21T09:57:52.762Z (almost 2 years ago)
- Language: Go
- Size: 1.72 MB
- Stars: 0
- Watchers: 51
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Go sftp
SFTP Client implementation for go, compatible with Encryption Algorithm DSA key length 2048, 3072, 4096
# When to use this repo
By default, this repo is not aiming to replace the built in implementation available in go with the package crypto.
This package is intended to add the simple compatibility of the DSA key kength of 2048,3072 and 4096 which the golang crypto package doesn't support by default.
This PR https://github.com/golang/crypto/pull/204 should solve the problem eventually when finally merged.
PLEASE avoid using this repo as implementation as SFTP connection. This is only a workaround to add the key length compatibility.