mirror of
https://github.com/tailscale/tailscale.git
synced 2025-04-05 15:55:49 +00:00

This fork golang.org/x/crypto/ssh (at upstream x/crypto git rev e47973b1c1) into tailscale.com/tempfork/sshtest/ssh so we can hack up the client in weird ways to simulate other SSH clients seen in the wild. Two changes were made to the files when they were copied from x/crypto: * internal/poly1305 imports were replaced by the non-internal version; no code changes otherwise. It didn't need the internal one. * all decode-with-passphrase funcs were deleted, to avoid using the internal package x/crypto/ssh/internal/bcrypt_pbkdf Then the tests passed. Updates #14969 Change-Id: Ibf1abebfe608c75fef4da0255314f65e54ce5077 Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
69 lines
1.5 KiB
Go
69 lines
1.5 KiB
Go
// Copyright 2012 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package ssh
|
|
|
|
// Message authentication support
|
|
|
|
import (
|
|
"crypto/hmac"
|
|
"crypto/sha1"
|
|
"crypto/sha256"
|
|
"crypto/sha512"
|
|
"hash"
|
|
)
|
|
|
|
type macMode struct {
|
|
keySize int
|
|
etm bool
|
|
new func(key []byte) hash.Hash
|
|
}
|
|
|
|
// truncatingMAC wraps around a hash.Hash and truncates the output digest to
|
|
// a given size.
|
|
type truncatingMAC struct {
|
|
length int
|
|
hmac hash.Hash
|
|
}
|
|
|
|
func (t truncatingMAC) Write(data []byte) (int, error) {
|
|
return t.hmac.Write(data)
|
|
}
|
|
|
|
func (t truncatingMAC) Sum(in []byte) []byte {
|
|
out := t.hmac.Sum(in)
|
|
return out[:len(in)+t.length]
|
|
}
|
|
|
|
func (t truncatingMAC) Reset() {
|
|
t.hmac.Reset()
|
|
}
|
|
|
|
func (t truncatingMAC) Size() int {
|
|
return t.length
|
|
}
|
|
|
|
func (t truncatingMAC) BlockSize() int { return t.hmac.BlockSize() }
|
|
|
|
var macModes = map[string]*macMode{
|
|
"hmac-sha2-512-etm@openssh.com": {64, true, func(key []byte) hash.Hash {
|
|
return hmac.New(sha512.New, key)
|
|
}},
|
|
"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)
|
|
}},
|
|
"hmac-sha1": {20, false, func(key []byte) hash.Hash {
|
|
return hmac.New(sha1.New, key)
|
|
}},
|
|
"hmac-sha1-96": {20, false, func(key []byte) hash.Hash {
|
|
return truncatingMAC{12, hmac.New(sha1.New, key)}
|
|
}},
|
|
}
|