// Copyright 2024 the Pinniped contributors. All Rights Reserved. // SPDX-License-Identifier: Apache-2.0 package cert import "time" type PEM struct { CertPEM []byte KeyPEM []byte NotBefore time.Time NotAfter time.Time }