diff options
author | Christian Pointner <equinox@anytun.org> | 2009-01-10 01:13:38 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2009-01-10 01:13:38 +0000 |
commit | 71adee3a036c9589fcc6dd61d115a9dc092acbb6 (patch) | |
tree | 44bdd1790c7a6e5f28528afee6bedc0c773b9282 | |
parent | added posibility to disable passphrase calculation (diff) |
updated README and ChangeLog
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | README | 40 |
2 files changed, 41 insertions, 7 deletions
@@ -1,3 +1,11 @@ +2009.01.?? -- Version 0.2svn?? + +* added crypto support using libgcrypt or openssl +* added new passphrase option to generate master key and or salt +* cleaned up and improved build system +* some code cleanup + + 2008.12.31 -- Version 0.1svn37 * Initial release. @@ -4,15 +4,29 @@ Dependencies Linux ----- -build-essential -libgcrypt11-dev +using libgcrypt: + + build-essential + libgcrypt11-dev + +using ssl crypto library: + + build-essential + libssl-dev + OpenBSD ------- -libgcrypt -libgpg-error -gmake +using libgcrypt: + + gmake + libgcrypt + libgpg-error + +using ssl crypto library: + + gmake Installation @@ -25,13 +39,25 @@ svn co https://svn.chaos-at-home.org/uanytun Building from source -------------------- +using libgcrypt: + # cd src # ./configure # make +using ssl crypto library: + +# cd src +# ./configure --use-ssl-crypto +# make + + Notes: + - try './configure --help' for further information + - if using openssl pre 0.9.8 you have to disable passphrase + because openssl had no SHA256 implementation prior to this + version - on OpenBSD you have to use gmake instead of make - currently there is no support for using IPv6 as - outer Protocol because OpenBSD does not support + outer Protocol on OpenBSD because it does not support V4-Mapped adresses - |