type golang.org/x/crypto/ssh.Certificate

21 uses

	golang.org/x/crypto/ssh (current package)
		certs.go#L53: type Certificate struct {
		certs.go#L165: func parseCert(in []byte, privAlgo string) (*Certificate, error) {
		certs.go#L181: 	c := &Certificate{
		certs.go#L224: 	pub    *Certificate
		certs.go#L236: func NewCertSigner(cert *Certificate, signer Signer) (Signer, error) {
		certs.go#L304: 	IsRevoked func(cert *Certificate) bool
		certs.go#L310: 	cert, ok := key.(*Certificate)
		certs.go#L336: 	cert, ok := pubKey.(*Certificate)
		certs.go#L360: func (c *CertChecker) CheckCert(principal string, cert *Certificate) error {
		certs.go#L419: func (c *Certificate) SignCert(rand io.Reader, authority Signer) error {
		certs.go#L456: func (cert *Certificate) bytesForSigning() []byte {
		certs.go#L466: func (c *Certificate) Marshal() []byte {
		certs.go#L498: func (c *Certificate) Type() string {
		certs.go#L508: func (c *Certificate) Verify(data []byte, sig *Signature) error {

	golang.org/x/crypto/ssh/agent
		client.go#L111: 	Certificate *ssh.Certificate
		client.go#L664: func (c *client) insertCert(s interface{}, cert *ssh.Certificate, comment string, constraints []byte) error {
		server.go#L337: 	cert, ok := pubKey.(*ssh.Certificate)
		server.go#L378: 	cert, ok := pubKey.(*ssh.Certificate)
		server.go#L423: 	cert, ok := pubKey.(*ssh.Certificate)
		server.go#L466: 	cert, ok := pubKey.(*ssh.Certificate)

	golang.org/x/crypto/ssh/knownhosts
		knownhosts.go#L162: func (db *hostKeyDB) IsRevoked(key *ssh.Certificate) bool {