* renaming libqca to libqca2 for the qca2 port
* removed conflict line from qca2 PLIST
* bumped qca2
* updated conflict line in qca PLIST
* bumped qca2
* updated WANTLIB of qca-ossl and bumped
* hooked qca2 up to the build in the ports/security/Makefile
OK shadchin@, espie@
secure cryptographic hash functions designed by Niels
Ferguson, Stefan Lucks, Bruce Schneier, Doug Whiting, Mihir
Bellare, Tadayoshi Kohno, Jon Callas and Jesse Walker.
This package uses bindings to the optimized C implementation of
Skein. We provide a high-level interface (see module "Crypto.Skein")
to some of the Skein use cases. We also provide a low-level interface
(see module "Crypto.Skein.Internal") should you need to use Skein
in a different way.
Currently we have support for Skein as cryptographic hash function
as Skein as a message authentication code (Skein-MAC). For examples
of how to use this package, see "Crypto.Skein" module documentation.
ok sthen@
that follow either a uniform or normal distribution. The generated
numbers are suitable for use in statistical applications.
The uniform PRNG uses Marsaglia's MWC256 (also known as MWC8222)
multiply-with-carry generator, which has a period of 2^8222 and
fares well in tests of randomness. It is also extremely fast,
between 2 and 3 times faster than the Mersenne Twister.
Compared to the mersenne-random package, this package has a more
convenient API, is faster, and supports more statistical distributions.
ok sthen@
- adjust COMMENT to point out that this includes a password generator
(pwqgen; defaults to reasonably memorable passwords with a decent keyspace).
- manpages are fine with mandoc, so remove USE_GROFF
- adjust whitespace
libfwbuilder got merged into fwbuilder.
Besides still not fully supporting all new features of recent OpenBSD pf,
it generally works well.
feedback and OK sthen@
parameter to daemonize, move the parameter from daemon to daemon_flags,
so that the user cannot inadvertently prevent it from daemonizing by
adjusting the flags.
Discussed with ajacoutot and schwarze, this method was suggested
by schwarze@ as a simpler alternative to my diff. ok aja@