package pubkeypin
import "k8s.io/kubernetes/cmd/kubeadm/app/util/pubkeypin"
Package pubkeypin provides primitives for x509 public key pinning in the style of RFC7469.
Index ¶
Functions ¶
func Hash ¶
func Hash(certificate *x509.Certificate) string
Hash calculates the SHA-256 hash of the Subject Public Key Information (SPKI) object in an x509 certificate (in DER encoding). It returns the full hash as a hex encoded string (suitable for passing to Set.Allow).
Types ¶
type Set ¶
type Set struct {
// contains filtered or unexported fields
}
Set is a set of pinned x509 public keys.
func NewSet ¶
func NewSet() *Set
NewSet returns a new, empty PubKeyPinSet
func (*Set) Allow ¶
Allow adds an allowed public key hash to the Set
func (*Set) CheckAny ¶
func (s *Set) CheckAny(certificates []*x509.Certificate) error
CheckAny checks if at least one certificate matches one of the public keys in the set
func (*Set) Empty ¶
Empty returns true if the Set contains no pinned public keys.
Source Files ¶
pubkeypin.go
- Version
- v1.33.0 (latest)
- Published
- Apr 23, 2025
- Platform
- linux/amd64
- Imports
- 5 packages
- Last checked
- 5 hours ago –
Tools for package owners.