type golang.org/x/crypto/ssh/agent.client

18 uses

	golang.org/x/crypto/ssh/agent (current package)
		client.go#L304: type client struct {
		client.go#L314: 	return &client{conn: rw}
		client.go#L320: func (c *client) call(req []byte) (reply interface{}, err error) {
		client.go#L335: func (c *client) callRaw(req []byte) (reply []byte, err error) {
		client.go#L362: func (c *client) simpleCall(req []byte) error {
		client.go#L373: func (c *client) RemoveAll() error {
		client.go#L377: func (c *client) Remove(key ssh.PublicKey) error {
		client.go#L384: func (c *client) Lock(passphrase []byte) error {
		client.go#L391: func (c *client) Unlock(passphrase []byte) error {
		client.go#L399: func (c *client) List() ([]*Key, error) {
		client.go#L432: func (c *client) Sign(key ssh.PublicKey, data []byte) (*ssh.Signature, error) {
		client.go#L436: func (c *client) SignWithFlags(key ssh.PublicKey, data []byte, flags SignatureFlags) (*ssh.Signature, error) {
		client.go#L530: func (c *client) insertKey(s interface{}, comment string, constraints []byte) error {
		client.go#L646: func (c *client) Add(key AddedKey) error {
		client.go#L664: func (c *client) insertCert(s interface{}, cert *ssh.Certificate, comment string, constraints []byte) error {
		client.go#L747: func (c *client) Signers() ([]ssh.Signer, error) {
		client.go#L761: 	agent *client
		client.go#L791: func (c *client) Extension(extensionType string, contents []byte) ([]byte, error) {