File: control

package info (click to toggle)
golang-github-skeema-knownhosts 1.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 164 kB
  • sloc: makefile: 2
file content (44 lines) | stat: -rw-r--r-- 1,891 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Source: golang-github-skeema-knownhosts
Section: golang
Priority: optional
Maintainer: Debian Go Packaging Team <team+pkg-go@tracker.debian.org>
Uploaders:
 Maytham Alsudany <maytha8thedev@gmail.com>,
Build-Depends:
 debhelper-compat (= 13),
 dh-sequence-golang,
 golang-any,
 golang-golang-x-crypto-dev (>> 1:0.42.0~),
Testsuite: autopkgtest-pkg-go
Standards-Version: 4.7.2
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-skeema-knownhosts
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-skeema-knownhosts.git
Homepage: https://github.com/skeema/knownhosts
XS-Go-Import-Path: github.com/skeema/knownhosts

Package: golang-github-skeema-knownhosts-dev
Architecture: all
Multi-Arch: foreign
Depends:
 golang-golang-x-crypto-dev (>> 1:0.42.0~),
 ${misc:Depends},
Breaks:
 golang-golang-x-crypto-dev (<< 1:0.42.0~),
Description: Go SSH known_hosts wrapper with host key lookup (library)
 Go provides excellent functionality for OpenSSH known_hosts files in its
 external package golang.org/x/crypto/ssh/knownhosts. However, that package is
 somewhat low-level, making it difficult to implement full known_hosts
 management similar to command-line ssh's behavior for StrictHostKeyChecking=no
 configuration.
 .
 This repo is a thin wrapper package around golang.org/x/crypto/ssh/knownhosts,
 adding the following functionality:
  * Look up known_hosts public keys for any given host
  * Auto-populate ssh.ClientConfig.HostKeyAlgorithms easily based on
    known_hosts, providing a solution for golang/go#29286
  * Write new known_hosts entries to an io.Writer
  * Properly format/normalize new known_hosts entries containing ipv6
    addresses, providing a solution for golang/go#53463
  * Determine if an ssh.HostKeyCallback's error corresponds to a host whose key
    has changed (indicating potential MitM attack) vs a host that just isn't
    known yet