diff options
author | jnemeth <jnemeth@pkgsrc.org> | 2010-06-14 18:27:54 +0000 |
---|---|---|
committer | jnemeth <jnemeth@pkgsrc.org> | 2010-06-14 18:27:54 +0000 |
commit | 10c178d9ae2a93756ea66000c94b80db004feffa (patch) | |
tree | f0e4ef427684b03292e65af6b4d288fd74b0e2fe /security/botan | |
parent | 6b3f75e0f68c7147b385b80bd306fdf09089d47d (diff) | |
download | pkgsrc-10c178d9ae2a93756ea66000c94b80db004feffa.tar.gz |
PR/43470 - Jack Lloyd -- update DESCR
While here, do some minor delinting and set LICENSE.
Diffstat (limited to 'security/botan')
-rw-r--r-- | security/botan/DESCR | 24 | ||||
-rw-r--r-- | security/botan/Makefile | 5 |
2 files changed, 14 insertions, 15 deletions
diff --git a/security/botan/DESCR b/security/botan/DESCR index d41b850fee8..25b417e5a68 100644 --- a/security/botan/DESCR +++ b/security/botan/DESCR @@ -1,14 +1,12 @@ -Botan (formerly OpenCL) aims to be a portable, easy to use, and efficient -C++ crypto library. It currently supports the following algorithms: +Botan is a crypto library written in C++. It provides a variety of +cryptographic algorithms, including common ones such as AES, MD5, SHA, +HMAC, RSA, Diffie-Hellman, DSA, and ECDSA, as well as many others that +are more obscure or specialized. It also offers X.509v3 certificates +and CRLs, and PKCS #10 certificate requests. A message processing +system that uses a filter/pipeline metaphor allows for many common +cryptographic tasks to be completed with just a few lines of code. +Assembly optimizations for common CPUs, including x86, x86-64, and +PowerPC, offers further speedups for critical tasks such as SHA-1 +hashing and multiple precision integer operations. - 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 +Botan is licensed under the same permissive terms as NetBSD itself. diff --git a/security/botan/Makefile b/security/botan/Makefile index 5e8109a45e7..e4b761da700 100644 --- a/security/botan/Makefile +++ b/security/botan/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2010/02/10 19:17:44 joerg Exp $ +# $NetBSD: Makefile,v 1.20 2010/06/14 18:27:54 jnemeth Exp $ DISTNAME= Botan-1.8.7 PKGNAME= botan-1.8.7 @@ -10,6 +10,7 @@ EXTRACT_SUFX= .tgz MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://botan.randombit.net/ COMMENT= Portable, easy to use, and efficient C++ crypto library +LICENSE= modified-bsd PKG_DESTDIR_SUPPORT= user-destdir @@ -21,7 +22,7 @@ PYTHON_FOR_BUILD_ONLY= yes CONFIG_SHELL= ${PYTHONBIN} CONFIGURE_SCRIPT= ./configure.py -CONFIGURE_ARGS+= --prefix=${PREFIX:Q} +CONFIGURE_ARGS+= --prefix=${PREFIX} MAKE_FLAGS+= LIB_OPT=${CXXFLAGS:Q} |