File tree 1 file changed +16
-1
lines changed 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style
3
3
// license that can be found in the LICENSE file.
4
4
5
- // Package x509 parses X.509-encoded keys and certificates.
5
+ // Package x509 implements a subset of the X.509 standard.
6
+ //
7
+ // It allows parsing and generating certificates, certificate signing
8
+ // requests, certificate revocation lists, and encoded public and private keys.
9
+ // It provides a certificate verifier, complete with a chain builder.
10
+ //
11
+ // The package targets the X.509 technical profile defined by the IETF (RFC
12
+ // 2459/3280/5280), and as further restricted by the CA/Browser Forum Baseline
13
+ // Requirements. There is minimal support for features outside of these
14
+ // profiles, as the primary goal of the package is to provide compatibility
15
+ // with the publicly trusted TLS certificate ecosystem and its policies and
16
+ // constraints.
17
+ //
18
+ // On macOS and Windows, certificate verification is handled by system APIs, but
19
+ // the package aims to apply consistent validation rules across operating
20
+ // systems.
6
21
package x509
7
22
8
23
import (
You can’t perform that action at this time.
0 commit comments