File: control

package info (click to toggle)
golang-github-hashicorp-go-rootcerts 1.0.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, bullseye-backports, forky, sid, trixie
  • size: 124 kB
  • sloc: makefile: 9
file content (36 lines) | stat: -rw-r--r-- 1,643 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
Source: golang-github-hashicorp-go-rootcerts
Section: devel
Priority: optional
Maintainer: Debian Go Packaging Team <pkg-go-maintainers@lists.alioth.debian.org>
Uploaders: Shengjing Zhu <i@zhsj.me>,
           Dmitry Smirnov <onlyjob@debian.org>,
Build-Depends: debhelper-compat (= 12),
               dh-golang,
               golang-any
Standards-Version: 4.5.0
Homepage: https://github.com/hashicorp/go-rootcerts
Vcs-Browser: https://salsa.debian.org/go-team/packages/golang-github-hashicorp-go-rootcerts
Vcs-Git: https://salsa.debian.org/go-team/packages/golang-github-hashicorp-go-rootcerts.git
XS-Go-Import-Path: github.com/hashicorp/go-rootcerts
Testsuite: autopkgtest-pkg-go
Rules-Requires-Root: no

Package: golang-github-hashicorp-go-rootcerts-dev
Architecture: all
Depends: ${shlibs:Depends},
         ${misc:Depends}
Multi-Arch: foreign
Description: functions for loading root certificates for TLS connections
 Go's standard library crypto/tls provides a common mechanism for
 configuring TLS connections in tls.Config. The RootCAs field on this
 struct is a pool of certificates for the client to use as a trust store
 when verifying server certificates.
 .
 This library contains utility functions for loading certificates destined
 for that field, as well as one other important thing:
 .
 When the RootCAs field is nil, the standard library attempts to load the
 host's root CA set.  This behavior is OS-specific, and the Darwin
 implementation contains a bug that prevents trusted certificates from the
 System and Login keychains from being loaded. This library contains
 Darwin-specific behavior that works around that bug.