diff options
author | Adrian-Ken Rueegsegger <ken@codelabs.ch> | 2012-05-02 17:49:32 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-05-18 08:15:40 +0200 |
commit | 04024b5de8fea958add7da8354748355a69705cb (patch) | |
tree | dbaa7a84883121ac88c85a8a82f16e6339631667 /src/libstrongswan/Makefile.am | |
parent | e2fc09c186c367b35096ca0c13a0de3ab380da14 (diff) | |
download | strongswan-04024b5de8fea958add7da8354748355a69705cb.tar.bz2 strongswan-04024b5de8fea958add7da8354748355a69705cb.tar.xz |
Add nonce plugin implementation
This nonce generator uses an RNG to generate nonces. The RNG quality is
currently set to RNG_WEAK which is the same value used in IKE init.
The plugin is enabled and thus built by default.
Diffstat (limited to 'src/libstrongswan/Makefile.am')
-rw-r--r-- | src/libstrongswan/Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/libstrongswan/Makefile.am b/src/libstrongswan/Makefile.am index f706575ea..514d3f1a4 100644 --- a/src/libstrongswan/Makefile.am +++ b/src/libstrongswan/Makefile.am @@ -210,6 +210,13 @@ if MONOLITHIC endif endif +if USE_NONCE + SUBDIRS += plugins/nonce +if MONOLITHIC + libstrongswan_la_LIBADD += plugins/nonce/libstrongswan-nonce.la +endif +endif + if USE_HMAC SUBDIRS += plugins/hmac if MONOLITHIC |