go-libtor
go-libtor copied to clipboard
Self-contained Tor from Go
I would like to keep my onion address static after I close the program and reopen it. this is done with V2 addressed as described in issue #19, however it...
Ran the following command on mac: `go get -u -v -x github.com/ipsn/go-libtor` Got the following error: ``` # github.com/ipsn/go-libtor/libtor In file included from ../../go/pkg/mod/github.com/ipsn/[email protected]/libtor/libevent_buffer.go:8: In file included from ../../go/pkg/mod/github.com/ipsn/[email protected]/libtor/../libevent/compat/../buffer.c:79: In...
Since golang has Virtual File System support, what if instead of saving the data directories on the hard drive, we instead save it memory? This is just an idea, so...
``` ~/go/src/github.com/cloudwizard/testtorgo$ go get -u -v -x github.com/ipsn/go-libtor # get https://proxy.golang.org/github.com/@v/list # get https://proxy.golang.org/github.com/ipsn/go-libtor/@v/list # get https://proxy.golang.org/github.com/ipsn/@v/list # get https://proxy.golang.org/github.com/@v/list: 410 Gone (0.265s) # get https://proxy.golang.org/github.com/ipsn/@v/list: 410 Gone (0.356s) #...
Hi Team, I'm getting this warning when doing docker build in my go project that uses this library: ``` #10 257.1 # github.com/ipsn/go-libtor/libtor #10 257.1 In file included from /go/pkg/mod/github.com/ipsn/[email protected]/libtor/../tor/src/../src/lib/crypt_ops/crypto_rand.c:70,...
Thanks for working on this library, it's a really neat approach! I have seen that some people have added support for iOS and macOS and I am wondering if you...
This slightly modified example crash instantly : ```go package main import ( "context" "fmt" "log" "net/http" "os" "time" "sync" "github.com/cretz/bine/tor" "github.com/ipsn/go-libtor" ) func main() { var wg sync.WaitGroup wg.Add(1) go...
`go get -u -v -x github.com/ipsn/go-libtor` results in this error (OSX) ``` # github.com/ipsn/go-libtor/libtor In file included from go/src/github.com/ipsn/go-libtor/libtor/libevent_buffer.go:8: In file included from go/src/github.com/ipsn/go-libtor/libtor/../libevent/compat/../buffer.c:85: In file included from go/src/github.com/ipsn/go-libtor/libtor/../libevent/include/event2/event.h:204: go/src/github.com/ipsn/go-libtor/libtor/../libevent/include/event2/util.h:129:2:...
is there any plan on supporting the v3 onion addresses as v2 will be phased out and no longer supported sometime this year ? (very small issue i know but...