toy app for sending and receiving encrypted messages
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Jordan Orelli 4b4b44f448 users can list incoming message ids 10 years ago
.gitignore
README.md
client.go users can list incoming message ids 10 years ago
cm.go
db.go users can list incoming message ids 10 years ago
key.go
message users can send (but not read) messages 10 years ago
meta.go
note.go
request.go users can send (but not read) messages 10 years ago
server.go users can list incoming message ids 10 years ago
whisper.go

README.md

get the dependencies:

go get code.google.com/p/go.crypto/ssh
go get github.com/syndtr/goleveldb

then go build and have fun

whisper generate to generate a key
whisper listen to run the server
whisper --key $keyfile --nick $nick dial to run the client

In the client:

notes/create $title to create a note
notes/get $id to get a note. You have to look in the server log for the id right now but it's just an incrementing integer.