more progress:

* add tunnel crypto

* add base boilter plate for tunnel message processing
This commit is contained in:
Jeff Becker
2016-01-28 18:19:23 -05:00
parent 45656d356f
commit 3c62d42c42
9 changed files with 153 additions and 27 deletions

10
lib/tunnel/participant.go Normal file
View File

@ -0,0 +1,10 @@
package tunnel
import (
"github.com/bounce-chat/go-i2p/lib/crypto"
)
type Participant struct {
decryption *crypto.Tunnel
}