Update ceof

This commit is contained in:
Nico Schottelius 2013-11-11 16:33:27 +01:00
parent 97a91f2a4b
commit d2ae5eeb4a

View file

@ -10,10 +10,15 @@ 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). can view [the poster that was used on the presentation](http://git.schottelius.org/?p=ceof;a=blob;f=doc/appendix/poster.pdf).
## Dependencies ## Dependencies
* python3
* python3 including virtualenv ### When the distro ships a package for python3-gnupg (e.g. Debian):
* virtualenv is present (python-virtualenv on Debian)
* python3-gnupg
### Otherwise:
* virtualenv
## Installation ## Installation
@ -21,16 +26,17 @@ can view [the poster that was used on the presentation](http://git.schottelius.o
git clone git://git.schottelius.org/ceof git clone git://git.schottelius.org/ceof
* Create an isolated python environment ### When the distro does not ship a Package for python3-gnupg
* Create an isolated python environment
virtualenv -p /usr/bin/python3 python-env virtualenv -p /usr/bin/python3 python-env
* Activate the python environment and install gnupg * Activate the python environment and install gnupg
. ./python-env/bin/activate . ./python-env/bin/activate
pip install python-gnupg pip install python-gnupg
* Generate public/private key pair (may take some time) * Generate public/private key pair (may take some time, try to keep your computer busy so you can gather more entropy)
./src/bin/ceof crypto -g --name "Nico@Tee" --email-address nico-ceof@tee.schottelius.org ./src/bin/ceof crypto -g --name "Nico@Tee" --email-address nico-ceof@tee.schottelius.org