summaryrefslogtreecommitdiff
path: root/vendor/github.com/wybiral/torgo/onion.go
diff options
context:
space:
mode:
authorJames Mills <prologic@shortcircuit.net.au>2020-03-21 08:20:16 +1000
committerJames Mills <prologic@shortcircuit.net.au>2020-03-21 08:20:16 +1000
commitd7a1eab5beba4241dab4402c5cd268432d7b46cd (patch)
tree6383b4ebf511b58597d827dc5af00b71c72caf38 /vendor/github.com/wybiral/torgo/onion.go
parent13ffd7117180d1a3093ff291481caeb07a8b71de (diff)
Migrate to Go111Modules, Add Dockerfile and GoRelaser support
Diffstat (limited to 'vendor/github.com/wybiral/torgo/onion.go')
-rw-r--r--vendor/github.com/wybiral/torgo/onion.go13
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/github.com/wybiral/torgo/onion.go b/vendor/github.com/wybiral/torgo/onion.go
deleted file mode 100644
index f88c8ff..0000000
--- a/vendor/github.com/wybiral/torgo/onion.go
+++ /dev/null
@@ -1,13 +0,0 @@
-package torgo
-
-// Onion represents a hidden service.
-type Onion struct {
- // Ports maps virtual ports for the hidden service to local addresses.
- Ports map[int]string
- // ServiceID is the unique hidden service address (without ".onion" ending).
- ServiceID string
- // Base64 encoded private key for the hidden service.
- PrivateKey string
- // Type of private key (RSA1024 or ED25519-V3).
- PrivateKeyType string
-}