| CARVIEW |
Select Language
HTTP/2 200
expires: Thu, 19 Nov 1981 08:52:00 GMT
cache-control: no-store, no-cache, must-revalidate
pragma: no-cache
set-cookie: PHPSESSID=i4ar20rdblt4263o12vaeh96ic; path=/
content-type: text/html; charset=UTF-8
date: Sat, 27 Dec 2025 08:48:19 GMT
server: Apache
pkgsrc.se | The NetBSD package collection
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
mail
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
print
regress
security
botan2
shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./security/botan2, Portable, easy to use, and efficient C++ crypto library (v2)
[
Branch: CURRENT, Version: 2.19.5nb1, Package name: botan-2.19.5nb1, Maintainer: pkgsrc-users
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.
This package contains the old major version 2 of the library.
Navigation:
-
Browse pkgsrc
(this page)
archivers
audio
benchmarks
biology
cad
chat
comms
converters
cross
crosspkgtools
databases
devel
doc
editors
emulators
filesystems
finance
fonts
games
geography
graphics
ham
inputmethod
lang
math
mbone
meta-pkgs
misc
multimedia
net
news
parallel
pkgtools
regress
security
botan2shells
sysutils
textproc
time
wip
wm
www
x11
* = Virtual Category
Path to this page:
./security/botan2, Portable, easy to use, and efficient C++ crypto library (v2)
[
CVSweb ] [
Homepage ] [
RSS ] [
Required by ] [
Add to tracker ]
Branch: CURRENT, Version: 2.19.5nb1, Package name: botan-2.19.5nb1, Maintainer: pkgsrc-users
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.
This package contains the old major version 2 of the library.
Master sites:
Filesize: 5996.238 KBVersion history: (Expand)
- (2025-10-24) Package has been reborn
- (2025-10-24) Package deleted from pkgsrc
- (2025-09-27) Updated to version: botan-2.19.5nb1
- (2025-09-27) Updated to version: botan-2.19.5
- (2025-07-15) Package has been reborn
- (2025-07-15) Package deleted from pkgsrc
CVS history: (Expand)
| 2025-09-27 11:57:41 by Thomas Klausner | Files touched by this commit (337) |
Log message: *: recursive bump for boost 1.89 |
| 2025-09-27 08:59:05 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message: botan2: updated to 2.19.5 Version 2.19.5, 2024-07-08 * A reminder that Botan2 reaches end of life at the end of 2024 * CVE-2024-34702: Fix a DoS caused by excessive name constraints. * CVE-2024-39312: Fix a name constraint processing error, where if permitted and excluded rules both applied to a certificate, only the permitted rules would be checked. * Fix a crash in OCB * During certificate verification, first verify the entire chain of certificates, then perform other validation. * Fix a test failure in compression with certain versions of zlib * Fix some iterator debugging errors in TLS CBC decryption. * Avoid a miscompilation in ARIA when using XCode 14 |
| 2025-02-01 23:01:38 by Havard Eidnes | Files touched by this commit (6) |
Log message: security/botan2: backport patches so this builds w/boost-libs 1.87.0. Part of this is taken from security/botan2. Bump PKGREVISION. |
| 2024-12-29 16:10:02 by Adam Ciarcinski | Files touched by this commit (235) |
Log message: revbump after updating boost |
| 2024-10-04 05:49:38 by Ryo ONODERA | Files touched by this commit (237) |
Log message: *: Recursive revbump from Boost 1.86.0 |
| 2024-02-26 22:01:13 by Niclas Rosenvik | Files touched by this commit (4) |
Log message: Update botan2 to version 2.19.4 Pkgsrc changes: Add pkg-config override. Changes From changelog: * Fix a potential denial of service caused by accepting arbitrary length primes as potential elliptic curve parameters in ASN.1 encodings. With very large inputs the primality verification can become computationally expensive. Now any prime field larger than 1024 bits is rejected immediately. Reported by Bing Shi. (GH #3914) * Switch to using a constant time binary algorithm for computing GCD (GH #3912) * Fix a bug in SHAKE_Cipher which could cause incorrect output if set_key was called multiple times. (GH #3192) * Fix a bug in RSA-KEM encryption where the shared secret key was incorrectly not padded to exactly the byte length of the modulus. This would cause an incorrect shared key with ~1/256 probability. (GH #3380) * In RSA decryption and signature verification, reject bytestrings which are longer than the public modulus. Previously, otherwise valid signatures/ciphertexts with additional leading zero bytes would also be accepted. (GH #3380) * Add support for short nonces in XTS (GH #3384 #3336) * Fix NIST keywrap which was incorrect when wrapping 64-bit keys (GH #3384 #3340) * Fix nonce handling bug in EAX (GH #3382 #3335) * Fix a bug in PKCS11 AttributeContainer where adding an attribute that already existed could cause incorrect references to the existing attributes. (GH #3185) * Apply patches which allow GCC 4.7 to compile Botan 2.x. Previously at least GCC 4.8 had been required. (GH #3273) * Fix a build time problem affecting VCpkg (GH #3071) * Fix a build problem affecting Windows ARM with Visual C++ (GH #3871) |
| 2023-12-29 19:25:02 by Adam Ciarcinski | Files touched by this commit (254) |
Log message: revbump for boost-libs |
| 2023-08-14 07:25:36 by Thomas Klausner | Files touched by this commit (1247) |
Log message: *: recursive bump for Python 3.11 as new default |
