type golang.org/x/crypto/ssh/agent.AddedKey
22 uses
golang.org/x/crypto/ssh/agent (current package)
client.go#L54: Add(key AddedKey) error
client.go#L104: type AddedKey struct {
client.go#L646: func (c *client) Add(key AddedKey) error {
keyring.go#L149: func (r *keyring) Add(key AddedKey) error {
server.go#L228: func setConstraints(key *AddedKey, constraintBytes []byte) error {
server.go#L240: func parseRSAKey(req []byte) (*AddedKey, error) {
server.go#L258: addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments}
server.go#L265: func parseEd25519Key(req []byte) (*AddedKey, error) {
server.go#L272: addedKey := &AddedKey{PrivateKey: &priv, Comment: k.Comments}
server.go#L279: func parseDSAKey(req []byte) (*AddedKey, error) {
server.go#L296: addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments}
server.go#L327: func parseEd25519Cert(req []byte) (*AddedKey, error) {
server.go#L342: addedKey := &AddedKey{PrivateKey: &priv, Certificate: cert, Comment: k.Comments}
server.go#L349: func parseECDSAKey(req []byte) (*AddedKey, error) {
server.go#L360: addedKey := &AddedKey{PrivateKey: priv, Comment: k.Comments}
server.go#L367: func parseRSACert(req []byte) (*AddedKey, error) {
server.go#L407: addedKey := &AddedKey{PrivateKey: &priv, Certificate: cert, Comment: k.Comments}
server.go#L414: func parseDSACert(req []byte) (*AddedKey, error) {
server.go#L449: addedKey := &AddedKey{PrivateKey: priv, Certificate: cert, Comment: k.Comments}
server.go#L456: func parseECDSACert(req []byte) (*AddedKey, error) {
server.go#L486: addedKey := &AddedKey{PrivateKey: priv, Certificate: cert, Comment: k.Comments}
server.go#L503: var addedKey *AddedKey
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |