mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 03:52:25 -06:00
[chore]: Bump golang.org/x/net from 0.11.0 to 0.12.0 (#1973)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
parent
901770f5c7
commit
6de5ca46f8
37 changed files with 6940 additions and 1511 deletions
3
vendor/golang.org/x/crypto/ssh/mac.go
generated
vendored
3
vendor/golang.org/x/crypto/ssh/mac.go
generated
vendored
|
|
@ -53,6 +53,9 @@ var macModes = map[string]*macMode{
|
|||
"hmac-sha2-256-etm@openssh.com": {32, true, func(key []byte) hash.Hash {
|
||||
return hmac.New(sha256.New, key)
|
||||
}},
|
||||
"hmac-sha2-512": {64, false, func(key []byte) hash.Hash {
|
||||
return hmac.New(sha512.New, key)
|
||||
}},
|
||||
"hmac-sha2-256": {32, false, func(key []byte) hash.Hash {
|
||||
return hmac.New(sha256.New, key)
|
||||
}},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue