You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
261 B

package exchange
import (
"github.com/go-faster/errors"
)
// ErrKeyFingerprintNotFound is returned when client can't find keys by fingerprints
// provided by server during key exchange.
var ErrKeyFingerprintNotFound = errors.New("key fingerprint not found")