Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 03-May-2022 | - | ||||
.gitignore | H A D | 22-Feb-2019 | 266 | 25 | 19 | |
LICENSE | H A D | 22-Feb-2019 | 11.1 KiB | 203 | 169 | |
README.md | H A D | 22-Feb-2019 | 1 KiB | 24 | 12 | |
go.mod | H A D | 22-Feb-2019 | 168 | 7 | 5 | |
go.sum | H A D | 22-Feb-2019 | 420 | 5 | 4 | |
pageant_windows.go | H A D | 22-Feb-2019 | 4.2 KiB | 147 | 89 | |
sshagent.go | H A D | 22-Feb-2019 | 1.2 KiB | 50 | 22 | |
sshagent_windows.go | H A D | 22-Feb-2019 | 2 KiB | 81 | 43 |
README.md
1# ssh-agent 2 3Create a new [agent.Agent](https://godoc.org/golang.org/x/crypto/ssh/agent#Agent) on any type of OS (so including Windows) from any [Go](https://golang.org) application. 4 5## Limitations 6 7When compiled for Windows, it will only support [Pageant](http://the.earth.li/~sgtatham/putty/0.66/htmldoc/Chapter9.html#pageant) as the SSH authentication agent. 8 9## Credits 10 11Big thanks to [Давид Мзареулян (David Mzareulyan)](https://github.com/davidmz) for creating the [go-pageant](https://github.com/davidmz/go-pageant) package! 12 13## Issues 14 15If you have an issue: report it on the [issue tracker](https://github.com/xanzy/ssh-agent/issues) 16 17## Author 18 19Sander van Harmelen (<sander@xanzy.io>) 20 21## License 22 23The files `pageant_windows.go` and `sshagent_windows.go` have their own license (see file headers). The rest of this package is licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0> 24