diff options
author | rillig <rillig@pkgsrc.org> | 2006-02-05 01:25:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-02-05 01:25:12 +0000 |
commit | fb815d5c4c5b11f9c909838526e38285124559a0 (patch) | |
tree | dc213ab6cd930487d1ffff7d5bf0f590e4cd076e /security/botan/Makefile | |
parent | 3b1df7eb14f1caa5ef6408c82b0bbb278666b336 (diff) | |
download | pkgsrc-fb815d5c4c5b11f9c909838526e38285124559a0.tar.gz |
Imported botan from .
Botan (formerly OpenCL) aims to be a portable, easy to use, and efficient
C++ crypto library. It currently supports the following algorithms:
Public Key Algorithms: Diffie-Hellman, DSA, ElGamal, Nyberg-Rueppel,
Rabin-Williams, RSA
Block Ciphers: Blowfish, CAST256, CAST5, CS-Cipher, DES, GOST, IDEA,
Lion, Luby-Rackoff, MISTY1, RC2, RC5, RC6, Rijndael, SAFER-SK128,
Serpent, SHARK, Skipjack, Square, TEA, Threeway, Twofish, XTEA
Stream Ciphers: ARC4, ISAAC, SEAL
Hash Functions: HAVAL, MD2, MD4, MD5, RIPEMD-128, RIPEMD-160, SHA-1,
SHA2-256, SHA2-512, Tiger, Whirlpool
MACs: EMAC, HMAC, MD5-MAC, ANSI X9.19 MAC
Misc: Adler32, CRC24, CRC32, Randpool, X9.17 RNG
Cipher Modes: CBC w/ Padding, CTS, CFB, OFB, Counter
Packaged by Aleksandar Simic <asimic@gmail.com>.
Diffstat (limited to 'security/botan/Makefile')
-rw-r--r-- | security/botan/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/security/botan/Makefile b/security/botan/Makefile new file mode 100644 index 00000000000..fdda8d384f3 --- /dev/null +++ b/security/botan/Makefile @@ -0,0 +1,22 @@ +# $NetBSD: Makefile,v 1.1.1.1 2006/02/05 01:25:12 rillig Exp $ + +DISTNAME= Botan-1.4.11 +PKGNAME= botan-1.4.11 +CATEGORIES= security +MASTER_SITES= http://files.randombit.net/botan/ +EXTRACT_SUFX= .tbz + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://botan.randombit.net/ +COMMENT= Portable, easy to use, and efficient C++ crypto library + +USE_LANGUAGES+= c++ +REPLACE_PERL+= ./configure.pl +HAS_CONFIGURE= yes +CONFIGURE_SCRIPT= ./configure.pl +CONFIGURE_ARGS+= --prefix=${PREFIX:Q} + +MAKE_FLAGS+= INSTALL_CMD_EXEC=${INSTALL_PROGRAM:Q} +MAKE_FLAGS+= INSTALL_CMD_DATA=${INSTALL_DATA:Q} + +.include "../../mk/bsd.pkg.mk" |