2009-05-11 10:37:05 +00:00
|
|
|
## Introduction
|
|
|
|
|
2012-11-05 20:08:55 +00:00
|
|
|
ceof is the implementation and documentation
|
|
|
|
of ***EOF*** (Eris Onion Forwarding),
|
2010-06-10 21:45:40 +00:00
|
|
|
the secure, peer-to-peer (p2p), decentralised anonymous chat network.
|
2009-05-11 10:37:05 +00:00
|
|
|
|
2012-11-05 20:08:55 +00:00
|
|
|
You can read the
|
|
|
|
[bachelor thesis](http://git.schottelius.org/?p=ceof;a=blob;f=doc/thesis.pdf),
|
|
|
|
which describes the motivation and goals or you
|
|
|
|
can view [the poster that was used on the presentation](http://git.schottelius.org/?p=ceof;a=blob;f=doc/appendix/poster.pdf).
|
|
|
|
|
2013-11-11 14:58:28 +00:00
|
|
|
## Dependencies
|
2013-11-11 15:34:47 +00:00
|
|
|
|
|
|
|
* python3
|
2012-11-05 20:08:55 +00:00
|
|
|
|
2013-11-11 15:33:27 +00:00
|
|
|
### When the distro ships a package for python3-gnupg (e.g. Debian):
|
2013-11-11 14:58:28 +00:00
|
|
|
|
2013-11-11 15:34:47 +00:00
|
|
|
* python3-gnupg
|
2013-11-11 15:33:27 +00:00
|
|
|
|
|
|
|
### Otherwise:
|
|
|
|
|
2013-11-11 15:34:47 +00:00
|
|
|
* virtualenv
|
2013-11-11 14:58:28 +00:00
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
|
|
|
* Clone the git repo
|
2012-11-05 20:08:55 +00:00
|
|
|
|
|
|
|
git clone git://git.schottelius.org/ceof
|
2009-05-11 10:37:05 +00:00
|
|
|
|
2013-11-11 15:33:27 +00:00
|
|
|
### When the distro does not ship a Package for python3-gnupg
|
2013-11-11 15:34:47 +00:00
|
|
|
|
|
|
|
* Create an isolated python environment
|
2013-11-11 14:58:28 +00:00
|
|
|
|
|
|
|
virtualenv -p /usr/bin/python3 python-env
|
|
|
|
|
2013-11-11 15:34:47 +00:00
|
|
|
* Activate the python environment and install gnupg
|
2013-11-11 14:58:28 +00:00
|
|
|
|
|
|
|
. ./python-env/bin/activate
|
|
|
|
pip install python-gnupg
|
|
|
|
|
2013-11-11 15:33:27 +00:00
|
|
|
* Generate public/private key pair (may take some time, try to keep your computer busy so you can gather more entropy)
|
2013-11-11 14:58:28 +00:00
|
|
|
|
|
|
|
./src/bin/ceof crypto -g --name "Nico@Tee" --email-address nico-ceof@tee.schottelius.org
|
|
|
|
|
2009-05-11 10:37:05 +00:00
|
|
|
## Support
|
|
|
|
|
|
|
|
There are two IRC (!) channels, in which development takes places:
|
|
|
|
|
|
|
|
* [!eof](irc://IRCNet/!eof) - German
|
2011-06-13 16:28:20 +00:00
|
|
|
* [#cstar](irc://irc.freenode.org/#cstar) - Multi language (German/English)
|
2009-05-11 10:37:05 +00:00
|
|
|
|
2010-06-11 06:38:52 +00:00
|
|
|
You can subscribe to the
|
2009-05-11 10:37:05 +00:00
|
|
|
[!eof mailinglist](http://l.schottelius.org/mailman/listinfo/eof).
|
|
|
|
You can also [[contact me directly|about]].
|
|
|
|
|
2012-11-05 20:12:59 +00:00
|
|
|
[[!tag ceof crypot chat net unix]]
|