summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-01-10 01:13:38 +0000
committerChristian Pointner <equinox@anytun.org>2009-01-10 01:13:38 +0000
commit71adee3a036c9589fcc6dd61d115a9dc092acbb6 (patch)
tree44bdd1790c7a6e5f28528afee6bedc0c773b9282
parentadded posibility to disable passphrase calculation (diff)
updated README and ChangeLog
-rw-r--r--ChangeLog8
-rw-r--r--README40
2 files changed, 41 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ac701e..85a9601 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/README b/README
index 546ea97..e97ef00 100644
--- a/README
+++ b/README
@@ -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
-