Skip to content

Commit

Permalink
Add support for hmac-sha1 and hmac-sha1-96 (#151)
Browse files Browse the repository at this point in the history
* Add support for hmac-sha1 and hmac-sha1-96

* Updated changelog
  • Loading branch information
AnthonyRoss authored Jan 22, 2024
1 parent 4fd0039 commit 050a587
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]

## [6.11.0] - 2024-01-22
### Added
- Added support for hmac-sha1 and hmac-sha1-96 and removed hmac-ripemd160

## [6.10.0] - 2023-12-28
### Fixed
- fixed #145 - Remove use of local temp file when reading/seeking from s3 files. This should improve performance by allowing streaming reads from s3 files.
Expand Down
3 changes: 2 additions & 1 deletion backend/sftp/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ var defaultSSHConfig = &ssh.ClientConfig{
"[email protected]",
"hmac-sha2-256",
"hmac-sha2-512",
"hmac-ripemd160",
"hmac-sha1",
"hmac-sha1-96",
},
},
}
Expand Down

0 comments on commit 050a587

Please sign in to comment.