High-level, easy-to-use listeners and clients for I2P and onion URL's from Go. Provides only the most widely-used functions in a basic way. It expects nothing from the users, an otherwise empty instance of the structs will listen and dial I2P Streaming and Tor TCP sessions successfully.
In all cases, it assumes that keys are "persistent" in that they are managed
maintained between usages of the same application in the same configuration.
This means that hidden services will maintain their identities, and that clients
will always have the same return addresses. If you don't want this behavior,
make sure to delete the "keystore" when your app closes or when your application
needs to cycle keys by calling the Garlic.DeleteKeys()
or Onion.DeleteKeys()
function. For more information, check out the godoc.
STATUS: This project is maintained. I will respond to issues, pull requests, and feature requests within a few days.
Basic usage is designed to be very simple, import the package and instantiate a struct and you're ready to go.
For more extensive examples, see: EXAMPLE
When using it to manage an I2P session, set up an onramp.Garlic
struct.
package main
import (
"log"
"github.com/eyedeekay/onramp"
)
func main() {
garlic := &onramp.Garlic{}
defer garlic.Close()
listener, err := garlic.Listen()
if err != nil {
log.Fatal(err)
}
defer listener.Close()
}
When using it to manage a Tor session, set up an onramp.Onion
struct.
package main
import (
"log"
"github.com/eyedeekay/onramp"
)
func main() {
onion := &onramp.Onion{}
defer garlic.Close()
listener, err := onion.Listen()
if err != nil {
log.Fatal(err)
}
defer listener.Close()
}