Release Notes

1.0 Introduction

The Bouncy Castle Crypto package is a Java implementation of cryptographic algorithms. The package is organised so that it contains a light-weight API suitable for use in any environment (including the J2ME) with the additional infrastructure to conform the algorithms to the JCE framework.

2.0 Release History

2.1.1 Version

Release: 1.77
Date:      2023, November 13th

2.1.2 Defects Fixed

  • Using an unescaped '=' in an X.500 RDN would result in the RDN being truncated silently. The issue is now detected and an exception is thrown.
  • asn1.eac.CertificateBody was returning certificateEffectiveDate from getCertificateExpirationDate(). This has been fixed to return certificateExpirationDate.
  • DTLS: Fixed retransmission in response to re-receipt of an aggregated ChangeCipherSpec.
  • (D)TLS: Fixed compliance for supported_groups extension. Server will no longer negotiate an EC cipher suite using a default curve when the ClientHello includes the supported_groups extension but it contains no curves in common with the server. Similarly, a DH cipher suite will not be negotiated when the ClientHello includes supported_groups, containing at least one FFDHE group, but none in common with the server.
  • IllegalStateException was being thrown by the Ed25519/Ed448 SignatureSpi. This has been fixed.
  • TLS: class annotation issues that could occur between the BC provider and the TLS API for the GCMParameterSpec class when the jars were loaded on the boot class path have been addressed.
  • Attempt to create an ASN.1 OID from a zero length byte array is now caught at construction time.
  • Attempt to create an X.509 extension block which is empty will now be blocked cause an exception.
  • IES implementation will now accept a null ParameterSpec if no nonce is needed.
  • An internal method in Arrays was failing to construct its failure message correctly on an error. This has been fixed.
  • HSSKeyPublicParameters.generateLMSContext() would fail for a unit depth key. This has been fixed.

2.1.3 Additional Features and Functionality

  • BCJSSE: Added org.bouncycastle.jsse.client.omitSigAlgsCertExtension and org.bouncycastle.jsse.server.omitSigAlgsCertExtension boolean system properties to control (for client and server resp.) whether the signature_algorithms_cert extension should be omitted if it would be identical to signature_algorithms. Defaults to true, the historical behaviour.
  • The low-level HPKE API now allows the sender to specify an ephemeral key pair.
  • Support has been added for the delta-certificate requests in line with the current Chameleon Cert draft from the IETF.
  • Some accommodation has been added for historical systems to accommodate variations in the SHA-1 digest OID for CMS SignedData.
  • TLS: the TLS API will now try "RSAwithDigestAndMFG1" as well as the newer RSAPSS algorithm names when used with the JCA.
  • TLS: RSA key exchange cipher suites are now disabled by default.
  • Support has been added for PKCS#10 requests to allow certificates using the altSignature/altPublicKey extensions.

2.1.3 Notes.

  • Kyber and Dilithium have been updated according to the latest draft of the standard. Dilithium-AES and Kyber-AES have now been removed. Kyber now produces 256 bit secrets for all parameter sets (in line with the draft standard).
  • NTRU has been updated to produce 256 bit secrets in line with Kyber.
  • SPHINCS+ can now be used to generate certificates in line with those used by (Open Quantum Safe) OQS.
  • Falcon object idenitifiers are now in line with OQS as well.
  • PQC CMS SignedData now defaults to SHA-256 for signed attributes rather than SHAKE-256. This is also a compatibility change, but may change further again as the IETF standard for CMS is updated.

2.2.1 Version

Release: 1.76
Date:      2023, July 29th

2.2.2 Defects Fixed

  • Service allocation in the provider could fail due to the lack of a permission block. This has been fixed.
  • JceKeyFingerPrintCalculator has been generalised for different providers by using "SHA-256" for the algorithm string.
  • BCJSSE: Fixed a regression in 1.74 (NullPointerException) that prevents a BCJSSE server from negotiating TLSv1.1 or earlier.
  • DTLS: Fixed server support for client_certificate_type extension.
  • Cipher.unwrap() for HQC could fail due to a miscalculation of the length of the KEM packet. This has been fixed.
  • There was exposure to a Java 7 method in the Java 5 to Java 8 BCTLS jar which could cause issues with some TLS 1.2 cipher suites running on older JVMs. This is now fixed.

2.2.3 Additional Features and Functionality

  • BCJSSE: Following OpenJDK, finalizers have been removed from SSLSocket subclasses. Applications should close sockets and not rely on garbage collection.
  • BCJSSE: Added support for boolean system property "jdk.tls.client.useCompatibilityMode" (default "true").
  • DTLS: Added server support for session resumption.
  • JcaPKCS10CertificationRequest will now work with EC on the OpenJDK provider.
  • TimeStamp generation now supports the SHA3 algorithm set.
  • The SPHINCS+ simple parameters are now fully supported in the BCPQC provider.
  • Kyber, Classic McEliece, HQC, and Bike now supported by the CRMF/CMS/CMP APIs.
  • Builder classes have been add for PGP ASCII Armored streams allowing CRCs and versions to now be optional.
  • An UnknownPacket type has been added to the PGP APIs to allow for forwards compatibility with upcoming revisions to the standard.

2.3.1 Version

Release: 1.75
Date:      2023, June 21st

2.3.2 Defects Fixed

  • Several Java 8 method calls were accidentally introduced in the Java 5 to Java 8 build. The affected classes have been refactored to remove this.
  • (D)TLS: renegotiation after resumption now fixed to avoid breaking connection.

2.3.3 Notes.

  • The ASN.1 core package has had some dead and retired methods cleaned up and removed.

2.4.1 Version

Release: 1.74
Date:      2023, June 12th

2.4.2 Defects Fixed

  • AsconEngine: Fixed a buffering bug when decrypting across multiple processBytes calls (ascon128a unaffected).
  • Context based sanity checking on PGP signatures has been added.
  • The ParallelHash clone constructor was not copying all fields. This is now fixed.
  • The maximimum number of blocks for CTR/SIC modes was 1 block less than it should have been. This is now fixed.

2.4.3 Additional Features and Functionality

  • The PGP API now supports wildcard key IDs for public key based data encryption.
  • LMS now supports SHA256/192, SHAKE256/192, and SHAKE256/256 (the additional SP 8000-208 parameter sets).
  • The PGP API now supports V5 and V6 AEAD encryption for encrypted data packets.
  • The PGP examples have been updated to reflect key size and algorithm changes that have occurred since they were first written (10+ years...).
  • (D)TLS: A new callback 'TlsPeer.notifyConnectionClosed' will be called when the connection is closed (including by failure).
  • BCJSSE: Improved logging of connection events and include unique IDs in connection-specific log messages.
  • BCJSSE: Server now logs the offered cipher suites when it fails to select one.
  • BCJSSE: Added support for SSLParameters namedGroups and signatureSchemes properties (can also be used via BCJSSE extension API in earlier Java versions).
  • DTLS: The initial handshake re-send time is now configurable by overriding 'TlsPeer.getHandshakeResendTimeMillis'.
  • DTLS: Added support for connection IDs per RFC 9146.
  • DTLS: Performance of DTLSVerifier has been improved so that it can reasonably be used for all incoming packets.
  • Initial support has been added for A Mechanism for Encoding Differences in Paired Certificates.
  • The PGP API now supports parsing, encoding, and fingerprinting of V6 EC/EdEC keys.
  • A thread safe verifier API has been added to the PGP API to support multi-threaded verification of certifications on keys and user IDs.
  • The number of keys/sub-keys in a PGPKeyRing can now be found by calling PGPKeyRing.size().
  • The PQC algorithms LMS/HSS, SPHINCS+, Dilithium, Falcon, and NTRU are now supported directly by the BC provider.

2.4.4 Notes.

  • The now defunct PQC SIKE algorithm has been removed, this has also meant the removal of its resource files so the provider is now quite a bit smaller.
  • As a precaution, HC128 now enforces a 128 bit IV, previous behaviour for shorter IVs can be supported where required by padding the IV to the 128 bits with zero.
  • PGP encrypted data generation now uses integrity protection by default. Previous behaviour for encrypted data can be supported where required by calling PGPDataEncryptorBuilder.setWithIntegrityPacket(false) when data encryption is set up.
  • There are now additional sanity checks in place to prevent accidental mis-use of PGPSignature objects. If this change causes any issues, you might want to check what your code is up to as there is probably a bug.

2.4.5 Security Advisories.

  • CVE-2023-33201 - this release fixes an issue with the X509LDAPCertStoreSpi where a specially crafted certificate subject could be used to try and extract extra information out of an LDAP server with wild-card matching enabled.

2.5.1 Version

Release: 1.73
Date:      2023, April 8th

2.5.2 Defects Fixed

  • BCJSSE: Instantiating a JSSE provider in some contexts could cause an AccessControl exception. This has been fixed.
  • The EC key pair generator can generate out of range private keys when used with SM2. A specific SM2KeyPairGenerator has been added to the low-level API and is used by KeyPairGenerator.getInstance("SM2", "BC"). The SM2 signer has been updated to check for out of range keys as well..
  • The attached signature type byte was still present in Falcon signatures as well as the detached signature byte. This has been fixed.
  • There was an off-by-one error in engineGetOutputSize() for ECIES. This has been fixed.
  • The method for invoking read() internally in BCPGInputStream could result in inconsistent behaviour if the class was extended. This has been fixed.
  • Fixed a rounding issue with FF1 Format Preserving Encryption algorithm for certain radices.
  • Fixed RFC3394WrapEngine handling of 64 bit keys.
  • Internal buffer for blake2sp was too small and could result in an ArrayIndexOutOfBoundsException. This has been fixed.
  • JCA PSS Signatures using SHAKE128 and SHAKE256 now support encoding of algorithm parameters.
  • PKCS10CertificationRequest now checks for empty extension parameters.
  • Parsing errors in the processing of PGP Armored Data now throw an explicit exception ArmoredInputException.
  • PGP AEAD streams could occassionally be truncated. This has been fixed.
  • The ESTService class now supports processing of chunked HTTP data.
  • A constructed ASN.1 OCTET STRING with a single member would sometimes be re-encoded as a definite-length OCTET STRING. The encoding has been adjusted to preserve the BER status of the object.
  • PKIXCertPathReviewer could fail if the trust anchor was also included in the certificate store being used for path analysis. This has been fixed.
  • UTF-8 parsing of an array range ignored the provided length. This has been fixed.
  • IPAddress has been written to provide stricter checking and avoid the use of Integer.parseInt().
  • A Java 7 class snuck into the Java 5 to Java 8 build. This has been addressed.

2.5.3 Additional Features and Functionality

  • The Rainbow NIST Post Quantum Round-3 Candidate has been added to the low-level API and the BCPQC provider (level 3 and level 5 parameter sets only).
  • The GeMSS NIST Post Quantum Round-3 Candidate has been added to the low-level API.
  • The org.bouncycastle.rsa.max_mr_tests property check has been added to allow capping of MR tests done on RSA moduli.
  • Significant performance improvements in PQC algorithms, especially BIKE, CMCE, Frodo, HQC, Picnic.
  • EdDSA verification now conforms to the recommendations of Taming the many EdDSAs, in particular cofactored verification. As a side benefit, Pornin's basis reduction is now used for EdDSA verification, giving a significant performance boost.
  • Major performance improvements for Anomalous Binary (Koblitz) Curves.
  • The lightweight Cryptography finalists Ascon, ISAP, Elephant, PhotonBeetle, Sparkle, and Xoodyak have been added to the light-weight cryptography API.
  • BLAKE2bp and BLAKE2sp have been added to the light-weight cryptography API.
  • Support has been added for X.509, Section 9.8, hybrid certificates and CRLs using alternate public keys and alternate signatures.
  • The property "org.bouncycastle.emulate.oracle" has been added to signal the provider should return algorithm names on some algorithms in the same manner as the Oracle JCE provider.
  • An extra replaceSigners method has been added to CMSSignedData which allows for specifying the digest algorithm IDs to be used in the new CMSSignedData object.
  • Parsing and re-encoding of ASN.1 PEM data has been further optimized to prevent unecessary conversions between basic encoding, definite length, and DER.
  • Support has been added for KEM ciphers in CMS in accordance with draft-ietf-lamps-cms-kemri
  • Support has been added for certEncr in CRMF to allow issuing of certificates for KEM public keys.
  • Further speedups have been made to CRC24.
  • GCMParameterSpec constructor caching has been added to improve performance for JVMs that have the class available.
  • The PGPEncrytedDataGenerator now supports injecting the session key to be used for PGP PBE encrypted data.
  • The CRMF CertificateRequestMessageBuilder now supports optional attributes.
  • Improvements to the s calculation in JPAKE.
  • A general purpose PQCOtherInfoGenerator has been added which supports all Kyber and NTRU.
  • An implementation of HPKE (RFC 9180 - Hybrid Public Key Encryption) has been added to the light-weight cryptography API.

2.5.4 Security Advisories.

  • The PQC implementations have now been subject to formal review for secret leakage and side channels, there were issues in BIKE, Falcon, Frodo, HQC which have now been fixed. Some weak positives also showed up in Rainbow, Picnic, SIKE, and GeMSS - for now this last set has been ignored as the algorithms will either be updated if they reappear in the Signature Round, or deleted, as is already the case for SIKE (it is now in the legacy package). Details on the group responsible for the testing can be found in the CONTRIBUTORS file.
  • For at least some ECIES variants (e.g. when using CBC) there is an issue with potential malleability of a nonce (implying silent malleability of the plaintext) that must be sent alongside the ciphertext but is outside the IES integrity check. For this reason the automatic generation of nonces with IED is now disabled and they have to be passed in using an IESParameterSpec. The current advice is to agree on a nonce between parties and then rely on the use of the ephemeral key component to allow the nonce (rather the so called nonce) usage to be extended.

2.5.5 Notes.

  • Most test data files have now been migrated to a separate project bc-test-data which is also available on github. If you clone bc-test-data at the same level as the bc-java project the tests will find the test data they require.
  • There has been further work to make entropy collection more friendly in container environments. See DRBG.java for details. We would welcome any further feedback on this as we clearly cannot try all situations first hand.

2.6.1 Version

Release: 1.72.2, 1.72.3
Date:      2022, November 20th

2.6.2 Defects Fixed

  • PGP patch release - fix for OSGI and version header in 1.72.1 jar file.

2.7.1 Version

Release: 1.72.1
Date:      2022, October 25th

2.7.2 Defects Fixed

  • PGP patch release - fix for regression in OpenPGP PGPEncryptedData.java which could result in checksum failures on correct files.

2.8.1 Version

Release: 1.72
Date:      2022, September 25th

2.8.2 Defects Fixed

  • There were parameter errors in XMSS^MT OIDs for XMSSMT_SHA2_40/4_256 and XMSSMT_SHA2_60/3_256. These have been fixed.
  • There was an error in Merkle tree construction for the Evidence Records (ERS) implementation which could result in invalid roots been timestamped. ERS now produces an ArchiveTimeStamp for each data object/group with an associated reduced hash tree. The reduced hash tree is now calculated as a simple path to the root of the tree for each record.
  • OpenPGP will now ignore signatures marked as non-exportable on encoding.
  • A tagging calculation error in GCMSIV which could result in incorrect tags has been fixed.
  • Issues around Java 17 which could result in failing tests have been addressed.

2.8.3 Additional Features and Functionality

  • BCJSSE: TLS 1.3 is now enabled by default where no explicit protocols are supplied (e.g. "TLS" or "Default" SSLContext algorithms, or SSLContext.getDefault() method).
  • BCJSSE: Rewrite SSLEngine implementation to improve compatibility with SunJSSE.
  • BCJSSE: Support export of keying material via extension API.
  • (D)TLS: Add support for 'tls-exporter' channel binding per RFC 9266.
  • (D)TLS (low-level API): By default, only (D)TLS 1.2 and TLS 1.3 are offered now. Earlier versions are still supported if explicitly enabled. Users may need to check they are offering suitable cipher suites for TLS 1.3.
  • (D)TLS (low-level API): Add support for raw public keys per RFC 7250.
  • CryptoServicesRegistrar now has a setServicesConstraints() method on it which can be used to selectively turn off algorithms.
  • The NIST PQC Alternate Candidate, Picnic, has been added to the low level API and the BCPQC provider.
  • SPHINCS+ has been upgraded to the latest submission, SPHINCS+ 3.1 and support for Haraka has been added.
  • Evidence records now support timestamp renewal and hash renewal.
  • The SIKE Alternative Candidate NIST Post Quantum Algorithm has been added to the low-level API and the BCPQC provider.
  • The NTRU Round 3 Finalist Candidate NIST Post Quantum Algorithm has been added to the low-level API and the BCPQC provider.
  • The Falcon Finalist NIST Post Quantum Algorithm has been added to the low-level API and the BCPQC provider.
  • The CRYSTALS-Kyber Finalist NIST Post Quantum Algorithm has been added to the low-level API and the BCPQC provider.
  • Argon2 Support has been added to the OpenPGP API.
  • XDH IES has now been added to the BC provider.
  • The OpenPGP API now supports AEAD encryption and decryption.
  • The NTRU Prime Alternative Candidate NIST Post Quantum Algorithms have been added to the low-level API and the BCPQC provider.
  • The CRYSTALS-Dilithium Finalist NIST Post Quantum Algorithm has been added to the low-level API and the BCPQC provider.
  • The BIKE NIST Post Quantum Alternative/Round-4 Candidate has been added to the low-level API and the BCPQC provider.
  • The HQC NIST Post Quantum Alternative/Round-4 Candidate has been added to the low-level API and the BCPQC provider.
  • Grain128AEAD has been added to the lightweight API.
  • A fast version of CRC24 has been added for use with the PGP API.
  • Some additional methods and fields have been exposed in the PGPOnePassSignature class to (hopefully) make it easier to deal with nested signatures.
  • CMP support classes have been updated to reflect the latest editions to the the draft RFC "Lightweight Certificate Management Protocol (CMP) Profile".
  • Support has been added to the PKCS#12 implementation for the Oracle trusted certificate attribute.
  • Performance of our BZIP2 classes has been improved.

2.8.4 Notes

Keep in mind the PQC algorithms are still under development and we are still at least a year and a half away from published standards. This means the algorithms may still change so by all means experiment, but do not use the PQC algoritms for anything long term.

The legacy "Rainbow" and "McEliece" implementations have been removed from the BCPQC provider. The underlying classes are still present if required. Other legacy algorithm implementations can be found under the org.bouncycastle.pqc.legacy package.

2.8.5 Security Notes

The PQC SIKE algorithm is provided for research purposes only. It should now be regarded as broken. The SIKE implementation will be withdrawn in BC 1.73.

2.9.1 Version

Release: 1.71
Date:      2022, March 31st.

2.9.2 Defects Fixed

  • In line with GPG the PGP API now attempts to preserve comments containing non-ascii UTF-8 characters.
  • An accidental partial dependency on Java 1.7 has been removed from the TLS API.
  • JcaPKIXIdentityBuilder would fail to process File objects correctly. This is now fixed.
  • Some byte[] parameters to the CMP API were not being defensively cloned to prevent accidental changes. Extra defensive cloning has been added.
  • CMS primitives would sometimes convert ASN.1 definite-length encodings into indefinite-length encodings. The primitives will now try and preserve the original encoding where possible.
  • CMSSignedData.getAttributeCertificates() now properly restricts the tag values checked to just 1 (the obsolete v1 tag) and 2 (for the more current v2 certificates).
  • BCJSSE now tries to validate a custom KeyManager selection in order to catch errors around a key manager ignoring key type early.
  • Compressed streams in PGP ending with zero length partial packets could cause failure on parsing the OpenPGP API. This has been fixed.
  • The fallback mode for JceAsymmetricKeyWrapper/Unwrapper would lose track of any algorithm parameters generated in the initial attempt. The algorithm parameters are now propagated.
  • An accidental regression introduced by a fix for another issue in PKIXCertPathReviewer around use of the AuthorityKeyIdentifier extension and it failing to match a certificate uniquely when the serial number field is missing has been fixed.
  • An error was found in the creation of TLS 1.3 Export Keying Material which could cause compatibility issues. This has been fixed.

2.9.3 Additional Features and Functionality

  • Support has been added for OpenPGP regular expression signature packets.
  • Support has been added for OpenPGP PolicyURI signature packets.
  • A utility method has been added to PGPSecretKeyRing to allow for inserting or replacing a PGPPublicKey.
  • A utility method has been added to PGPSecretKeyRing to allow for inserting or replacing a PGPPublicKey.
  • The NIST PQC Finalist, Classic McEliece has been added to the low level API and the BCPQC provider.
  • The NIST PQC Alternate Candidate, SPHINCS+ has been added to the BCPQC provider.
  • The NIST PQC Alternate Candidate, FrodoKEM has been added to the low level API and the BCPQC provider.
  • The NIST PQC Finalist, SABER has been added to the low level API and the BCPQC provider.
  • KMAC128, KMAC256 has been added to the BC provider (empty customization string).
  • TupleHash128, TupleHash256 has been added to the BC provider (empty customization string).
  • ParallelHash128, ParallelHash256 has been added to the BC provider (empty customization string, block size 1024 bits).
  • Two new properties: "org.bouncycastle.rsa.max_size" (default 15360) and "org.bouncycastle.ec.fp_max_size" (default 1042) have been added to cap the maximum size of RSA and EC keys.
  • RSA modulus are now checked to be provably composite using the enhanced MR probable prime test.
  • Imported EC Fp basis values are now validated against the MR prime number test before use. The certainty level of the prime test can be determined by "org.bouncycastle.ec.fp_certainty" (default 100).
  • The BC entropy thread now has a specific name: "BC-ENTROPY-GATHERER".
  • Utility methods have been added for joining/merging PGP public keys and signatures.
  • Blake3-256 has been added to the BC provider.
  • DTLS: optimisation to delayed handshake hash.
  • Further additions to the ETSI 102 941 support in the ETSI/ITS package: certification request, signed message generation and verification now supported.
  • CMSSignedDataGenerator now supports the direct generation of definite-length data.
  • The NetscapeCertType class now has a hasUsages() method on it for querying usage settings on its bit string.
  • Support for additional input has been added for deterministic (EC)DSA.
  • The OpenPGP API provides better support for subkey generation.
  • BCJSSE: Added boolean system properties "org.bouncycastle.jsse.client.dh.disableDefaultSuites" and "org.bouncycastle.jsse.server.dh.disableDefaultSuites". Default "false". Set to "true" to disable inclusion of DH cipher suites in the default cipher suites for client/server respectively.
  • ASN.1 object support has been added for the Lightweight Certificate Management Protocol (CMP), currently in draft.
  • A HybridValueParamterSpec class has been added for use with KeyAgreement to support SP 800-56C hybrid (so classical/post-quantum) key agreement.

2.9.4 Notes

  • The deprecated QTESLA implementation has been removed from the BCPQC provider.
  • The submission update to SPHINCS+ has been added. This changes the generation of signatures - particularly deterministic ones.

2.10.1 Version

Release: 1.70
Date:      2021, November 29th.

2.10.2 Defects Fixed

  • Blake 3 output limit is enforced.
  • The PKCS12 KeyStore was relying on default precedence for its key Cipher implementation so was sometimes failing if used from the keytool. The KeyStore class now makes sure it uses the correct Cipher implementation.
  • Fixed bzip2 compression for empty contents (GH #993).
  • ASN.1: More robust handling of high tag numbers and definite-length forms.
  • BCJSSE: Fix a concurrent modification issue in session contexts (GH#968).
  • BCJSSE: Don't log sensitive system property values (GH#976).
  • BCJSSE: Fixed a priority issue amongst imperfect-match credentials in KeyManager classes.
  • The IES AlgorithmParameters object has been re-written to properly support all the variations of IESParameterSpec.
  • getOutputSize() for ECIES has been corrected to avoid occassional underestimates.
  • The lack of close() in the ASN.1 Dump command line utility was triggering false positives in some code analysis tools. A close() call has been added.
  • PGPPublicKey.getBitStrength() now properly recognises EdDSA keys.

2.10.3 Additional Features and Functionality

  • Missing PGP CRC checksums can now be optionally ignored using setDetectMissingCRC() (default false) on ArmoredInputStream.
  • PGPSecretKey.copyWithNewPassword() now has a variant which uses USAGE_SHA1 for key protection if a PGPDigestCalculator is passed in.
  • PGP ASCII armored data now skips "\t", "\v", and "\f".
  • PKCS12 files with duplicate localKeyId attributes on certificates will now have the incorrect attributes filtered out, rather than the duplicate causing an exception.
  • PGPObjectFactory will now ignore packets representing unrecognised signature versions in the input stream.
  • The X.509 extension generator will now accumulate some duplicate X.509 extensions into a single extension where it is possible to do so.
  • Removed support for maxXofLen in Kangaroo digest.
  • Ignore marker packets in PGP Public and Secret key ring collection.
  • An implementation of LEA has been added to the low-level API.
  • Access, recovery, and direct use for PGP session keys has been added to the OpenPGP API for processing encrypted data.
  • A PGPCanonicalizedDataGenerator has been added which converts input into canonicalized literal data for text and UTF-8 mode.
  • A getUserKeyingMaterial() method has been added to the KeyAgreeRecipientInformation class.
  • ASN.1: Tagged objects (and parsers) now support all tag classes. Special code for ApplicationSpecific has been deprecated and re-implemented in terms of TaggedObject.
  • ASN.1: Improved support for nested tagging.
  • ASN.1: Added support for GraphicString, ObjectDescriptor, RelativeOID.
  • ASN.1: Added support for constructed BitString encodings, including efficient parsing for large values.
  • TLS: Added support for external PSK handshakes.
  • TLS: Check policy restrictions on key size when determining cipher suite support.
  • A performance issue in KeccakDigest due to left over debug code has been identified and dealt with.
  • BKS key stores can now be used for collecting protected keys (note: any attempt to store such a store will cause an exception).
  • A method for recovering user keying material has been added to KeyAgreeRecipientInformation.
  • Support has been added to the CMS API for SHA-3 based PLAIN-ECDSA.
  • The low level BcDefaultDigestProvider now supports the SHAKE family of algorithms and the SM3 alogirthm.
  • PGPKeyRingGenerator now supports creation of key-rings with direct-key identified keys.
  • The PQC NIST candidate, signature algorithm SPHINCS+ has been added to the low-level API.
  • ArmoredInputStream now explicitly checks for a '\n' if in crLF mode.
  • Direct support for NotationDataOccurances, Exportable, Revocable, IntendedRecipientFingerPrints, and AEAD algorithm preferences has been added to PGPSignatureSubpacketVector.
  • Further support has been added for keys described using S-Expressions in GPG 2.2.X.
  • Support for OpenPGP Session Keys from the (draft) Stateless OpenPGP CLI has been added.
  • Additional checks have been added for PGP marker packets in the parsing of PGP objects.
  • A CMSSignedData.addDigestAlgorithm() has been added to allow for adding additional digest algorithm identifiers to CMS SignedData structures when required.
  • Support has been added to CMS for the LMS/HSS signature algorithm.
  • The system property "org.bouncycastle.jsse.client.assumeOriginalHostName" (default false) has been added for dealing with SNI problems related to the host name not being propagate by the JVM.
  • The JcePKCSPBEOutputEncryptorBuilder now supports SCRYPT with ciphers that do not have algorithm parameters (e.g. AESKWP).
  • Support is now added for certificates using ETSI TS 103 097, "Intelligent Transport Systems (ITS)" in the bcpkix package.

2.10.4 Notes.

  • While this release should maintain source code compatibility, developers making use of some parts of the ASN.1 library will find that some classes need recompiling. Apologies for the inconvenience.

2.11.1 Version

Release: 1.69
Date:      2021, June 7th.

2.11.2 Defects Fixed

  • Lightweight and JCA conversion of Ed25519 keys in the PGP API could drop the leading byte as it was zero. This has been fixed.
  • Marker packets appearing at the start of PGP public key rings could cause parsing failure. This has been fixed.
  • ESTService could fail for some valid Content-Type headers. This has been fixed.
  • Originator key algorithm parameters were being passed as NULL in key agreement recipients. The parameters now reflect the value of the parameters in the key's SubjectPublicKeyInfo.
  • ContentType on encapsulated data was not been passed through correctly for authenticated and enveloped data. This has been fixed.
  • NTRUEncryptionParameters and NTRUEncryptionKeyGenerationParameters were not correctly cloning the contained message digest. This has been fixed.
  • CertificateFactory.generateCertificates()/generateCRLs() would throw an exception if extra data was found at the end of a PEM file even if valid objects had been found. Extra data is now ignored providing at least one object found.
  • Internal class PKIXCRLUtil could throw a NullPointerException for CRLs with an absent nextUpdate field. This has been fixed.
  • PGP ArmoredInputStream now fails earlier on malformed headers.
  • The McElieceKobaraImaiCipher was randomly throwing "Bad Padding: invalid ciphertext" exception while decrypting due to leading zeroes been missed during processing of the cipher text. This has been fixed.
  • Ed25519 keys being passed in via OpenSSH key spec are now validated in the KeyFactory.
  • Blowfish keys are now range checked on cipher construction.
  • In some cases PGPSecretKeyRing was failing to search its extraPubKeys list when searching for public keys.
  • The BasicConstraintsValidation class in the BC cert path validation tools has improved conformance to RFC 5280.
  • AlgorithmIdentifiers involving message digests now attempt to follow the latest conventions for the parameters field (basically DER NULL appears less).
  • Fix various conversions and interoperability for XDH and EdDSA between BC and SunEC providers.
  • TLS: Prevent attempts to use KeyUpdate mechanism in versions before TLS 1.3.

2.11.3 Additional Features and Functionality

  • GCM-SIV has been added to the lightweight API and the provider.
  • Blake3 has been added to the lightweight API.
  • The OpenSSL PEMParser can now be extended to add specialised parsers.
  • Base32 encoding has now been added, the default alphabet is from RFC 4648.
  • The KangarooTwelve message digest has been added to the lightweight API.
  • An implementation of the two FPE algorithms, FF1 and FF3-1 in SP 800-38G has been added to the lightweight API and the JCE provider.
  • An implementation of ParallelHash has been added to the lightweight API.
  • An implementation of TupleHash has been added to the lightweight API.
  • RSA-PSS now supports the use of SHAKE128 and SHAKE256 as the mask generation function and digest.
  • ECDSA now supports the use of SHAKE128 and SHAKE256.
  • PGPPBEEncryptedData will now reset the stream if the initial checksum fails so another password can be tried.
  • Iterators on public and secret key ring collections in PGP now reflect the original order of the public/secret key rings they contain.
  • KeyAgreeRecipientInformation now has a getOriginator() method for retrieving the underlying orginator information.
  • PGPSignature now has a getDigestPrefix() method for people wanting exposure to the signature finger print details.
  • The old BKS-V1 format keystore is now disabled by default. If you need to use BKS-V1 for legacy reasons, it can be re-enabled by adding:
    org.bouncycastle.bks.enable_v1=true
    
    to the java.security file. We would be interested in hearing from anyone that needs to do this.
  • PLAIN-ECDSA now supports the SHA3 digests.
  • Some highlevel support for RFC 4998 ERS has been added for ArchiveTimeStamp and EvidenceRecord. The new classes are in the org.bouncycastle.tsp.ers package.
  • ECIES has now also support SHA256, SHA384, and SHA512.
  • digestAlgorithms filed in CMS SignedData now includes counter signature digest algorithms where possible.
  • A new property "org.bouncycastle.jsse.config" has been added which can be used to configure the BCJSSE provider when it is created using the no-args constructor.
  • In line with changes in OpenSSL 1.1.0, OpenSSLPBEParametersGenerator can now be configured with a digest.
  • PGPKeyRingGenerator now includes a method for adding a subkey with a primary key binding signature.
  • Support for ASN.1 PRIVATE tags has been added.
  • Performance enhancements to Nokeon, AES, GCM, and SICBlockCipher.
  • Support for ecoding/decoding McElieceCCA2 keys has been added to the PQC API
  • BCJSSE: Added support for jdk.tls.maxCertificateChainLength system property (default is 10).
  • BCJSSE: Added support for jdk.tls.maxHandshakeMessageSize system property (default is 32768).
  • BCJSSE: Added support for jdk.tls.client.enableCAExtension (default is 'false').
  • BCJSSE: Added support for jdk.tls.client.cipherSuites system property.
  • BCJSSE: Added support for jdk.tls.server.cipherSuites system property.
  • BCJSSE: Extended ALPN support via standard JSSE API to JDK 8 versions after u251/u252.
  • BCJSSE: Key managers now support EC credentials for use with TLS 1.3 ECDSA signature schemes (including brainpool).
  • TLS: Add TLS 1.3 support for brainpool curves per RFC 8734.

2.11.4 Notes

  • There is a small API change in the PKIX package to the DigestAlgorithmIdentifierFinder interface as a find() method that takes an ASN1ObjectIdentifier has been added to it. For people wishing to extend their own implementations, see DefaultDigestAlgorithmIdentifierFinder for a sample implementation.
  • A version of the bcmail API supporting Jakarta Mail has now been added (see bcjmail jar).
  • Some work has been done on moving out code that does not need to be in the provider jar. This has reduced the size of the provider jar and should also make it easier for developers to patch the classes involved as they no longer need to be signed. bcpkix and bctls are both dependent on the new bcutil jar.

2.12.1 Version

Release: 1.68
Date:      2020, December 21st.

2.12.2 Defects Fixed

  • Some BigIntegers utility methods would fail for BigInteger.ZERO. This has been fixed.
  • PGPUtil.isKeyRing() was not detecting secret sub-keys in its input. This has been fixed.
  • The ASN.1 class, ArchiveTimeStamp was insisting on a value for the optional reducedHashTree field. This has been fixed.
  • BCJSSE: Lock against multiple writers - a possible synchronization issue has been removed.

2.12.3 Additional Features and Functionality

  • BCJSSE: Added support for system property com.sun.net.ssl.requireCloseNotify. Note that we are using a default value of 'true'.
  • BCJSSE: 'TLSv1.3' is now a supported protocol for both client and server. For this release it is only enabled by default for the 'TLSv1.3' SSLContext, but can be explicitly enabled using 'setEnabledProtocols' on an SSLSocket or SSLEngine, or via SSLParameters.
  • BCJSSE: Session resumption is now also supported for servers in TLS 1.2 and earlier. For this release it is disabled by default, and can be enabled by setting the boolean system property org.bouncycastle.jsse.server.enableSessionResumption to 'true'.
  • The provider RSA-PSS signature names that follow the JCA naming convention.
  • FIPS mode for the BCJSSE now enforces namedCurves for any presented certificates.
  • PGPSignatureSubpacketGenerator now supports editing of a pre-existing sub-packet list.

2.13.1 Version

Release: 1.67
Date:      2020, November 1st.

2.13.2 Defects Fixed

  • BCJSSE: SunJSSE compatibility fix - override of getChannel() removed and 'urgent data' behaviour should now conform to what the SunJSSE expects.
  • Nested BER data could sometimes cause issues in octet strings. This has been fixed.
  • Certificates/CRLs with short signatures could cause an exception in toString() in the BC X509 Certificate implmentation. This has been fixed.
  • In line with latest changes in the JVM, SignatureSpis which don't require parameters now return null on engineGetParameters().
  • The RSA KeyFactory now always preferentially produces RSAPrivateCrtKey where it can on requests for a KeySpec based on an RSAPrivateKey.
  • CMSTypedStream$FullReaderStream now handles zero length reads correctly.
  • Unecessary padding was added on KMAC when the key length was block aligned. This has been fixed.
  • Zero length data would cause an unexpected exception from RFC5649WrapEngine. This has been fixed.
  • OpenBSDBcrypt was failing to handle some valid prefixes. This has been fixed.

2.13.3 Additional Features and Functionality

  • Performance of Argon2 has been improved.
  • Performance of Noekeon has been improved.
  • A setSessionKeyObfuscation() method has been added to PublicKeyKeyEncryptionMethodGenerator to allow turning off of session key obfuscation (default is on, method primarily to get around early version GPG issues with AES-128 keys).
  • Implemented 'safegcd' constant-time modular inversion (as well as a variable-time variant). It has replaced Fermat inversion in all our EC code, and BigInteger.modInverse in several other places, particularly signers. This improves side-channel protection, and also gives a significant performance boost.
  • Performance of custom binary ECC curves and Edwards Curves has been improved.
  • BCJSSE: New boolean system property 'org.bouncycastle.jsse.keyManager.checkEKU' allows to disable ExtendedKeyUsage restrictions when selecting credentials (although the peer may still complain).
  • Initial support has been added for "Composite Keys and Signatures For Use In Internet PKI" using the test OID. Please note there will be further refinements to this as the draft is standardised.
  • The BC EdDSA signature API now supports keys implementing all methods on the EdECKey and XECKey interfaces directly.
  • Work has begun on classes to support the ETSI TS 103 097, Intelligent Transport Systems (ITS) in the bcpkix package.
  • Further optimization work has been done on GCM.
  • A NewHope based processor, similar to the one for Key Agreement has been added for trying to "quantum hard" KEM algorithms.
  • PGP clear signed signatures now support SHA-224.
  • Treating absent vs NULL as equivalent can now be configured by a system property. By default this is not enabled.
  • Mode name checks in Cipher strings should now make sure an improper mode name always results in a NoSuchAlgorithmException.
  • In line with changes in OpenSSL, the OpenSSLPBKDF now uses UTF-8 encoding.

2.13.4 Security Advisory

  • As described in CVE-2020-28052, the OpenBSDBCrypt.checkPassword() method had a flaw in it due to a change for BC 1.65. BC 1.66 is also affected. The issue is fixed in BC 1.67. If you are using OpenBSDBCrypt.checkPassword() and you are using BC 1.65 or BC 1.66 we strongly advise moving to BC 1.67 or later.

2.14.1 Version

Release: 1.66
Date:      2020, July 4th.

2.14.2 Defects Fixed

  • EdDSA verifiers now reset correctly after rejecting overly long signatures.
  • BCJSSE: SSLSession.getPeerCertificateChain could throw NullPointerException. This has been fixed.
  • qTESLA-I verifier would reject some valid signatures. This has been fixed.
  • qTESLA verifiers now reject overly long signatures.
  • PGP regression caused failure to preserve existing version header when headers were reset. This has now been fixed.
  • PKIXNameConstraintValidator had a bad cast preventing use of multiple OtherName constraints. This has been fixed.
  • Serialisation of the non-CRT RSA Private Key could cause a NullPointerException. This has been fixed.
  • An extra 4 bytes was included in the start of HSS public key encodings. This has been fixed.
  • CMS with Ed448 using a direct signature was using id-shake256-len rather than id-shake256. This has been fixed.
  • Use of GCMParameterSpec could cause an AccessControlException under some circumstances. This has been fixed.
  • DTLS: Fixed high-latency HelloVerifyRequest handshakes.
  • An encoding bug for rightEncoded() in KMAC has been fixed.
  • For a few values the cSHAKE implementation would add unnecessary pad bytes where the N and S strings produced encoded data that was block aligned. This has been fixed.
  • There were a few circumstances where Argon2BytesGenerator might hit an unexpected null. These have been removed.

2.14.3 Additional Features and Functionality

  • The qTESLA signature algorithm has been updated to v2.8 (20191108).
  • BCJSSE: Client-side OCSP stapling now supports status_request_v2 extension.
  • Support has been added for PKIXRevocationChecker for users of Java 8 and later.
  • Support has been added for "ocsp.enable", "ocsp.responderURL" for users of Java 8 and later.
  • Support has been added for "org.bouncycastle.x509.enableCRLDP" to the PKIX validator.
  • BCJSSE: Now supports system property 'jsse.enableFFDHE'
  • BCJSSE: Now supports system properties 'jdk.tls.client.SignatureSchemes' and 'jdk.tls.server.SignatureSchemes'.
  • Multi-release support has been added for Java 11 XECKeys.
  • Multi-release support has been added for Java 15 EdECKeys.
  • The MiscPEMGenerator will now output general PrivateKeyInfo structures.
  • A new property "org.bouncycastle.pkcs8.v1_info_only" has been added to make the provider only produce version 1 PKCS8 PrivateKeyInfo structures.
  • The PKIX CertPathBuilder will now take the target certificate from the target constraints if a specific certificate is given to the selector.
  • BCJSSE: A range of ARIA and CAMELLIA cipher suites added to supported list.
  • BCJSSE: Now supports the PSS signature schemes from RFC 8446 (TLS 1.2 onwards).
  • Performance of the Base64 encoder has been improved.
  • The PGPPublicKey class will now include direct key sigantures when checking for key expiry times.

2.14.4 Notes

The qTESLA update breaks compatibility with previous versions. Private keys now include a hash of the public key at the end, and signatures are no longer interoperable with previous versions.

2.15.1 Version

Release: 1.65
Date:      2020, March 31st.

2.15.2 Defects Fixed

  • DLExternal would encode using DER encoding for tagged SETs. This has been fixed.
  • ChaCha20Poly1305 could fail for large (>~2GB) files. This has been fixed.
  • ChaCha20Poly1305 could fail for small updates when used via the provider. This has been fixed.
  • Properties.getPropertyValue could ignore system property when other local overrides set. This has been fixed.
  • The entropy gathering thread was not running in daemon mode, meaning there could be a delay in an application shutting down due to it. This has been fixed.
  • A recent change in Java 11 could cause an exception with the BC Provider's implementation of PSS. This has been fixed.
  • BCJSSE: TrustManager now tolerates having no trusted certificates.
  • BCJSSE: Choice of credentials and signing algorithm now respect the peer's signature_algorithms extension properly.
  • BCJSSE: KeyManager for KeyStoreBuilderParameters no longer leaks memory.

2.15.3 Additional Features and Functionality

  • LMS and HSS (RFC 8554) support has been added to the low level library and the PQC provider.
  • SipHash128 support has been added to the low level library and the JCE provider.
  • BCJSSE: BC API now supports explicitly specifying the session to resume.
  • BCJSSE: Ed25519, Ed448 are now supported when TLS 1.2 or higher is negotiated (except in FIPS mode).
  • BCJSSE: Added support for extended_master_secret system properties: jdk.tls.allowLegacyMasterSecret, jdk.tls.allowLegacyResumption, jdk.tls.useExtendedMasterSecret .
  • BCJSSE: KeyManager and TrustManager now check algorithm constraints for keys and certificate chains.
  • BCJSSE: KeyManager selection of server credentials now prefers matching SNI hostname (if any).
  • BCJSSE: KeyManager may now fallback to imperfect credentials (expired, SNI mismatch).
  • BCJSSE: Client-side OCSP stapling support (beta version: via status_request extension only, provides jdk.tls.client.enableStatusRequestExtension, and requires CertPathBuilder support).
  • TLS: DSA in JcaTlsCrypto now falls back to stream signing to work around NoneWithDSA limitations in default provider.

2.16.1 Version

Release: 1.64
Date:      2019, October 7th.

2.16.2 Defects Fixed

  • OpenSSH: Fixed padding in generated Ed25519 private keys.
  • Validation of headers in PemReader now looks for tailing dashes in header.
  • PKIXNameConstraintValidator was throwing a NullPointerException on OtherName. This has been fixed.
  • Some compatibility issues around the signature encryption algorithm field in CMS SignedData and the GOST algorithms have been addressed.
  • GOST3410-2012-512 now uses the GOST3411-2012-256 as its KDF digest.

2.16.3 Additional Features and Functionality

  • PKCS12: key stores containing only certificates can now be created without the need to provide passwords.
  • BCJSSE: Initial support for AlgorithmConstraints; protocol versions and cipher suites.
  • BCJSSE: Initial support for 'jdk.tls.disabledAlgorithms'; protocol versions and cipher suites.
  • BCJSSE: Add SecurityManager check to access session context.
  • BCJSSE: Improved SunJSSE compatibility of the NULL_SESSION.
  • BCJSSE: SSLContext algorithms updated for SunJSSE compatibility (default enabled protocols).
  • The digest functions Haraka-256 and Haraka-512 have been added to the provider and the light-weight API
  • XMSS/XMSS^MT key management now allows for allocating subsets of the private key space using the extraKeyShard() method. Use of StateAwareSignature is now deprecated.
  • Support for Java 11's NamedParameterSpec class has been added (using reflection) to the EC and EdEC KeyPairGenerator implementations.

2.16.4 Removed Features and Functionality

  • Deprecated ECPoint 'withCompression' tracking has been removed.

2.16.5 Security Advisory

  • A change to the ASN.1 parser in 1.63 introduced a regression that can cause an OutOfMemoryError to occur on parsing ASN.1 data. We recommend upgrading to 1.64, particularly where an application might be parsing untrusted ASN.1 data from third parties.

2.17.1 Version

Release: 1.63
Date:      2019, September 10th.

2.17.2 Defects Fixed

  • The ASN.1 parser would throw a large object exception for some objects which could be safely parsed. This has been fixed.
  • GOST3412-2015 CTR mode was unusable at the JCE level. This has been fixed.
  • The DSTU MACs were failing to reset fully on doFinal(). This has been fixed.
  • The DSTU MACs would throw an exception if the key was a multiple of the size as the MAC's underlying buffer size. This has been fixed.
  • EdEC and QTESLA were not previously usable with the post Java 9 module structure. This is now fixed.
  • ECNR was not correctly bounds checking the input and could produce invalid signatures. This is now fixed.
  • ASN.1: Enforce no leading zeroes in OID branches (longer than 1 character).
  • TLS: Fix X448 support in JcaTlsCrypto.
  • Fixed field reduction for secp128r1 custom curve.
  • Fixed unsigned multiplications in X448 field squaring.
  • Some issues over subset Name Constraint validation in the CertPath analyser have now been fixed.
  • TimeStampResponse.getEncoded() could throw an exception if the TimeStampToken was null. This has been fixed.
  • Unnecessary memory usage in the ARGON2 implementation has been removed.
  • Param-Z in the GOST-28147 algorithm was not resolving correctly. This has been fixed.
  • It is now possible to specify different S-Box parameters for the GOST 28147-89 MAC.

2.17.3 Additional Features and Functionality

  • QTESLA is now updated with the round 2 changes. Note: the security catergories, and in some cases key generation and signatures, have changed. For people interested in comparison, the round 1 version is now moved to org.bouncycastle.pqc.crypto.qteslarnd1 - this package will be deleted in 1.64. Please keep in mind that QTESLA may continue to evolve.
  • Support has been added for generating Ed25519/Ed448 signed certificates.
  • A method for recovering the message/digest value from an ECNR signature has been added.
  • Support for the ZUC-128 and ZUC-256 ciphers and MACs has been added to the provider and the lightweight API.
  • Support has been added for ChaCha20-Poly1305 AEAD mode from RFC 7539.
  • Improved performance for multiple ECDSA verifications using same public key.
  • Support for PBKDF2withHmacSM3 has been added to the BC provider.
  • The S/MIME API has been fixed to avoid unnecessary delays due to DNS resolution of a hosts name in internal MimeMessage preparation.
  • The valid path for EST services has been updated to cope with the characters used in the Aruba clearpass EST implementation.

2.18.1 Version

Release: 1.62
Date:      2019, June 3rd.

2.18.2 Defects Fixed

  • DTLS: Fixed infinite loop on IO exceptions.
  • DTLS: Retransmission timers now properly apply to flights monolithically.
  • BCJSSE: setEnabledCipherSuites ignores unsupported cipher suites.
  • BCJSSE: SSLSocket implementations store passed-in 'host' before connecting.
  • BCJSSE: Handle SSLEngine closure prior to handshake.
  • BCJSSE: Provider now configurable using security config under Java 11 and later.
  • EdDSA verifiers now reject overly long signatures.
  • XMSS/XMSS^MT OIDs now using the values defined in RFC 8391.
  • XMSS/XMSS^MT keys now encoded with OID at start.
  • An error causing valid paths to be rejected due to DN based name constraints has been fixed in the CertPath API.
  • Name constraint resolution now includes special handling of serial numbers.
  • Cipher implementations now handle ByteBuffer usage where the ByteBuffer has no backing array.
  • CertificateFactory now enforces presence of PEM headers when required.
  • A performance issue with RSA key pair generation that was introduced in 1.61 has been mostly eliminated.

2.18.3 Additional Features and Functionality

  • Builders for X509 certificates and CRLs now support replace and remove extension methods.
  • DTLS: Added server-side support for HelloVerifyRequest.
  • DTLS: Added support for an overall handshake timeout.
  • DTLS: Added support for the heartbeat extension (RFC 6520).
  • DTLS: Improve record seq. behaviour in HelloVerifyRequest scenarios.
  • TLS: BasicTlsPSKIdentity now reusable (returns cloned array from getPSK).
  • BCJSSE: Improved ALPN support, including selectors from Java 9.
  • Lightweight RSADigestSigner now support use of NullDigest.
  • SM2Engine now supports C1C3C2 mode.
  • SHA256withSM2 now added to provider.
  • BCJSSE: Added support for ALPN selectors (including in BC extension API for earlier JDKs).
  • BCJSSE: Support 'SSL' algorithm for SSLContext (alias for 'TLS').
  • The BLAKE2xs XOF has been added to the lightweight API.
  • Utility classes added to support journaling of SecureRandom and algorithms to allow persistance and later resumption.
  • PGP SexprParser now handles some unprotected key types.
  • NONEwithRSA support added to lightweight RSADigestSigner.
  • Support for the Ethereum flavor of IES has been added to the lightweight API.

2.19.1 Version

Release: 1.61
Date:      2019, February 4th.

2.19.2 Defects Fixed

  • Use of EC named curves could be lost if keys were constructed via a key factory and algorithm parameters. This has been fixed.
  • RFC3211WrapEngine would not properly handle messages longer than 127 bytes. This has been fixed.
  • The JCE implementations for RFC3211 would not return null AlgorithmParameters. This has been fixed.
  • TLS: Don't check CCS status for hello_request.
  • TLS: Tolerate unrecognized hash algorithms.
  • TLS: Tolerate unrecognized SNI types.
  • An incompatibility issue in ECIES-KEM encryption in cofactor mode has been fixed.
  • An issue with XMSS/XMSSMT private key loading which could result in invalid signatures has been fixed.
  • StateAwareSignature.isSigningCapable() now returns false when the key has reached it's maximum number of signatures.
  • The McEliece KeyPairGenerator was failing to initialize the underlying class if a SecureRandom was explicitly passed.
  • The McEliece cipher would sometimes report the wrong value on a call to Cipher.getOutputSize(int). This has been fixed.
  • CSHAKEDigest.leftEncode() was using the wrong endianness for multi byte values. This has been fixed.
  • Some ciphers, such as CAST6, were missing AlgorithmParameters implementations. This has been fixed.
  • An issue with the default "m" parameter for 1024 bit Diffie-Hellman keys which could result in an exception on key pair generation has been fixed.
  • The SPHINCS256 implementation is now more tolerant of parameters wrapped with a SecureRandom and will not throw an exception if it receives one.
  • A regression in PGPUtil.writeFileToLiteralData() which could cause corrupted literal data has been fixed.
  • Several parsing issues related to the processing of CMP PKIPublicationInfo have been fixed.
  • The ECGOST curves for id-tc26-gost-3410-12-256-paramSetA and id-tc26-gost-3410-12-512-paramSetC had incorrect co-factors. These have been fixed.

2.19.3 Additional Features and Functionality

  • The qTESLA signature algorithm has been added to PQC light-weight API and the PQC provider.
  • The password hashing function, Argon2 has been added to the lightweight API.
  • BCJSSE: Added support for endpoint ID validation (HTTPS, LDAP, LDAPS).
  • BCJSSE: Added support for 'useCipherSuitesOrder' parameter.
  • BCJSSE: Added support for ALPN.
  • BCJSSE: Various changes for improved compatibility with SunJSSE.
  • BCJSSE: Provide default extended key/trust managers.
  • TLS: Added support for TLS 1.2 features from RFC 8446.
  • TLS: Removed support for EC point compression.
  • TLS: Removed support for record compression.
  • TLS: Updated to RFC 7627 from draft-ietf-tls-session-hash-04.
  • TLS: Improved certificate sig. alg. checks.
  • TLS: Finalised support for RFC 8442 cipher suites.
  • Support has been added to the main Provider for the Ed25519 and Ed448 signature algorithms.
  • Support has been added to the main Provider for the X25519 and X448 key agreement algorithms.
  • Utility classes have been added for handling OpenSSH keys.
  • Support for processing messages built using GPG and Curve25519 has been added to the OpenPGP API.
  • The provider now recognises the standard SM3 OID.
  • A new API for directly parsing and creating S/MIME documents has been added to the PKIX API.
  • SM2 in public key cipher mode has been added to the provider API.
  • The BCFKSLoadStoreParameter has been extended to allow the use of certificates and digital signatures for verifying the integrity of BCFKS key stores.

2.19.4 Removed Features and Functionality

  • Deprecated methods for EC point construction independent of curves have been removed.

2.20.1 Version

Release: 1.60
Date:      2018, June 30

2.20.2 Defects Fixed

  • Base64/UrlBase64 would throw an exception on a zero length string. This has been fixed.
  • Base64/UrlBase64 would throw an exception if there was whitespace in the last 4 characters. This has been fixed.
  • The SM2 Signature JCE class now properly resets of Signature.sign() is called.
  • XMSS applies further validation to deserialisation of the BDS tree so that failure occurs as soon as tampering is detected (see CVE below).
  • An off by one error in the JsseDefaultHostnameAuthorizer isValidNameMatch method has been fixed.
  • BCJSSE: Return empty byte array instead of null, for the null session ID.
  • If a checksum calculator was passed to a PGPSecretKey constructor, but the encryptor was set to null, the wrong checksum would be calculated for the S2K usage. This has been fixed.
  • The CRMF EncryptedValue, when containing a private key, held an encoding of an EncryptedPrivateKeyInfo, rather than just the encrypted bytes. This has been fixed.
  • EC point precomputations could fail due to race conditions in concurrent settings. Point precomputation was reworked to fix this.
  • PGP key rings containing EdDSA signatures would cause an exception on parsing. This has been fixed.
  • BCJSSE: a mixed case error for brainpool curves in the supported groups set has been fixed.
  • getVersion() on the CRMF CertTemplate class could cause a null pointer exception if the optional version field was left out. This has been fixed.
  • Use of a short buffer with RSA via the JCE could result in an escaping ArrayIndexOutOfBoundsException. This has been fixed so that a ShortBufferException is now thrown.
  • SM2Engine.decrypt() ignored the offset parameter and assumed zero. This has been fixed.
  • A PEM encoded TRUSTED CERTIFICATE missing a trust block would result in a NullPointerException. This has been fixed.
  • If the Sun provider was removed entirely the BC SecureRandom was unable to seed and caused an InstantiationException. A back up seeding strategy has been added to prevent this.
  • In some situations the use of sm2p256v1 would result in "unknown curve name". This has been fixed.
  • CMP PollReqContent now supports multiple certificate request IDs.

2.20.3 Additional Features and Functionality

  • TLS: Extended CBC padding is now optional (and disabled by default).
  • TLS: Now supports channel binding 'tls-server-end-point'.
  • TLS: InterruptedIOException (e.g. socket timeout) during app-data reads no longer fails connection; handshake is optionally resumable after IIOE using 'TlsProtocol.setResumableHandshake()'.
  • TLS: Added utility methods and constants for ALPN (RFC 7301).
  • BCJSSE: Now supports system property 'jdk.tls.client.protocols'
  • BCJSSE: Now supports SSLParameters.setSNIMatchers.
  • BCJSSE: SNI can now be used in earlier JDKs via BC extensions.
  • BCJSSE: Session context now holds sessions via soft references.
  • An implementation of CryptoServicesRegistrar has been added to allow configuring of DSA/DH parameters and global setting of the SecureRandom used in the APIs.
  • Support has been added for the Unified Model of key agreement for both regular Diffie-Hellman and ECCDH.
  • Standard key-wrapping ciphers can now be used for wrapping other data where the cipher supports it.
  • BCFKS can now support the use of generalised wrapping algorithms.
  • A parser has now been added for the GNU keybox file format.
  • The GPG SExpr parser now covers a wider range of key types and validates associated checksums as well.
  • PGP EC operations now support more than just NIST curves.
  • Restrictions on the output sizes of the Blake2b/s digests in the lightweight API have been removed.
  • The Whirlpool digest OID has been added to its corresponding mappings for the JCA.
  • Support has been added for SHA-3 based signatures to the CMS API.
  • Support has been added to the CMS API for the generation of ECGOST key transport messages.
  • The ECElGamalEncryptor now supports the use of ECGOST curves.
  • The number of signature subpackets in OpenPGP signatures that are converted into explicit types automatically has been increased.
  • RFC 8032: Added low-level implementations of Ed25519 and Ed448.
  • The provider jars now include a services entry for the 2 providers they hold.
  • Support has been added for the German BSI KAEG Elliptic Curve key agreement algorithm with X9.63 as the KDF to the JCE.
  • Support has been added for the German BSI KAEG Elliptic Curve session key KDF to the lightweight API.

2.20.4 Security Related Changes and CVE's Addressed by this Release

  • CVE-2018-1000180: issue around primality tests for RSA key pair generation if done using only the low-level API.
  • CVE-2018-1000613: lack of class checking in deserialization of XMSS/XMSS^MT private keys with BDS state information.

2.21.1 Version

Release: 1.59
Date:      2017, December 28

2.21.2 Defects Fixed

  • Issues with using PQC based keys with the provided BC KeyStores have now been fixed.
  • ECGOST-2012 public keys were being encoded with the wrong OID for the digest parameter in the algorithm parameter set. This has been fixed.
  • SM3 has now been added as an acceptable algorithm for TSP timestamps.
  • SM2 signatures were using the wrong default identity value. This has now been fixed.
  • An edge condition in Blake2b for hashes on data with a length in the range of 2**64 - 127 to 2**64 has been identifed and fixed.
  • The ISO Trailer for SHA512/256 used in X9.31 and ISO9796-2 signatures was incorrect. This has been fixed.
  • The BCJSSE SSLEngine implementation now correctly wraps/unwraps application data only in whole records.
  • The curve parameters for tc26_gost_3410_12_256_paramSetA were incorrect. These have been fixed.
  • Further work has been done to try and prevent escaping exceptions on opening random files as BCFKS files or PKCS#12 files.
  • An off-by-one error for the max N check for SCRYPT has been fixed. SCRYPT should now be compliant with RFC 7914.
  • ASN1GeneralizedTime will now accept a broader range of input strings.

2.21.3 Additional Features and Functionality

  • GOST3410-94 private keys encoded using ASN.1 INTEGER are now accepted in private key info objects.
  • SCRYPT is now supported as a SecretKeyFactory in the provider and in the PKCS8 APIs
  • The BCJSSE provider now supports session resumption in clients.
  • The BCJSSE provider now supports Server Name Indication.
  • The BCJSSE provider now supports the jdk.tls.namedGroups system property.
  • The BCJSSE provider now supports the org.bouncycastle.jsse.ec.disableChar2 system property, which optionally disables the use of characteristic-2 elliptic curves.
  • EC key generation and signing now use cache-timing resistant table lookups.
  • Performance of the DSTU algorithms has been greatly improved.
  • Support has been added for generating certificates and signatures in the PKIX API using SHA-3 based digests.
  • Further work has been done on improving SHA-3 performance.
  • The organizationIdentifier (2.5.4.97) attribute has been added to BCStyle.
  • GOST3412-2015 has been added to the JCE provider and the lightweight API.
  • The Blake2s message digest has been added to the provider and the lightweight API.
  • Unified Cofactor Diffie-Hellman (ECCDHU) is now supported for EC in the JCE and the lightweight API.
  • A DEROtherInfo generator for key agreement using NewHope as the source of the shared private info has been added that can be used in conjunction with regular key agreement algorithms.
  • RFC 7748: Added low-level implementations of X25519 and X448.

2.21.4 Security Related Changes and CVE's Addressed by this Release

  • CVE-2017-13098 ("ROBOT"), a Bleichenbacher oracle in TLS when RSA key exchange is negotiated. This potentially affected BCJSSE servers and any other TLS servers configured to use JCE for the underlying crypto - note the two TLS implementations using the BC lightweight APIs are not affected by this.

2.22.1 Version

Release: 1.58
Date:      2017, August 18

2.22.2 Defects Fixed

  • NewHope and SPHINCS keys are now correctly created off certificates by the BC provider.
  • Use of the seeded constructor with SecureRandom() and the BC provider in first position could cause a stack overflow error. This has been fixed.
  • The boolean flag on ECDSAPublicKey in CVCertficate was hard coded. This has been fixed.
  • An edge condition in IV processing for GOFB mode has been found and fixed.
  • ANSSI named EC curves were not being recognised in PKCS#10 and certificate parsing. This has been fixed.
  • BaseStreamCipher.engineSetMode() could sometimes throw an IllegalArgumentException rather than a NoSuchAlgorithmException. This has been fixed.
  • Some class resolving used by the provider would fail if the BC jar was loaded on the boot class path. This has been fixed.
  • An off-by-one range check in SM2Signer has been fixed.
  • Retrieving an SM2 key from a certificate could result in a NullPointerException due to a problem with the curve lookup. This has been fixed.
  • A race condition that could occur inside the HybridSecureRandom on reseed and result in an exception has been fixed.
  • DTLS now supports records containing multiple handshake messages.

2.22.3 Additional Features and Functionality

  • An implementation of GOST3410-2012 has been added to light weight API and the JCA provider.
  • Support for ECDH GOST3410-2012 and GOST3410-2001 have been added. The CMS API can also handle reading ECDH GOST3410 key transport messages.
  • Additional mappings have been added for a range of CVC-ECDSA algorithms.
  • XMMS and XMSSMT are now available via the BCPQC provider. Support has been added for using these keys in certificates as well.
  • Support has been added for DSTU-7564 message digest and the DSTU-7624 ciphers, together with their associated modes.
  • A new system property org.bouncycastle.asn1.allow_unsafe_integer has been added to allow parsing of malformed ASN.1 integers in a similar fashion to what BC 1.56 did. The default behavior remains as reject malformed integers.
  • SignedMailValidator would only pick up the first email address in a DN, even when there was more than one. This has been fixed.
  • PEMParser will now support a broader range of PBKDFs in encrypted private key files.
  • Work has been done on speeding up the SHA-3 family. The functions are now 3 to 4 times faster.
  • Some EC aliases in the provider had no corresponding implementations. These have been cleaned up.
  • TimeStampResponses now support definite-length encoding to allow the preservation of order in certificates sets for legacy responses.
  • The TSP API now supports SM2withSM3.
  • The BCJSSE provider now has a FIPS mode.
  • The BCJSSE provider now supports layered sockets.
  • The new TLS API now has protocol/API support for the status_request extension (OCSP stapling).
  • The new TLS API now supports RFC 7633 - X.509v3 TLS Feature Extension (e.g. "must staple"), enabled in default clients.
  • TLS exceptions have been made more directly informative.

2.22.4 Removed Features and Functionality

  • Per RFC 7465, removed support for RC4 in the new TLS API.
  • Per RFC 7568, removed support for SSLv3 in the new TLS API.

2.23.1 Version

Release: 1.57
Date:      2017, May 11

2.23.2 Defects Fixed

  • A class cast exception for master certification removal in PGPPublicKey.removeCertification() by certification has been fixed.
  • GOST GOFB 28147-89 mode had an edge condition concerning the incorrect calculation of N4 (see section 6.1 of RFC 5830) affecting about 1% of IVs. This has been fixed.
  • The X.509 PolicyConstraints class was using implicit rather than explicit tagging for the SkipCerts field. This has been fixed.
  • Key expiration in the OpenPGP is now calculated for ambiguous self signatures using the most recently created self-signature, in line with GPG and the recommendation in RFC 4880.
  • Multiple validity periods in PGP keys were resolved in an adhoc fashion, in line with GPG's approach the PGP has been changed to return the most recent validity period signed.
  • An occasional class cast exception that could occur with nested multi-parts in the S/MIME API has been fixed.
  • A couple of bogus aliases associated AlgorithmParameters that did not resolve in the provider have been removed.
  • The CMS API will now correctly verify PSS signatures with odd length salts.
  • Choosing an invalid mode on a stream cipher in the JCE could result in an IllegalArgumentException. This has now been corrected to throw a NoSuchAlgorithmException.
  • Optional parameters for ECDSA public keys in CVCertificates were hard coded to non-optional. This has been fixed.
  • Passing a PKCS12 key to a Mac in the BC JCE always resulted in SHA-1 being used to process the password regardless of the underlying MAC algorithm. This has been fixed. An unrecognised HMAC will also now result in an exception.
  • The Base64 encoder now explicitly validates 2 character padding as being "==".
  • EC FixedPointCombMultiplier avoids 'infinity' point in lookup tables, reducing timing side-channels.
  • Reuse of a Blake2b digest with a call to reset() rather than doFinal() could result in incorrect padding being introduced and the wrong digest result produced. This has been fixed.

2.23.3 Additional Features and Functionality

  • ARIA (RFC 5794) is now supported by the provider and the lightweight API.
  • ARIA Key Wrapping (RFC 5649 style) is now supported by the provider and the lightweight API.
  • SM2 signatures, key exchange, and public key encryption has been added to the lightweight API.
  • XMSS has been added to the lightweight PQ API. Note: this should be treated as beta code.
  • API support for client side EST (RFC 7030), as well as some CMC (RFC 5273) has been added to the PKIX API. A full set of ASN.1 classes for both protocols has been added as well.
  • A test client for EST which will interop with the 7030 test server at http://testrfc7030.com/ has been added to the general test module in the current source tree.
  • The BCJSSE provider now supports SSLContext.getDefault(), with very similar behaviour to the SunJSSE provider, including checks of the relevant javax.net.ssl.* system properties and auto-loading of jssecacerts or cacerts as the default trust store.

2.23.4 Security Related Changes

  • The default parameter sizes for DH and DSA are now 2048. If you have been relying on key pair generation without passing in parameters generated keys will now be larger.
  • Further work has been done on preventing accidental re-use of a GCM cipher without first changing its key or iv.

2.24.1 Version

Release: 1.56
Date:      2016, December 23

2.24.2 Defects Fixed

  • See section 2.15.4 for Security Defects.
  • Using unknown status with the ASN.1 CertStatus primitive could result in an IllegalArgumentException on construction. This has been fixed.
  • A potentional NullPointerException in a precomputation in WNafUtil has been removed.
  • PGPUtil.getDecoderStream() would throw something other than an IOException for empty and very small data. This has been fixed.

2.24.3 Additional Features and Functionality

  • Support for the explicit setting of AlgorithmParameters has been added to the JceCMSContentEncryptorBuilder and the JceCMSMacCaculatorBuilder classes to allow configuration of the session cipher/MAC used.
  • EC, ECGOST3410, and DSTU4145 Public keys are now validated on construction in the JCA/JCE and the light weight API.
  • DSA Public keys are now validated on construction in the JCA/JCE and the light weight API.
  • Diffie-Hellman public keys are now validated where parameters allow it.
  • Some validations are now applied to RSA moduli and public exponents.
  • The ASN.1 Object Identifier cache now uses a Concurrent HashMap for additional speed.
  • AES-CCM MAC support has been added to the provider.
  • Support for ChaCha7539 (ChaCha20 as defined in RFC 7539) and Poly1305 have been added to the provider.
  • Support has been added for defining your own curves and making them available to the key generators and factories.
  • Methods have been added for specifying that a PGPPublicKey/PGPPublicKeyRing is being encoded for export and trust packets are not required.
  • Plain-ECDSA and SHA-3 support has been added to DefaultDigestAlgorithmIdentifierFinder.
  • SHA-3 support has been added to BcDefaultDigestProvider.
  • A higher level TLS API and JSSE provider have been added to the project.

2.24.4 Security Related Changes and CVE's Addressed by this Release

  • It is now possible to configure the provider to only import keys for specific named curves.
  • Work has been done to improve the "constant time" behaviour of the RSA padding mechanisms.
  • The GCM ciphers in the JCE and lightweight API will now fail if an attempt is made to use them for encryption after a doFinal or without changing the IV.
  • The constructor for IESParameterSpec that allows the use of cipher without a nonce has been deleted. See also details for CVE-2016-1000344, CVE-2016-1000352.
  • Strict encoding enforcement has been introduced for ASN1Integer.
  • CVE-2016-1000338: DSA does not fully validate ASN.1 encoding of signature on verification. It is possible to inject extra elements in the sequence making up the signature and still have it validate, which in some cases may allow the introduction of "invisible" data into a signed structure.
  • CVE-2016-1000339: AESFastEngine has a side channel leak if table accesses can be observed. The use of lookup large static lookup tables in AESFastEngine means that where data accesses by the CPU can be observed, it is possible to gain information about the key used to initialize the cipher. We now recommend not using AESFastEngine where this might be a concern. The BC provider is now using AESEngine by default.
  • CVE-2016-1000340: Static ECDH vulnerable to carry propagation bug. Carry propagation bugs in the implementation of squaring for several raw math classes have been fixed (org.bouncycastle.math.raw.Nat???). These classes are used by our custom elliptic curve implementations (org.bouncycastle.math.ec.custom.**), so there was the possibility of rare (in general usage) spurious calculations for elliptic curve scalar multiplications. Such errors would have been detected with high probability by the output validation for our scalar multipliers.
  • CVE-2016-1000341: DSA signature generation vulnerable to timing attack. Where timings can be closely observed for the generation of signatures, the lack of blinding in 1.55 or earlier, may allow an attacker to gain information about the signatures k value and ultimately the private value as well.
  • CVE-2016-1000342: ECDSA does not fully validate ASN.1 encoding of signature on verification. It is possible to inject extra elements in the sequence making up the signature and still have it validate, which in some cases may allow the introduction of "invisible" data into a signed structure.
  • CVE-2016-1000343: DSA key pair generator generates a weak private key if used with default values. If the JCA key pair generator is not explicitly initialised with DSA parameters, 1.55 and earlier generates a private value assuming a 1024 bit key size. In earlier releases this can be dealt with by explicitly passing parameters to the key pair generator.
  • CVE-2016-1000344: DHIES allows the use of unsafe ECB mode. This algorithm is now removed from the provider.
  • CVE-2016-1000345: DHIES/ECIES CBC mode vulnerable to padding oracle attack. For BC 1.55 and older, in an environment where timings can be easily observed, it is possible with enough observations to identify when the decryption is failing due to padding.
  • CVE-2016-1000346: Other party DH public key not fully validated. This can cause issues as invalid keys can be used to reveal details about the other party's private key where static Diffie-Hellman is in use. As of this release the key parameters are checked on agreement calculation.
  • CVE-2016-1000352: ECIES allows the use of unsafe ECB mode. This algorithm is now removed from the provider.

2.24.5 Security Advisory

  • We consider the carry propagation bugs fixed in this release to have been exploitable in previous releases (1.51-1.55), for static ECDH, to reveal the long-term key, per "Practical realisation and elimination of an ECC-related software bug attack", Brumley et.al.. The most common case of this would be the non-ephemeral ECDH ciphersuites in TLS. These are not enabled by default in our TLS implementations, but they can be enabled explicitly by users. We recommend that users DO NOT enable static ECDH ciphersuites for TLS.

2.25.1 Version

Release: 1.55
Date:      2016, August 18

2.25.2 Defects Fixed

  • Issues with cloning of blake digests with salts and personalisation strings have been fixed.
  • The JceAsymmetricValueDecryptor in the CRMF package now attempts to recognise a wider range of parameters for the key wrapping algorithm, rather than relying on a default.
  • GCM now fails if an attempt is made to go past 2^32-1 blocks.
  • (r, k) ordering for Poly1305 has been modified to be brought into line with RFC 7539.
  • An occasional error in Poly1305 due to sign-extension has been fixed.
  • TimeStampRequest was always failing to validate if extensions were present. This has been fixed.
  • ECIES/IES algorithm parameters encoding failed on default parameters. This has been fixed.
  • PGPObjectFactory.iterator() could fail when called on data with multiple stream packets. This has been fixed.
  • The McEliece implementation in the BCPQC provider has been revised and now has working key factories associated with it.
  • The X.509 UserNotice class can now cope with empty sequences.
  • Creation of multiple providers concurrently could cause issues with a non-synchronized Map in the provider. Code is now synchronized.
  • If the lightweight OAEP encoder is fed oversized input it will now throw something more informative than an ArrayOutOfBoundsException or simply truncate.
  • Attempting to use the PasswordRecipientInfoGenerator without explicitly setting the salt would cause a NullPointerException. This has been fixed.
  • The BasicConstraintsValidation in the CertPath API would throw a NullPointerException on an unconstrained path length. This has been fixed.
  • A shift error for > 24 bit numbers in TlsUtils has been fixed.
  • OAEP encryption for a zero length message would create invalid cipher text. This has been fixed.
  • Trying to use of non-default parameters for OAEP in CRMF would resort to the default parameter set. This has been fixed.
  • If the BC provider was not registered, creating a CertificateFactory would cause a new provider object to be created. This has been fixed.

2.25.3 Additional Features and Functionality

  • The DANE API has been updated to reflect the latest standard changes.
  • The signature algorithm SPHINCS-256 has been added to the post-quantum provider (BCPQC). Support is in place for SHA-512 and SHA3-512 (using trees based around SHA512_256 and SHA3_256 respectively).
  • The key exchange algorithm NewHope has been added to the post-quantum provider (BCPQC). Support is in place for the regular configuration using SHA3-256 as the flattening algorithm for the agreed value.
  • The CMS password recipient generator now allows the PRF to be changed to something other than SHA-1
  • Direct support for the SignatureTarget packet has been added to the OpenPGP API.
  • TLS: support for ClientHello Padding Extension (RFC 7685).
  • TLS: support for ECDH_anon key exchange.
  • Support has been added for HMAC SHA-3. Aliases have been added for NIST OIDs for SHA-3 HMAC as well.
  • Support has been added for SHA-3 in DSA, ECDSA, DDSA, and ECDDSA. Aliases have been added for NIST OIDs for DSA and ECDSA as well.
  • Support has been added for SHA-3 with RSA PKCS 1.5, PSS, and OAEP.
  • Support has been added for GOST R 34.11-2012 to the provider and the lightweight API.
  • PGP armored output can now be generated without a version string.
  • The TimeStampTokenGenerator will now generate timestamps down to a millisecond resolution.
  • Additional search methods have been added to PGP public and secret key rings.

2.26.1 Version

Release: 1.54
Date:      2015, December 29

2.26.2 Defects Fixed

  • Blake2b-160, Blake2b-256, Blake2b-384, and Blake2b-512 are now actually in the provider and an issue with cloning Blake2b digests has been fixed.
  • PKCS#5 Scheme 2 using DESede CBC is now supported by the PKCS#12 implementation.
  • The IES engine would sometimes throw a "too short" exception on small messages which were the right length. This has been fixed.
  • Cipher.getOutputSize() for IES ciphers would throw a ClassCastException. This has been fixed.
  • It turns out, after advice one way and another that the NESSIE test vectors for Serpent are now what should be followed and that the vectors in the AES submission are regarded as an algorithm called Tnepres. The Serpent version now follows the NESSIE vectors, and the Tnepres cipher has been added to the provider and the lightweight API for compatibility.
  • Problems with DTLS record-layer version handling were resolved, making version negotiation work properly.

2.26.3 Additional Features and Functionality

  • Camellia and SEED key wrapping are now supported for CMS key agreement
  • The BC TLS/DTLS code now includes a non-blocking API.
  • CTR/SIC mode now support an internal counter. The internal counter can be turned on by passing an IV smaller than the block size of the cipher's algorithm.
  • The lightweight CMS API operators now support CAST5 and RC2 CBC encryption.
  • The CMS API now supports Diffie-Hellman as specified in RFC 3370.
  • Support has been added to the CMS API for PKCS#7 ANY type encapsulated content where the encapsulated content is not an OCTET STRING.
  • PSSSigner in the lightweight API now supports fixed salts.

2.26.4 Security Advisory

  • (D)TLS 1.2: Motivated by CVE-2015-7575, we have added validation that the signature algorithm received in DigitallySigned structures is actually one of those offered (in signature_algorithms extension or CertificateRequest). With our default TLS configuration, we do not believe there is an exploitable vulnerability in any earlier releases. Users that are customizing the signature_algorithms extension, or running a server supporting client authentication, are advised to double-check that they are not offering any signature algorithms involving MD5.

2.26.5 Notes

If you have been using Serpent, you will need to either change to Tnepres, or take into account the fact that Serpent is now byte-swapped compared to what it was before.

2.27.1 Version

Release: 1.53
Date:      2015, October 10

2.27.2 Defects Fixed

  • The BC JCE cipher implementations could sometimes fail when used in conjunction with the JSSE and NIO. This has been fixed.
  • PGPPublicKey.getBitStrength() always returned 0 for EC keys. This has been fixed.
  • A PKCS12 key store containing a looping certificate chain could cause an OutOfMemoryException. This has been fixed.
  • A change in JDK 1.8 meant that X509Certificate.verify(PublicKey, Provider) would cause a stack overflow. This has been fixed.
  • Nested multiparts with irregular post-amble could cause verification issues for the SMIMESigned classes. This has been fixed.
  • CMSSignedData now supports verification of signed attributes where the calculated digest uses a different algorithm from the digest used in the signature.
  • TRUSTED CERTIFICATE parsing in PEM files was ignoring the attribute block. A new class X509TrustedCertificateBlock is now returned containing both the certificate and the trust information.
  • Adding a password to a PGP key which did not previously have one would result in an improperly formatted key. This has been fixed.
  • ECIES/IES was only using a 4 byte label length for the MAC tag when it should have been an 8 byte one. This has now been fixed and OldECIES/OldIES has been added for backwards compatibility.
  • The JceCRMFEncryptorBuilder was not recognising key size specific object identifiers properly. This has been fixed.
  • The OpenPGP ClearSignedFileProcessor would not handle verification of single line files properly. This has been fixed.
  • The BC X509Certificate class was no longer in agreement with the standard class for hashCode(). The BC X509Certificate class will now track the changes made in the standard Java distribution.
  • PGP signature hashed sub-packets with long length encodings would fail to validate on signature checking. This has been fixed.
  • The S/MIME API would occasionally leak InputStreams which could cause issues with custom DataSource implementations. This has been fixed.
  • The PKCS#12 KeyStore implementation would sometimes leave orphaned chain certificates in the key store after private key deletion. This has been fixed.
  • A bug in the DirectKeySignature OpenPGP example which could lead to extra data appearing in the signature has been fixed.
  • Explicit configuration of a BcAsymmetricKeyWrapper with a SecureRandom was not properly propagated internally. This has been fixed.
  • A CRL with a null certificate issuer would sometimes result in a NullPointerException during CertPathProcessing. This has been fixed.
  • The CertPath processor would occasionally fail to match a DistributionPoint name correctly. This has been fixed.
  • In order to avoid confusion about thread safety, BCrypt now uses a new instance for hash calculation every time it is invoked.
  • Some decidedly odd argument casting in the PKIXCertPathValidator has been fixed to throw an InvalidAlgorithmParameterException.
  • Presenting an empty array of certificates to the PKIXCertPathValidator would cause an IndexOutOfRangeException instead of a CertPathValidatorException. This has been fixed.

2.27.3 Additional Features and Functionality

  • It is now possible to specify that an unwrapped key must be usable by a software provider in the asymmetric unwrappers for CMS.
  • A Blake2b implementation has been added to the provider and lightweight API.
  • SHA3 has now been added to the provider and the lightweight API. SHAKE128 and SHAKE256 have also been added to the lightweight API. The original implementation of the draft standard has been renamed to Keccak.
  • The CMS API now supports RFC 6211 for both SignedData and AuthenticatedData.
  • The ASN.1 parser for ECGOST private keys will now parse keys encoded with a private value represented as an ASN.1 INTEGER.
  • EAX mode and CMAC is now supported for ciphers such as SHACAL-2 and Threefish.
  • The SM4 block cipher has been added to the provider and the lightweight API.
  • X9.31, ISO9796/2, and PSS signature support has been added for SHA512/224, SHA512/256.
  • SubjectPublicKeyInfoFactory now supports DSA parameters.
  • A range of new algorithms are now support for EC key agreement.
  • EC ContentSigners and EC ContentVerifiers have been added to the lightweight operator package in the PKIX APIs.
  • The PKCS#12 key store will now garbage collect orphaned certificates on saving.
  • Caching for ASN.1 ObjectIdentifiers has been rewritten to make use of an intern method. The "usual suspects" are now interned automatically, and the cache is used by the parser. Other OIDs can be added to the cache by calling ASN1ObjectIdentifier.intern().

2.27.4 Notes

It turns out there was a similar, but different, issue in Crypto++ to the BC issue with ECIES. Crypto++ 6.0 now offers a corrected version of ECIES which is compatible with that which is now in BC.

2.28.1 Version

Release: 1.52
Date:      2015, March 2

2.28.2 Defects Fixed

  • GenericSigner in the lightweight API would fail if the digest started with a zero byte, occasionally causing a TLS negotiation to fail. This has been fixed.
  • Some BC internal classes expected the BC provider to be accessible within the provider. This has been fixed.
  • Email based policy constraints in CertPath validation did not include '@'domain.name as a possible match. This has been fixed.
  • The Shacal2Engine would throw an ArrayIndexOutOfBoundsException if presented with input longer than a block size. This has been fixed.
  • Using PKCS5/PKCS7 with pad values greater than 127 would result in an exception on decryption. This has been fixed.
  • EC private key values could encode to an OCTET STRING which was shorter than that described in RFC 5915/SEC 1. This has been fixed.
  • Providing multiple trust anchors to the CertPath validator could cause a StackOverflowError on an invalid CertPath. This has been fixed.
  • TLS: bad-padding handling when encrypt-then-MAC enabled is now fixed.
  • ECDH KeyAgreement.init() was not properly honoring the JCE API in respect to non-null parameters. This has been fixed.
  • PKCS symmetric padding now takes into account pad lengths of more than 127 bytes.
  • Corrupted input to RFC5649WrapEngine could cause an out of memory error. This has been fixed.
  • OSGI import issues for bcmail have been fixed.
  • A badly formed issuer in a X.509 certificate could cause a null pointer exception in X509CertificateHolder.toString(). This has been fixed.
  • CMSSignedData.verifySignatures() could fail on a correct counter signature due to a mismatch of the SID. This has been fixed.

2.28.3 Additional Features and Functionality

  • The CMP support class CMPCertificate restricted the types of certificates that could be added. A more flexible method has been introduced to allow for other certificate types.
  • Support classes have be added for DNS-based Authentication of Named Entities (DANE) to the PKIX distribution.
  • Work has been done to reduce computation requirements for long skips associated with implementations of the SkippingCipher interface.
  • AES GCM mode is now supported by CMS EnvelopedData.
  • Iteration count is now settable in BcPKCS12MacCalculatorBuilder.
  • Support for BCrypt and it's OpenBSD variant has been added to the lightweight API.
  • It's now possible to specify the direction of the underlying cipher used for key wrapping with NIST/RFC3394 wrappers.
  • TLS: server-side support for DHE key exchange.
  • TLS: server-side support for PSK and SRP ciphersuites.
  • TLS: (EC)DSA now supports signatures with non-SHA1 digests.
  • TLS: support for ECDHE_ECDSA/AES/CCM ciphersuites from RFC 7251.
  • Cipher.getIV() now returns nonces for AEAD modes.
  • OIDs for dhPublicNumber and dhKeyAgreement are now supported by the provider.
  • OIDs for several signature types using the RIPEMD family of digests have been added to the provider.
  • JcaJceUtils.getDigestAlgName() has been added to assist in converting OIDs representing message digests into JCA algorithm names.
  • BasicOCSPResp.getSignatureAlgorithmID() has been added to allow algorithm indentifier details to be returned from a basic OCSP response.
  • Additional OIDs have been added for OCSP.
  • X509CRLObject.getSignAlgName() now attempts to return an actual name, rather than an OID for, for the signature algorithm.
  • SignedMailValidator now pays attention to the date in the PKIXParameters object if it is set.
  • A missing signing time in a signature no longer causes SignedMailValidator to fail a signature, but provide a warning instead.
  • An AlgorithmNameFinder implementation has been added to the PKIX API to provide "human friendly" translations of algorithm OIDs.
  • Support has been added for X9.31-1998 DRBG and X9.31-1998 RSA signatures to the lightweight API and the provider.
  • CertPath validator will now make use of the issuer key identifier and the issuer name if a key identifier is available for the issuer.
  • Support for some JDK1.5+ language features has finally made its way into the repository.
  • A load store parameter, PKCS12StoreParameter, has been added to support DER only encoding of PKCS12 key stores.

2.28.4 Security Advisory

  • The CTR DRBGs would not populate some bytes in the requested block of random bytes if the size of the block requested was not an exact multiple of the block size of the underlying cipher being used in the DRBG. If you are using the CTR DRBGs with "odd" keysizes, we strongly advise upgrading to this release, or contacting us for a work around.

2.29.1 Version

Release: 1.51
Date:      2014, July 28

2.29.2 Defects Fixed

  • The AEAD GCM AlgorithmParameters object was unable to return a GCMParameterSpec object. This has been fixed.
  • Cipher.getIV() was returning null for AEAD mode ciphers. This has been fixed.
  • CipherInputStream would fail for some AEAD mode ciphers if the message was over 4k in length. This has been fixed.
  • The JCE provider will now produce simple RSAPrivateKey objects where CRT coefficients are not provided.
  • PGP key signature certifications did not support DIRECT KEY signatures. This has been fixed.
  • User Attribute subpackets in PGP with long length encodings could result in certification verification failing. This has been fixed.
  • Calls to CommandMap.setDefaultCommandMap() in the SMIME API are now wrapped in doPrivileged() blocks to allow them to work with a security manager.
  • The encoding of the certificate_authorities field of a TLS CertificateRequest has been fixed.
  • EC point formats are now strictly enforced in the TLS API.
  • The provider implementation was failing to throw an exception if algorithm parameters were passed in when none were required for EC key agreement. This has been fixed.
  • PKCS#12 files containing keys/certificates with empty attribute sets attached to them no longer cause an ArrayIndexOutOfBoundsException to be thrown.
  • Issues with certificate verification and server side DTLS/TLS 1.2 have now been fixed.

2.29.3 Additional Features and Functionality

  • The range of key algorithm names that will be interpreted by KeyAgreement.generateSecret() has been expanded for ECDH derived algorithms in the provider. A KeyAgreement of ECDHwithSHA1KDF can now be explicitly created.
  • ECIES now supports the use of IVs with the underlying block cipher and CBC mode in both the lightweight and the JCE APIs.
  • Support has been add for RFC5649 key wrapping using AES.
  • The PGP API now allows access and handling of User IDs as raw byte arrays, to deal with keyrings not using UTF-8.
  • The PGP API now provides automatic conversion of embedded signatures in signature sub-packet vectors.
  • The PGP API now fully supports ECDH as outlined in RFC 6637.
  • GCM and GMAC now support tag lengths down to 32 bits.
  • Custom implementations for many of the SEC Fp curves have been added, resulting in drastically improved performance. The current list includes all secp***k1 and secp***r1 curves from 192 to 521 bits. They can be accessed via the org.bouncycastle.crypto.ec.CustomNamedCurves class and are generally selected by other internal APIs in place of the generic implementations.
  • Automatic EC point validation added, both for decoded inputs and multiplier outputs.
  • A SkippingCipher interface has been added for ciphers that can be moved into a specific state for a given byte address. The lightweight class StreamBlockCipher has been generalised to support any BlockCipher object that can support a streaming mode.
  • ASN.1 date/time objects now support the passing in of a Locale to allow for constructing the object using a Date interpreted from a different locale to the default for the JVM.
  • The range of Diffie-Hellman OIDs recognised by the provider has been extended.
  • Some utility methods for interpreting OIDs have been exposed in the JcaJceUtils class.
  • A method has been added to CMSSignedData for replacing the OCSP responses associated with a signed message.
  • Use of RC2/RC4 in the CMS is now provider independent.
  • TlsInputStream now provides a means of supporting InputStream.available().
  • Dependencies on the JCA have been removed from PGPObjectFactory.
  • Further work has been done on improving key quality with EC and DSA algorithms.
  • KDFCounterBytesGenerator now supports suffix and prefix fixed input data, as outlined in NIST SP 800-108.
  • Support has been added to allow retrieval and resetting the internal state of the SHA/SHA-2 digests in the lightweight API using an encoded format.
  • BSI plain ECDSA is now supported by the provider.
  • The provider now advertises RSA PSS signature implementations directly using the standard naming.
  • Full support is now provided for client-side auth in the D/TLS server code.
  • Compatibility issues with some OSGI containers have been addressed.

2.29.4 Notes

  • Support for NTRUSigner has been deprecated as the algorithm has been withdrawn.
  • Some changes have affected the return values of some methods. If you are migrating from an earlier release, it is recommended to recompile before using this release.
  • There has been further clean out of deprecated methods in this release. If your code has previously been flagged as using a deprecated method you may need to change it. The OpenPGP API is the most heavily affected.

2.30.1 Version

Release: 1.50
Date:      2013, December 3

2.30.2 Defects Fixed

  • The DualECSP800DRBG sometimes truncated the last block in the generated stream incorrectly. This has been fixed.
  • Keys produced from RSA certificates with specialised parameters would lose the parameter settings. This has been fixed.
  • OAEP parameters were being ignored on CMS key trans recipient processing. This has been fixed.
  • OpenPGP NotationData was restricting the name and value lengths to 255 characters and truncating silently. This has been fixed.
  • CTS mode is now in alignment with the errata for RFC 2040, as detailed in RFC 3962.
  • Occasionally the provider implementation of DH KeyAgreement would drop a leading zero byte off the start of the shared secret (see RFC 2631 2.1.2). This has been fixed.
  • RFC3394WrapEngine was ignoring the offset parameter inOff and using zero instead. This has been fixed.
  • GOST keys would not encode using the CryptoPro parameter set, even if it was available. This has been fixed.
  • The TimeStampRequest stream constructor was not setting the extensions field correctly. This has been fixed.
  • Default RC2 parameters for 40 bit RC2 keys in CMSEnvelopedData were encoding incorrectly. This has been fixed.
  • In case of a long hash the DSTU4145 implementation would sometimes remove one bit too much during truncation. This has been fixed.

2.30.3 Additional Features and Functionality

  • Additional work has been done on CMS recipient generation to simplify the generation of OAEP encrypted messages and allow for non-default parameters.
  • OCB implementation updated to account for changes in draft-irtf-cfrg-ocb-03.
  • RFC 6637 ECDSA and ECDH support has been added to the OpenPGP API.
  • Implementations of Threefish and Skein have been added to the provider and the lightweight API.
  • Implementations of the SM3 digest have been added to the provider and the lightweight API.
  • The 3 MAC based KDF generators in NIST SP 800-108 have been added to the lightweight API.
  • Support has been added for the GOST PKCS#5 PBKDF2 PBE function and handling of GOST PKCS#12 files.
  • Support has been added for the CryptoPro GOST CFB mode key meshing.
  • Implementations of XSalsa20 and ChaCha have been added. Support for reduced round Salas20 has been added.
  • Support has been added for RFC 6979 Determinstic DSA/ECDSA to the provider and the lightweight API.
  • Support for RC2 and RC4 in the CMS API has been generalised to work for other JCE providers.
  • Support for the Poly1305 MAC has been added to the lightweight API and the JCE Provider.
  • OpenSSL JcaPEMKeyConverter now supports OIDs for RSA and DSA as well as ECDSA.
  • A simplified certificate path API has been added to the PKIX package. It is not fully NIST compliant yet, however it does provide a range of basic validations without having to use the JCA.
  • Package version information is now included in the jar MANIFEST.MF.
  • The JDK 1.5+ provider will now recognise and use GCMParameterSpec if it is run in a 1.7 JVM.
  • Client side support and some server side support has been added for TLS/DTLS 1.2.

2.30.4 Notes

  • org.bouncycastle.crypto.DerivationFunction is now a base interface, the getDigest() method appears on DigestDerivationFunction.
  • Recent developments at NIST indicate the SHA-3 may be changed before final standardisation. Please bare this in mind if you are using it.
  • Other recent developments have raised concerns about the DualECDRBG. We have left the class in place for now, but it is now possible to provide your own parameter values, rather than using the NIST defined ones, if you choose to do so.
  • Most deprecated methods have been removed from the PKIX API.
  • As the IDEA patent has finally expired, IDEA is now supported by the standard provider.
  • ECDH support for OpenPGP should still be regarded as experimental. It is still possible there will be compliance issues with other implementations.

2.31.1 Version

Release: 1.49
Date:      2013, May 31

2.31.2 Defects Fixed

  • Occasional ArrayOutOfBounds exception in DSTU-4145 signature generation has been fixed.
  • The handling of escaped characters in X500 names is much improved.
  • The BC CertificateFactory no longer returns null for CertificateFactory.getCertPathEncodings().
  • PKCS10CertificationRequestBuilder now encodes no attributes as empty by default. Encoding as absent is still available via a boolean flag.
  • DERT61String has been reverted back to its previous implementation. A new class DERT61UTF8String has been introduced which defaults to UTF-8 encoding.
  • OAEPEncoding could throw an array output bounds exception for small keys with large mask function digests. This has been fixed.
  • PEMParser would throw a NullPointerException if it ran into explicit EC curve parameters, it would also throw an Exception if the named curve was not already defined. The parser now returns X9ECParmameters for explicit parameters and returns an ASN1ObjectIdentifier for a named curve.
  • The V2TBSCertListGenerator was adding the wrong date type for CRL invalidity date extensions. This has been fixed.

2.31.3 Additional Features and Functionality

  • A SecretKeyFactory has been added that enables use of PBKDF2WithHmacSHA.
  • Support has been added to PKCS12 KeyStores and PfxPdu to handle PKCS#5 encrypted private keys.
  • Support has been added for SHA-512/224, SHA-512/256, as well as a general SHA-512/t in the lightweight API.
  • The JcaPGPPrivateKey class has been added to provide better support in the PGP API for HSM private keys.
  • A new KeyStore type, BKS-V1, has been added for people needing to create key stores compatible with earlier versions of Bouncy Castle. Please note this keystore type offers a reduced integrity check of 16 bits and the rgular BKS should be used where possible.
  • Some extra generation methods have been added to TimeStampResponseGenerator to allow more control in the generation of TimeStampResponses.
  • It is now possible to override the SignerInfo attributes during TimeStampTokenGeneration.
  • The TSP API now supports generation of certIDs based on digests other than SHA-1.
  • OCSP responses can now be included in CMS SignedData objects.
  • The SipHash MAC algorithm has been added to the lightweight API and the provider.
  • ISO9796-2 PSS signatures can now be initialised with a signature to allow the signer to deal with odd recovered message lengths on verification.
  • The 4 DRBGs described in NIST SP 800-90A have been added to the prng package together with SecureRandom builders.
  • Support has been added for OCB mode in the lightweight API.
  • DSA version 2 parameter and key generation is now supported in the provider and lightweight API.
  • A new interface Memoable has been added for objects that can copy in and out their state. The digest classes now support this. A special class NonMemoableDigest has been added which hides the Memoable interface where it should not be available.
  • TDEA is now recognised as an alias for DESede.
  • A new package org.bouncycastle.crypto.ec has been introduced to the light wieght API with a range of EC based cryptographic operators.
  • The OpenPGP API now supports password changing on V3 keys if the appropriate PBEKeyEncryptor is used.
  • The OpenPGP API now supports password changing on secret key rings where only the private keys for the subkeys have been exported.
  • Support has been added to the lightweight API for RSA-KEM and ECIES-KEM.
  • Support has been added for NIST SP 800-38D - GMAC to AES and other 128 bit block size algorithms.
  • The org.bouncycastle.crypto.tls package has been extended to support client and server side TLS 1.1.
  • The org.bouncycastle.crypto.tls package has been extended to support client and server side DTLS 1.0.
  • A basic commitment package has been introduced into the lightweight API containing a digest based commitment scheme.
  • It is now possible to set the NotAfter and NotBefore date in the CRMF CertificateRequestMessageBuilder class.

2.31.4 Notes

  • The NTRU implementation has been moved into the org.bouncycastle.pqc package hierarchy.
  • The change to PEMParser to support explicit EC curves is not backward compatible. If you run into a named curve you need to use org.bouncycastle.asn1.x9.ECNamedCurveTable.getByOID() to look the curve up if required.

2.32.1 Version

Release: 1.48
Date:      2013, February 10

2.32.2 Defects Fixed

  • Occasional key compatibility issues in IES due to variable length keys have been fixed.
  • PEMWriter now recognises the new PKCS10CertificationRequest object.
  • The provider implementation for RSA now resets when the init method is called.
  • SignerInformation has been rewritten to better support signers without any associated signed attributes.
  • An issue with an incorrect version number of SignedData associated with the use of SubjectKeyIdentifiers has now been fixed.
  • An issue with the equals() check in BCStrictStyle has been fixed.
  • The BC SSL implementation has been modified to deal with the "Lucky Thirteen" attack.
  • A regression in 1.47 which prevented key wrapping with regular symmetric PBE algorihtms has been fixed.

2.32.3 Additional Features and Functionality

  • IES now supports auto generation of ephemeral keys in both the JCE and the lightweight APIs.
  • A new class PEMParser has been added to return the new CertificateHolder and Request objects introduced recently.
  • An implementation of Password Authenticated Key Exchange by Juggling (J-PAKE) has now been added to the lightweight API.
  • Support has now been added for the DSTU-4145-2002 to the lightweight API and the provider.
  • The BC X509Certificate implementation now provides support for the JCA methods X509Certificate.getSubjectAlternativeNames() and X509Certificate.getIssuerAlternativeNames().
  • PEMReader can now be configured to support different providers for encyrption and public key decoding.
  • Some extra DSA OIDs have been added to the supported list for the provider.
  • The BC provider will now automatically try to interpret other provider software EC private keys. It is no longer necessary to use a KeyFactory for conversion.
  • A new provider, the BCPQC (for BC Post Quantum) provider has been added with support for the Rainbow signature algorithm and the McEliece family of encryption algorithms.
  • Support has been added for the SHA3 family of digests to both the provider and the lightweight API.
  • T61String now uses UTF-8 encoding by default rather than a simple 8 bit transform.

2.33.1 Version

Release: 1.47
Date:      2012, March 30

2.33.2 Defects Fixed

  • OpenPGP ID based certifications now support UTF-8. Note: this may mean that some old certifications no longer validate - if this happens a retry can be added using by converting the ID using Strings.fromByteArray(Strings.toByteArray(id)) - this will strip out the top byte in each character.
  • IPv4/IPv6 parsing in CIDR no longer assumes octet boundaries on a mask.
  • The CRL PKIX routines will now only rebuild the CRL as a last resort when looking for the certificate issuer.
  • The DEK-Info header in PEM generation was lower case. It is now upper case in accordance with RFC 1421.
  • An occasional issue causing an OutOfMemoryException for PGP compressed data generation has now been fixed.
  • An illegal argument exception that could occur with multi-valued RDNs in the X509v3CertificateBuilder has been fixed.
  • Shared secret calculation in IES could occasionally add a leading zero byte. This has been fixed.
  • PEMReader would choke on a private key with an empty password. This has been fixed.
  • The default MAC for a BKS key store was 2 bytes, this has been upgraded to 20 bytes. This fix is now also referred to in CVE-2018-5382.
  • BKS key store loading no longer freezes on negative iteration counts.
  • A regression in 1.46 which prevented parsing of PEM files with extra text at the start has been fixed.
  • CMS secret key generation now attempts to stop use of invalid lengths with OIDs that predefine a key length.
  • Check of DH parameter L could reject some valid keys. This is now fixed.

2.33.3 Additional Features and Functionality

  • Support is now provided via the RepeatedKey class to enable IV only re-initialisation in the JCE layer. The same effect can be acheived in the light weight API by using null as the key parameter when creating a ParametersWithIV object.
  • CRMF now supports empty poposkInput.
  • The OpenPGP API now supports operator based interfaces for most operations and lightweight implementations have been added for JCE related functionality.
  • JcaSignerId and JceRecipientId will now match on serial number, issuer, and the subject key identifier if it's available.
  • CMS Enveloped and AuthenticatedData now support OriginatorInfo.
  • NTRU encryption and signing is now provided in the lightweight source and the ext version of the provider.
  • There is now API support for Extended Access Control (EAC).
  • The performance of CertPath building and validation has been improved.
  • The TLS Java Client API has been updated to make support for GSI GSSAPI possible.
  • Support for ECDSA_fixed_ECDH authentication has been added to the TLS client.
  • Support for the Features signature sub-packet has been added to the PGP API.
  • The number of lightweight operators for PGP and CMS/SMIME has been increased.
  • Classes involved in CRL manipulation have been rewritten to reduce memory requirements for handling and parsing extremely large CRLs.
  • RFC 5751 changed the definition of the micalg parameters defined in RFC 3851. The SMIMESignedGenerator is now up to date with the latest micalg parameter set and a constructor has been added to allow the old micalg parameter set to be used.
  • An operator based framework has been added for processing PKCS#8 and PKCS#12 files.
  • The J2ME lcrypto release now includes higher level classes for handling PKCS, CMS, CRMF, CMP, EAC, OpenPGP, and certificate generation.

2.33.4 Other notes

Okay, so we have had to do another release. The issue we have run into is that we probably didn't go far enough in 1.46, but we are now confident that moving from this release to 2.0 should be largely just getting rid of deprecated methods. While this release does change a lot it is relatively straight forward to do a port and we have a porting guide which explains the important ones. The area there has been the most change in is the ASN.1 library which was in bad need of a rewrite after 10 years of patching. On the bright side the rewrite did allow us to eliminate a few problems and bugs in the ASN.1 library, so we have some hope anyone porting to it will also have similar benefits. As with 1.46 the other point of emphasis has been making sure interface support is available for operations across the major APIs, so the lightweight API or some local role your own methods can be used instead for doing encryption and signing.

2.34.1 Version

Release: 1.46
Date:      2011, February 23

2.34.2 Defects Fixed

  • An edge condition in ECDSA which could result in an invalid signature has been fixed.
  • Exhaustive testing has been performed on the ASN.1 parser, eliminating another potential OutOfMemoryException and several escaping run time exceptions.
  • BC generated certificates generated different hashCodes from other equivalent implementations. This has been fixed.
  • Parsing an ESSCertIDv2 would fail if the object did not include an IssuerSerialNumber. This has been fixed.
  • DERGeneralizedTime.getDate() would produce incorrect results for fractional seconds. This has been fixed.
  • PSSSigner would produce incorrect results if the MGF digest and content digest were not the same. This has been fixed.

2.34.3 Additional Features and Functionality

  • A null genTime can be passed to TimeStampResponseGenerator.generate() to generate timeNotAvailable error responses.
  • Support has been added for reading and writing of openssl PKCS#8 encrypted keys.
  • New streams have been added for supporting general creation of PEM data, and allowing for estimation of output size on generation. Generators have been added for some of the standard OpenSSL objects.
  • CRL searching for CertPath validation now supports the optional algorithm given in Section 6.3.3 of RFC 5280, allowing the latest CRL to be used for a set time providing the certificate is unexpired.
  • AES-CMAC and DESede-CMAC have been added to the JCE provider.
  • Support for CRMF (RFC 4211) and CMP (RFC 4210) has been added.
  • BufferedBlockCipher will now always reset after a doFinal().
  • Support for CMS TimeStampedData (RFC 5544) has been added.
  • JCE EC keypairs are now serialisable.
  • TLS now supports client-side authentication.
  • TLS now supports compression.
  • TLS now supports ECC cipher suites (RFC 4492).
  • PGP public subkeys can now be separately decoded and encoded.
  • An IV can now be passed to an ISO9797Alg3Mac.

2.34.4 Other notes

Baring security patches we expect 1.46 will be the last of the 1.* releases. The next release of BC will be version 2.0. For this reason a lot of things in 1.46 that relate to CMS have been deprecated and new methods have been added to the CMS and certificate handling APIs which provide greater flexibility in how digest and signature algorithms get used. It is now possible to use the lightweight API or a simple custom API with CMS and for certificate generation. In addition a lot of methods and some classes that were deprecated for reasons of been confusing, or in some cases just plan wrong, have been removed.

So there are four things useful to know about this release:

  • It's not a simple drop in like previous releases, if you wish migrate to it you will need to recompile your application.
  • If you avoid deprecated methods it should be relatively painless to move to version 2.0
  • The X509Name class will utlimately be replacde with the X500Name class, the getInstance() methods on both these classes allow conversion from one type to another.
  • The org.bouncycastle.cms.RecipientId class now has a collection of subclasses to allow for more specific recipient matching. If you are creating your own recipient ids you should use the constructors for the subclasses rather than relying on the set methods inherited from X509CertSelector. The dependencies on X509CertSelector and CertStore will be removed from the version 2 CMS API.

2.35.1 Version

Release: 1.45
Date:      2010, January 12

2.35.2 Defects Fixed

  • OpenPGP now supports UTF-8 in file names for literal data.
  • The ASN.1 library was losing track of the stream limit in a couple of places, leading to the potential of an OutOfMemoryError on a badly corrupted stream. This has been fixed.
  • The provider now uses a privileged block for initialisation.
  • JCE/JCA EC keys are now serialisable.

2.35.3 Additional Features and Functionality

  • Support for EC MQV has been added to the light weight API, provider, and the CMS/SMIME library.

2.35.4 Security Advisory

  • This version of the provider has been specifically reviewed to eliminate possible timing attacks on algorithms such as GCM and CCM mode.

2.36.1 Version

Release: 1.44
Date:      2009, October 9

2.36.2 Defects Fixed

  • The reset() method in BufferedAsymmetricBlockCipher is now fully clearing the buffer.
  • Use of ImplicitlyCA with KeyFactory and Sun keyspec no longer causes NullPointerException.
  • X509DefaultEntryConverter was not recognising telephone number as a PrintableString field. This has been fixed.
  • The SecureRandom in the J2ME was not using a common seed source, which made cross seeeding of SecureRandom's impossible. This has been fixed.
  • Occasional uses of "private final" on methods were causing issues with some J2ME platforms. The use of "private final" on methods has been removed.
  • NONEwithDSA was not resetting correctly on verify() or sign(). This has been fixed.
  • Fractional seconds in a GeneralisedTime were resulting in incorrect date conversions if more than 3 decimal places were included due to the Java date parser. Fractional seconds are now truncated to 3 decimal places on conversion.
  • The micAlg in S/MIME signed messages was not always including the hash algorithm for previous signers. This has been fixed.
  • SignedMailValidator was only including the From header and ignoring the Sender header in validating the email address. This has been fixed.
  • The PKCS#12 keystore would throw a NullPointerException if a null password was passed in. This has been fixed.
  • CertRepMessage.getResponse() was attempting to return the wrong underlying field in the structure. This has been fixed.
  • PKIXCertPathReviewer.getTrustAnchor() could occasionally cause a null pointer exception or an exception due to conflicting trust anchors. This has been fixed.
  • Handling of explicit CommandMap objects with the generation of S/MIME messages has been improved.

2.36.3 Additional Features and Functionality

  • PEMReader/PEMWriter now support encrypted EC keys.
  • BC generated EC private keys now include optional fields required by OpenSSL.
  • Support for PSS signatures has been added to CMS and S/MIME.
  • CMS processing will attempt to recover if there is no AlgorithmParameters object for a provider and use an IvParameterSpec where possible.
  • CertificateID always required a provider to be explicitly set. A null provider is now interpreted as a request to use the default provider.
  • SubjectKeyIdentifier now supports both methods specified in RFC 3280, section 4.2.1.2 for generating the identifier.
  • Performance of GCM mode has been greatly improved (on average 10x).
  • The BC provider has been updated to support the JSSE in providing ECDH.
  • Support for mac lengths of 96, 104, 112, and 120 bits has been added to existing support for 128 bits in GCMBlockCipher.
  • General work has been done on trying to propagate exception causes more effectively.
  • Support for loading GOST 34.10-2001 keys has been improved in the provider.
  • Support for raw signatures has been extended to RSA and RSA-PSS in the provider. RSA support can be used in CMSSignedDataStreamGenerator to support signatures without signed attributes.

2.37.1 Version

Release: 1.43
Date:      2009, April 13

2.37.2 Defects Fixed

  • Multiple countersignature attributes are now correctly collected.
  • Two bugs in HC-128 and HC-256 related to sign extension and byte swapping have been fixed. The implementations now pass the latest ecrypt vector tests.
  • X509Name.hashCode() is now consistent with equals.

2.37.3 Security Advisory

  • The effect of the sign extension bug was to decrease the key space the HC-128 and HC-256 ciphers were operating in and the byte swapping inverted every 32 bits of the generated stream. If you are using either HC-128 or HC-256 you must upgrade to this release.

2.38.1 Version

Release: 1.42
Date:      2009, March 16

2.38.2 Defects Fixed

  • A NullPointer exception which could be result from generating a diffie-hellman key has been fixed.
  • CertPath validation could occasionally mistakenly identify a delta CRL. This has been fixed.
  • '=' inside a X509Name/X509Principal was not being properly escaped. This has been fixed.
  • ApplicationSpecific ASN.1 tags are now recognised in BER data. The getObject() method now handles processing of arbitrary tags.
  • X509CertStoreSelector.getInstance() was not propagating the subjectAlternativeNames attribute. This has been fixed.
  • Use of the BC PKCS#12 implementation required the BC provider to be registered explicitly with the JCE. This has been fixed.
  • OpenPGP now fully supports use of the Provider object.
  • CMS now fully supports use of the Provider object.
  • Multiplication by negative powers of two is fixed in BigInteger.
  • OptionalValidity now encodes correctly.

2.38.3 Additional Features and Functionality

  • Support for NONEwithECDSA has been added.
  • Support for Grainv1 and Grain128 has been added.
  • Support for EAC algorithms has been added to CMS/SMIME.
  • Support for basic CMS AuthenticatedData to the CMS package.
  • Jars are now packaged using pack200 for JDK1.5 and JDK 1.6.
  • ASN1Dump now supports a verbose mode for displaying the contents of octet and bit strings.
  • Support for the SRP-6a protocol has been added to the lightweight API.

2.39.1 Version

Release: 1.41
Date:      2008, October 1

2.39.2 Defects Fixed

  • The GeneralName String constructor now supports IPv4 and IPv6 address parsing.
  • An issue with nested-multiparts with postamble for S/MIME that was causing signatures to fail verification has been fixed.
  • ESSCertIDv2 encoding now complies with RFC 5035.
  • ECDSA now computes correct signatures for oversized hashes when the order of the base point is not a multiple of 8 in compliance with X9.62-2005.
  • J2ME SecureRandom now provides additional protection against predictive and backtracking attacks when high volumes of random data are generated.
  • Fix to regression from 1.38: PKIXCertPathCheckers were not being called on intermediate certificates.
  • Standard name "DiffieHellman" is now supported in the provider.
  • Better support for equality tests for '#' encoded entries has been added to X509Name.

2.39.3 Additional Features and Functionality

  • Camellia is now 12.5% faster than previously.
  • A smaller version (around 8k compiled) of Camellia, CamelliaLightEngine has also been added.
  • CMSSignedData generation now supports SubjectKeyIdentifier as well as use of issuer/serial.
  • A CMSPBE key holder for UTF-8 keys has been added to the CMS API.
  • Salt and iteration count can now be recovered from PasswordRecipientInformation.
  • Methods in the OpenPGP, CMS, and S/MIME APIs which previously could only take provider names can now take providers objects as well (JDK1.4 and greater).
  • Support for reading and extracting personalised certificates in PGP Secret Key rings has been added.

2.40.1 Version

Release: 1.40
Date:      2008, July 12

2.40.2 Defects Fixed

  • EAX mode ciphers were not resetting correctly after a doFinal/reset. This has been fixed.
  • The SMIME API was failing to verify doubly nested multipart objects in signatures correctly. This has been fixed.
  • Some boolean parameters to IssuingDistributionPoint were being reversed. This has been fixed.
  • A zero length RDN would cause an exception in an X509Name. This has been fixed.
  • Passing a null to ExtendedPKIXParameters.setTrustedACIssuers() would cause a NullPointerException. This has been fixed.
  • CertTemplate was incorrectly encoding issuer and subject fields when set.
  • hashCode() for X509CertificateObject was very poor. This has been fixed.
  • Specifying a greater than 32bit length for a stream and relying on the default BCPGOutputStream resulted in corrupted data. This has been fixed.
  • PKCS7Padding validation would not fail if pad length was 0. This has been fixed.
  • javax.crypto classes no longer appear in the JDK 1.3 provider jar.
  • Signature creation time was not being properly initialised in new V4 PGP signature objects although the encoding was correct. This has been fixed.
  • The '+' character can now be escaped or quoted in the constructor for X509Name, X509Prinicipal.
  • Fix to regression from 1.38: PKIXCertPathValidatorResult.getPublicKey was returning the wrong public key when the BC certificate path validator was used.

2.40.3 Additional Features and Functionality

  • Galois/Counter Mode (GCM) has been added to the lightweight API and the JCE provider.
  • SignedPublicKeyAndChallenge and PKCS10CertificationRequest can now take null providers if you need to fall back to the default provider mechanism.
  • The TSP package now supports validation of responses with V2 signing certificate entries.
  • Unnecessary local ID attributes on certificates in PKCS12 files are now automatically removed.
  • The PKCS12 store types PKCS12-3DES-3DES and PKCS12-DEF-3DES-3DES have been added to support generation of PKCS12 files with both certificates and keys protected by 3DES.

2.40.4 Additional Notes

  • Due to problems for some users caused by the presence of the IDEA algorithm, an implementation is no longer included in the default signed jars. Only the providers of the form bcprov-ext-*-*.jar now include IDEA.

2.41.1 Version

Release: 1.39
Date:      2008, March 29

2.41.2 Defects Fixed

  • A bug causing the odd NullPointerException has been removed from the LocalizedMessage class.
  • IV handling in CMS for the SEED and Camellia was incorrect. This has been fixed.
  • ASN.1 stream parser now throws exceptions for unterminated sequences.
  • EAX mode was not handling non-zero offsetted data correctly and failing. This has been fixed.
  • The BC X509CertificateFactory now handles multiple certificates and CRLs in streams that don't support marking.
  • The BC CRL implementation could lead to a NullPointer exception being thrown if critical extensions were missing. This has been fixed.
  • Some ASN.1 structures would cause a class cast exception in AuthorityKeyIdentifier. This has been fixed.
  • The CertID class used by the TSP library was incomplete. This has been fixed.
  • A system property check in PKCS1Encoding to cause a AccessControlException under some circumstances. This has been fixed.
  • A decoding issue with a mis-identified tagged object in CertRepMessage has been fixed.
  • \# is now properly recognised in the X509Name class.

2.41.3 Additional Features and Functionality

  • Certifications associated with user attributes can now be created, verified and removed in OpenPGP.
  • API support now exists for CMS countersignature reading and production.
  • The TSP package now supports parsing of responses with V2 signing certificate entries.
  • Lazy evaluation of DER sequences has been introduced to ASN1InputStream to allow support for larger sequences.
  • KeyPurposeId class has been updated for RFC 4945.
  • CertPath processing has been further extended to encompass the NIST CertPath evaluation suite.
  • Initial support has been added for HP_CERTIFICATE_REQUEST in the TLS API.
  • Providers for JDK 1.4 and up now use SignatureSpi directly rather than extending Signature. This is more in track with the way dynamic provider selection now works.
  • PGP example programs now handle blank names in literal data objects.
  • The ProofOfPossession class now better supports the underlying ASN.1 structure.
  • Support has been added to the provider for the VMPC MAC.

2.42.1 Version

Release: 1.38
Date:      2007, November 7

2.42.2 Defects Fixed

  • SMIME signatures containing non-standard quote-printable data could be altered by SMIME encryption. This has been fixed.
  • CMS signatures that do not use signed attributes were vulnerable to one of Bleichenbacher's RSA signature forgery attacks. This has been fixed.
  • The SMIMESignedParser(Part) constructor was not producing a content body part that cleared itself after writeTo() as indicated in the JavaDoc. This has been fixed.
  • BCPGInputStream now handles data blocks in the 2**31->2**32-1 range.
  • A bug causing second and later encrypted objects to be ignored in KeyBasedFileProcessor example has been fixed.
  • Value of the TstInfo.Tsa field is now directly accessible from TimeStampTokenInfo.
  • Generating an ECGOST-3410 key using an ECGenParameterSpec could cause a ClassCastException in the key generator. This has been fixed.
  • Use of the parameters J and L in connection with Diffie-Hellman parameters in the light weight API was ambiguous and confusing. This has been dealt with.
  • Some entities were not fully removed from a PKCS#12 file when deleted due to case issues. This has been fixed.
  • Overwriting entities in a PKCS#12 file was not fully compliant with the JavaDoc for KeyStore. This has been fixed.
  • TlsInputStream.read() could appear to return end of file when end of file had not been reached. This has been fixed.

2.42.3 Additional Features and Functionality

  • Buffering in the streaming CMS has been reworked. Throughput is now usually higher and the behaviour is more predictable.
  • It's now possible to pass a table of hashes to a CMS detached signature rather than having to always pass the data.
  • Classes supporting signature policy and signer attributes have been added to the ASN.1 ESS/ESF packages.
  • Further work has been done on optimising memory usage in ASN1InputStream. In some cases memory usage has been reduced to 25% of previous.
  • Pre-existing signers can now be added to the SMIMESignedGenerator.
  • Support has been added to the provider for the VMPC stream cipher.
  • CertPathReviewer has better handling for problem trust anchors.
  • Base64 encoder now does initial size calculations to try to improve resource usage.

2.43.1 Version

Release: 1.37
Date:      2007, June 15

2.43.2 Defects Fixed

  • The ClearSignedFileProcessor example for OpenPGP did not take into account trailing white space in the file to be signed. This has been fixed.
  • A possible infinite loop in the CertPathBuilder and SignedMailValidator have been removed.
  • Requesting DES, DESede, or Blowfish keys using regular Diffie-Hellman now returns the same length keys as the regular JCE provider.
  • Some uncompressed EC certificates were being interpreted as compressed and causing an exception. This has been fixed.
  • Adding a CRL with no revocations on it to the CRL generator could cause an exception to be thrown. This has been fixed.
  • Using the default JDK provider with the CMS library would cause exceptions in some circumstances. This has been fixed.
  • BC provider DSAKeys are now serializable.
  • Using only a non-sha digest in S/MIME signed data would produce a corrupt MIME header. This has been fixed.
  • The default private key length in the lightweght API for generated DiffieHellman parameters was absurdly small, this has been fixed.
  • Cipher.getParameters() for PBEwithSHAAndTwofish-CBC was returning null after intialisation. This has been fixed.

2.43.3 Additional Features and Functionality

  • The block cipher mode CCM has been added to the provider and light weight API.
  • The block cipher mode EAX has been added to the provider and light weight API.
  • The stream cipher HC-128 and HC-256 has been added to the provider and lightwieght API.
  • The stream cipher ISAAC has been added to the lightweight API.
  • Support for producing and parsing notation data signature subpackets has been added to OpenPGP.
  • Support for implicit tagging has been added to DERApplicationSpecific.
  • CMS better supports basic Sun provider.
  • A full set of SEC-2 EC curves is now provided in the SEC lookup table.
  • Specifying a null provider in CMS now always uses the default provider, rather than causing an exception.
  • Support has been added to the OpenPGP API for parsing experimental signatures
  • CertPath validator now handles inherited DSA parameters and a wider range of name constraints.
  • Further work has been done on improving the performance of ECDSA - it is now about two to six times faster depending on the curve.
  • The Noekeon block cipher has been added to the provider and the lightweight API.
  • Certificate generation now supports generation of certificates with an empty Subject if the subjectAlternativeName extension is present.
  • The JCE provider now supports RIPEMD160withECDSA.

2.44.1 Version

Release: 1.36
Date:      2007, March 16

2.44.2 Defects Fixed

  • DSA key generator now checks range and keysize.
  • Class loader issues with i18n classes should now be fixed.
  • X.500 name serial number value now output as unambiguous long form SERIALNUMBER
  • The fix for multipart messages with mixed content-transfer-encoding in 1.35 caused a regression for processing some messages with embedded multiparts that contained blank lines of preamble text - this should now be fixed.
  • Another regression which sometimes affected the SMIMESignedParser has also been fixed.
  • SharedFileInputStream compatibility issues with JavaMail 1.4 have been addressed.
  • JDK 1.5 and later KeyFactory now accepts ECPublicKey/ECPrivateKey to translateKey.
  • JDK 1.5 and later KeyFactory now produces ECPublicKeySpec/ECPrivateKeySpec on getKeySpec.
  • Some surrogate pairs were not assembled correctly by the UTF-8 decoder. This has been fixed.
  • Alias resolution in PKCS#12 is now case insensitive.

2.44.3 Additional Features and Functionality

  • CMS/SMIME now supports basic EC KeyAgreement with X9.63.
  • CMS/SMIME now supports RFC 3211 password based encryption.
  • Support has been added for certificate, CRL, and certification request generation for the regular SHA algorithms with RSA-PSS.
  • Further work has been done in speeding up prime number generation in the lightweight BigInteger class.
  • Support for the SEED algorithm has been added to the provider and the lightweight API.
  • Support for the Salsa20 algorithm has been added to the provider and the lightweight API.
  • CMS/SMIME now support SEED and Camellia
  • A table of TeleTrusT curves has been added.
  • CMSSignedData creation and Collection CertStore now preserves the order of certificates/CRls if the backing collection is ordered.
  • CMS Signed objects now use BER encoding for sets containing certificates and CRLs, allowing specific ordering to be specified for the objects contained.
  • CMS enveloped now works around providers which throw UnsupportedOperationException if key wrap is attempted.
  • DSASigner now handles long messages. SHA2 family digest support for DSA has been added to the provider.

2.45.1 Version

Release: 1.35
Date:      2006, December 16

2.45.2 Defects Fixed

  • Test data files are no longer in the provider jars.
  • SMIMESignedParser now handles indefinite length data in SignerInfos.
  • Under some circumstances the SMIME library was failing to canonicalize mixed-multipart data correctly. This has been fixed.
  • The l parameter was being ignored for the DH and ElGamal key generation. This has been fixed.
  • The ASN1Sequence constructor for OtherRecipientInfo was broken. It has been fixed
  • Regression - DN fields SerialNumber and Country were changed to encode as UTF8String in 1.34 in the X509DefaultEntryConverter, these now encode as PrintableString.
  • CMSSignedData.replaceSigners() was not replacing the digest set as well as the signers. This has been fixed.
  • DERGeneralizedTime produced a time string without a GMT offset if they represented local time. This has been fixed.
  • Some temp files were still being left on Windows by the SMIME library. All of the known problems have been fixed.
  • Comparing ASN.1 object for equality would fail in some circumstances. This has been fixed.
  • The IESEngine could incorrectly encrypt data when used in block cipher mode. This has been fixed.
  • An error in the encoding of the KEKRecipientInfo has been fixed. Compatability warning: this may mean that versions of BC mail prior to 1.35 will have trouble processing KEK messages produced by 1.35 or later.

2.45.3 Additional Features and Functionality

  • Further optimisations to elliptic curve math libraries.
  • API now incorporates a CertStore which should be suitable for use with LDAP.
  • The streaming ASN.1 API is now integrated into the base one, the sasn1 package has been deprecated.
  • The OpenPGP implementation now supports SHA-224 and BZIP2.
  • The OpenPGP implementation now supports SHA-1 checksumming on secret keys.
  • The JCE provider now does RSA blinding by default.
  • CMSSignedDataParser now provides methods for replacing signers and replacing certificates and CRLs.
  • A generic store API has been added to support CRLs, Certificates and Attribute certificates.
  • The CMS/SMIME API now supports inclusion and retrieval of version 2 attribute certificates.
  • Support for generating CertificationRequests and Certificates has been added for GOST-3410-2001 (ECGOST)
  • CMS/SMIME now support ECGOST
  • Basic BER Octet Strings now encode in a canonical fashion by default.
  • DERUTCTime can now return Date objects
  • Validating constructors have been added to DERPrintableString, DERIA5String, and DERNumericString.
  • A lightweight API for supporting TLS has been added.
  • Implementations of the TEA and XTEA ciphers have been added to the light weight API and the provider.
  • PEMReader now supports OpenSSL ECDSA key pairs.
  • PGP packet streams can now be closed off using close() on the returned stream as well as closing the generator.

2.46.1 Version

Release: 1.34
Date:      2006, October 2

2.46.2 Defects Fixed

  • Endianess of integer conversion in KDF2BytesGenerator was incorrect. This has been fixed.
  • Generating critical signature subpackets in OpenPGP would result in a zero packet tag. This has been fixed.
  • Some flags in PKIFailure info were incorrect, and the range of values was incomplete. The range of values has been increased and the flags corrected.
  • The helper class for AuthorityKeyExtension generation was including the subject rather than the issuer DN of the CA certificate. This has been fixed.
  • SMIMESignedParser now avoids JavaMail quoted-printable recoding issue.
  • Verification of RSA signatures done with keys with public exponents of 3 was vunerable to Bleichenbacher's RSA signature forgery attack. This has been fixed.
  • PGP Identity strings were only being interpreted as ASCII rather than UTF-8. This has been fixed.
  • CertificateFactory.generateCRLs now returns a Collection rather than null.

2.46.3 Additional Features and Functionality

  • An ISO18033KDFParameters class had been added to support ISO18033 KDF generators.
  • An implemention of the KDF1 bytes generator algorithm has been added.
  • An implementation of NaccacheStern encryption has been added to the lightweight API.
  • X509V2CRLGenerator can now be loaded from an existing CRL.
  • The CMS enveloped data generators will now attempt to use the default provider for encryption if the passed in provider can only handle key exchange.
  • OpenPGP file processing has been substantially speeded up.
  • The PKCS1Encoder would accept PKCS1 packets which were one byte oversize. By default this will now cause an error. However, as there are still implementations which still produce such packets the older behaviour can be turned on by setting the VM system property org.bouncycastle.pkcs1.strict to false before creating an RSA cipher using PKCS1 encoding.
  • A target has been added to the bc-build.xml to zip up the source code rather than leaving it in a directory tree. The build scripts now run this target by default.
  • Use of toUpperCase and toLowerCase has been replaced with a locale independent converter where appropriate.
  • Support for retrieving the issuers of indirect CRLs has been added.
  • Classes for doing incremental path validation of PKIX cert paths have been added to the X.509 package and S/MIME.
  • Locale issues with String.toUpperCase() have now been worked around.
  • Optional limiting has been added to ASN1InputStream to avoid possible OutOfMemoryErrors on corrupted streams.
  • Support has been added for SHA224withECDSA, SHA256withECDSA, SHA384withECDSA, and SHA512withECDSA for the generation of signatures, certificates, CRLs, and certification requests.
  • Performance of the prime number generation in the BigInteger library has been further improved.
  • In line with RFC 3280 section 4.1.2.4 DN's are now encoded using UTF8String by default rather than PrintableString.

2.46.4 Security Advisory

  • If you are using public exponents with the value three you *must* upgrade to this release, otherwise it will be possible for attackers to exploit some of Bleichenbacher's RSA signature forgery attacks on your applications.

2.47.1 Version

Release: 1.33
Date:      2006, May 3

2.47.2 Defects Fixed

  • OCSPResponseData was including the default version in its encoding. This has been fixed.
  • BasicOCSPResp.getVersion() would throw a NullPointer exception if called on a default version response. This has been fixed.
  • Addition of an EC point under Fp could result in an ArithmeticException. This has been fixed.
  • The n value for prime192v2 was incorrect. This has been fixed.
  • ArmoredInputStream was not closing the underlying stream on close. This has been fixed.
  • Small base64 encoded strings with embedded white space could decode incorrectly using the Base64 class. This has been fixed.

2.47.3 Additional Features and Functionality

  • The X509V2CRLGenerator now supports adding general extensions to CRL entries.
  • A RoleSyntax implementation has been added to the x509 ASN.1 package, and the AttributeCertificateHolder class now support the IssuerSerial option.
  • The CMS API now correctly recognises the OIW OID for DSA with SHA-1.
  • DERUTF8String now supports surrogate pairs.

2.48.1 Version

Release: 1.32
Date:      2006, March 27

2.48.2 Defects Fixed

  • Further work has been done on RFC 3280 compliance.
  • The ASN1Sequence constructor for SemanticsInformation would sometimes throw a ClassCastException on reconstruction an object from a byte stream. This has been fixed.
  • The SharedInputStream.read(buf, 0, len) method would return 0 at EOF, rather than -1. This has been fixed.
  • X9FieldElement could fail to encode a Fp field element correctly. This has been fixed.
  • The streaming S/MIME API was occasionally leaving temporary files around. The SIMEUtil class responsible for creating the files now returns a FileBackedMimeBodyPart object which has a dispose method on it which should allow removal of the file backing the body part.
  • An encoding defect in EnvelopedData generation in the CMS streaming, S/MIME API has been fixed.
  • DER constructed octet strings could cause exceptions in the streaming ASN.1 library. This has been fixed.
  • Several compatibility issues connected with EnvelopedData decoding between the streaming CMS library and other libraries have been fixed.
  • JDK 1.4 and earlier would sometimes encode named curve parameters explicitly. This has been fixed.
  • An incorrect header for SHA-256 OpenPGP clear text signatures has been fixed.
  • An occasional bug that could result in invalid clear text signatures has been fixed.
  • OpenPGP clear text signatures containing '\r' as line separators were not being correctly canonicalized. This has been fixed.

2.48.3 Additional Features and Functionality

  • The ASN.1 library now includes classes for the ICAO Electronic Passport.
  • Support has been added to CMS and S/MIME for ECDSA.
  • Support has been added for the SEC/NIST elliptic curves.
  • Support has been added for elliptic curves over F2m.
  • Support has been added for repeated attributes in CMS and S/MIME messages.
  • A wider range of RSA-PSS signature types is now supported for CRL and Certificate verification.

2.48.4 Possible compatibility issue

  • Previously elliptic curve keys and points were generated with point compression enabled by default. Owing to patent issues in some jurisdictions, they are now generated with point compression disabled by default.

2.49.1 Version

Release: 1.31
Date:      2005, December 29

2.49.2 Defects Fixed

  • getCriticalExtensionOIDs on an X.509 attribute certificate was returning the non-critical set. This has been fixed.
  • Encoding uncompressed ECDSA keys could occasionally introduce an extra leading zero byte. This has been fixed.
  • Expiry times for OpenPGP master keys are now recognised across the range of possible certifications.
  • PGP 2 keys can now be decrypted by the the OpenPGP library.
  • PGP 2 signature packets threw an exception on trailer processing. This has been been fixed.
  • Attempting to retrieve signature subpackets from an OpenPGP version 3 signature would throw a null pointer exception. This has been fixed.
  • Another occasional defect in EC point encoding has been fixed.
  • In some cases AttributeCertificateHolder.getIssuer() would return an empty array for attribute certificates using the BaseCertificateID. This has been fixed.
  • OIDs with extremely large components would sometimes reencode with unnecessary bytes in their encoding. The optimal DER encoding will now be produced instead.

2.49.3 Additional Features and Functionality

  • The SMIME package now supports the large file streaming model as well.
  • Additional ASN.1 message support has been added for RFC 3739 in the org.bouncycastle.x509.qualified package.
  • Support has been added for Mac algorithm 3 from ISO 9797 to both the lightweight APIs and the provider.
  • The provider now supports the DESEDE64 MAC algorithm.
  • CertPathValidator has been updated to better support path validation as defined in RFC 3280.

2.50.1 Version

Release: 1.30
Date:      2005, September 18

2.50.2 Defects Fixed

  • Whirlpool was calculating the wrong digest for 31 byte data and could throw an exception for some other data lengths. This has been fixed.
  • AlgorithmParameters for IVs were returning a default of RAW encoding of the parameters when they should have been returning an ASN.1 encoding. This has been fixed.
  • Base64 encoded streams without armoring could cause an exception in PGPUtil.getDecoderStream(). This has been fixed.
  • PGPSecretKey.copyWithNewPassword() would incorrectly tag sub keys. This has been fixed.
  • PGPSecretKey.copyWithNewPassword() would not handle the NULL algorithm. This has been fixed.
  • Directly accessing the dates on an X.509 Attribute Certificate constructed from an InputStream would return null, not the date objects. This has been fixed.
  • KEKIdentifier would not handle OtherKeyAttribute objects correctly. This has been fixed.
  • GetCertificateChain on a PKCS12 keystore would return a single certificate chain rather than null if the alias passed in represented a certificate not a key. This has been fixed.

2.50.3 Additional Features and Functionality

  • RSAEngine no longer assumes keys are byte aligned when checking for out of range input.
  • PGPSecretKeyRing.removeSecretKey and PGPSecretKeyRing.insertSecretKey have been added.
  • There is now a getter for the serial number on TimeStampTokenInfo.
  • Classes for dealing with CMS objects in a streaming fashion have been added to the CMS package.
  • PGPCompressedDataGenerator now supports partial packets on output.
  • OpenPGP Signature generation and verification now supports SHA-256, SHA-384, and SHA-512.
  • Both the lightweight API and the provider now support the Camellia encryption algorithm.

2.51.1 Version

Release: 1.29
Date:      2005, June 27

2.51.2 Defects Fixed

  • HMac-SHA384 and HMac-SHA512 were not IETF compliant. This has been fixed.
  • The equals() method on ElGamalKeyParameters and DHKeyParameters in the lightweight API would sometimes return false when it should return true. This has been fixed.
  • Parse error for OpenSSL style PEM encoded certificate requests in the PEMReader has been fixed.
  • PGPPublicKey.getValidDays() now checks for the relevant signature for version 4 and later keys as well as using the version 3 key valid days field.
  • ISO9796 signatures for full recovered messsages could incorrectly verify for similar messages in some circumstances. This has been fixed.
  • The occasional problem with decrypting PGP messages containing compressed streams now appears to be fixed.

2.51.3 Additional Features and Functionality

  • Support has been added for the OIDs and key generation required for HMac-SHA224, HMac-SHA256, HMac-SHA384, and HMac-SHA512.
  • SignerInformation will used default implementation of message digest if signature provider doesn't support it.
  • The provider and the lightweight API now support the GOST-28147-94 MAC algorithm.
  • Headers are now settable for PGP armored output streams.

2.51.4 Notes

  • The old versions of HMac-SHA384 and HMac-SHA512 can be invoked as OldHMacSHA384 and OldHMacSHA512, or by using the OldHMac class in the lightweight API.

2.52.1 Version

Release: 1.28
Date:      2005, April 20

2.52.2 Defects Fixed

  • Signatures on binary encoded S/MIME messages could fail to validate when correct. This has been fixed.
  • getExtensionValue() on CRL Entries were returning the encoding of the inner object, rather than the octet string. This has been fixed.
  • CertPath implementation now returns an immutable list for a certificate path.
  • Generic sorting now takes place in the CertificateFactory.generateCertPath() rather than CertPathValidator.
  • DERGeneralizedTime can now handle time strings with milli-seconds.
  • Stateful CertPathCheckers were not being initialised in all cases, by the CertPathValidator. This has been fixed.
  • PGPUtil file processing methods were failing to close files after processing. This has been fixed.
  • A disordered set in a CMS signature could cause a CMS signature to fail to validate when it should. This has been fixed.
  • PKCS12 files where both the local key id and friendly name were set on a certificate would not parse correctly. This has been fixed.
  • Filetype for S/MIME compressed messages was incorrect. This has been fixed.
  • BigInteger class can now create negative numbers from byte arrays.

2.52.3 Additional Features and Functionality

  • S/MIME now does canonicalization on non-binary input for signatures.
  • Micalgs for the new SHA schemes are now supported.
  • Provided and lightweight API now support ISO 7816-4 padding.
  • The S/MIME API now directly supports the creation of certificate management messages.
  • The provider and the light weight API now support the cipher GOST-28147, the signature algorithms GOST-3410 (GOST-3410 94) and EC GOST-3410 (GOST-3410 2001), the message digest GOST-3411 and the GOST OFB mode (use GOFB).
  • CMSSignedDataGenerator will used default implementation of message digest if signature provider doesn't support it.
  • Support has been added for the creation of ECDSA certificate requests.
  • The provider and the light weight API now support the WHIRLPOOL message digest.

2.52.4 Notes

  • Patches for S/MIME binary signatures and canonicalization were actually applied in 1.27, but a couple of days after the release - if the class CMSProcessableBodyPartOutbound is present in the package org.bouncycastle.mail.smime you have the patched 1.27. We would recommend upgrading to 1.28 in any case as some S/MIME 3.1 recommendations have also been introduced for header creation.
  • GOST private keys are probably not encoding correctly and can be expected to change.

2.53.1 Version

Release: 1.27
Date:      2005, February 20

2.53.2 Defects Fixed

  • Typos in the provider which pointed Signature algorithms SHA256WithRSA, SHA256WithRSAEncryption, SHA384WithRSA, SHA384WithRSAEncryption, SHA512WithRSA, and SHA512WithRSAEncryption at the PSS versions of the algorithms have been fixed. The correct names for the PSS algorithms are SHA256withRSAandMGF1, SHA384withRSAandMGF1, and SHA512withRSAandMGF1.
  • X509CertificateFactory failed under some circumstances to reset properly if the input stream being passed to generateCertificate(s)() changed, This has been fixed.
  • OpenPGP BitStrength for DSA keys was being calculated from the key's generator rather than prime. This has been fixed.
  • Possible infinite loop in ASN.1 SET sorting has been removed.
  • SHA512withRSAandMGF1 with a zero length salt would cause an exception if used with a 1024 bit RSA key. This has been fixed.
  • Adding an Exporter to a PGPSubpacketVector added a Revocable instead. This has been fixed.
  • AttributeCertificateIssuer.getPrincipal() could throw an ArrayStoreException. This has been fixed.
  • CertPathValidator now guarantees to call any CertPathCheckers passed in for each certificate.
  • TSP TimeStampToken was failing to validate time stamp tokens with the issuerSerial field set in the ESSCertID structure. This has been fixed.
  • Path validation in environments with frequently updated CRLs could occasionally reject a valid path. This has been fixed.

2.53.3 Additional Features and Functionality

  • Full support has been added for the OAEPParameterSpec class to the JDK 1.5 povider.
  • Full support has been added for the PSSParameterSpec class to the JDK 1.4 and JDK 1.5 providers.
  • Support for PKCS1 signatures for SHA-256, SHA-384, and SHA-512 has been added to CMS.
  • PGPKeyRingCollection classes now support partial matching of user ID strings.
  • This release disables the quick check on the IV for a PGP public key encrypted message in order to help prevent applications being vunerable to oracle attacks.
  • The CertPath support classes now support PKCS #7 encoding.
  • Point compression can now be turned off when encoding elliptic curve keys.

2.53.4 Changes that may affect compatibility

  • org.bouncycastle.jce.interfaces.ElGamalKey.getParams() has been changed to getParameters() to avoid clashes with a JCE interface with the same method signature.
  • org.bouncycastle.jce.interfaces.ECKey.getParams() has been changed in JDK 1.5 to getParameters() to avoid clashes with a JCE interface with the same method signature. The getParams() method in pre-1.5 has been deprecated.
  • SHA256WithRSAEncryption, SHA384WithRSAEncryption, SHA512WithRSAEncryption now refer to their PKCS #1 V1.5 implementations. If you were using these previously you should use SHA256WithRSAAndMGF1, SHA384WithRSAAndMGF1, or SHA512WithRSAAndMGF1.

2.54.1 Version

Release: 1.26
Date:      2005, January 15

2.54.2 Defects Fixed

  • The X.509 class UserNotice assumed some of the optional fields were not optional. This has been fixed.
  • BCPGInputStream would break on input packets of 8274 bytes in length. This has been fixed.
  • Public key fingerprints for PGP version 3 keys are now correctly calculated.
  • ISO9796-2 PSS would sometimes throw an exception on a correct signature. This has been fixed.
  • ASN1Sets now properly sort their contents when created from scratch.
  • A bug introduced in the CertPath validation in the last release which meant some certificate paths would validate if they were invalid has been fixed.

2.54.3 Additional Features and Functionality

  • Support for JDK 1.5 naming conventions for OAEP encryption and PSS signing has been added.
  • Support for Time Stamp Protocol (RFC 3161) has been added.
  • Support for Mozilla's PublicKeyAndChallenge key certification message has been added.
  • OpenPGP now supports key rings containing GNU_DUMMY_S2K.
  • Support for the new versions (JDK 1.4 and later) of PBEKeySpec has been added to the providers.
  • PBEWithMD5AndRC2, PBEWithSHA1AndRC2 now generate keys rather than exceptions.
  • The BigInteger implementation has been further optimised to take more advantage of the Montgomery number capabilities.

2.54.4 JDK 1.5 Changes

  • The JDK 1.5 version of the provider now supports the new Elliptic Curve classes found in the java.security packages. Note: while we have tried to preserve some backwards compatibility people using Elliptic curve are likely to find some minor code changes are required when moving code from JDK 1.4 to JDK 1.5 as the java.security APIs have changed.

2.55.1 Version

Release: 1.25
Date:      2004, October 1

2.55.2 Defects Fixed

  • In some situations OpenPGP would overread when a stream had been broken up into partial blocks. This has been fixed.
  • Explicitly setting a key size for RC4 in the CMS library would cause an exception. This has been fixed.
  • getSignatures() on PGPPublicKey would throw a ClassCastException in some cases. This has been fixed.
  • Encapsulated signed data was been generated with the wrong mime headers, this has been fixed.
  • The isSignature method on PGPSecretKey now correctly identifies signing keys.
  • An interoperability issue with DH key exchange between the Sun JCE provider and the BC provider, concerning sign bit expansion, has been fixed.
  • The X509CertificateFactory would fail to reset correctly after reading an ASN.1 certificate chain. This has been fixed.
  • CertPathValidator now handles unsorted lists of certs.
  • The PGPSignatureGenerator would sometimes throw an exception when adding hashed subpackets. This has been fixed.
  • Ordered equality in X509Name was not terminating as early as possible. This has been fixed.
  • getBitStrength for PGPPublicKeys was returning the wrong value for ElGamal keys. This has been fixed.
  • getKeyExpirationTime/getSignatureExpirationTime was returning a Date rather than a delta. This isn't meaningful as a Date and has been changed to a long.
  • the crlIssuer field in DistributionPoint name was encoding/decoding incorrectly. This has been fixed.
  • X509Name now recognises international characters in the input string and stores them as BMP strings.
  • Parsing a message with a zero length body with SMIMESigned would cause an exception. This has been fixed.
  • Some versions of PGP use zeros in the data stream rather than a replication of the last two bytes of the iv as specified in the RFC to determine if the correct decryption key has been found. The decryption classes will now cope with both.

2.55.3 Additional Features and Functionality

  • Support for extracting signatures based on PGP user attributes has been added to PGPPublicKey.
  • BCPGArmoredInputStream should cope with plain text files better.
  • The OpenPGP library can now create indefinite length streams and handle packets greater than (2^32 - 1) in length.
  • Direct support for adding SignerUserID and PrimaryUserID has been added to the PGPSignatureSubpacketGenerator.
  • Support for ISO-9796-2/PSS has been added to the lightweight API.
  • API support for extracting recovered messages from signatures that support message recovery has been added to the lightweight API.
  • String value conversion in a DN being processed by X509Name is now fully configurable.
  • It is now possible to create new versions of CMSSignedData objects without having to convert the original object down to its base ASN.1 equivalents.
  • Support for adding PGP revocations and other key signatures has been added.
  • Support for SHA-224 and SHA224withRSA has been added.
  • Trailing bit complement (TBC) padding has been added.
  • OID components of up to 2^63 bits are now supported.

2.56.1 Version

Release: 1.24
Date:      2004, June 12

2.56.2 Defects Fixed

  • OpenPGP Secret key rings now parse key rings with user attribute packets in them correctly.
  • OpenPGP Secret key rings now parse key rings with GPG comment packets in them.
  • X509Name and X509Principal now correctly handle BitStrings.
  • OpenPGP now correctly recognises RSA signature only keys.
  • When re-encoding PGP public keys taken off secret keys getEncoded would sometimes throw a NullPointerException. This has been fixed.
  • A basic PKCS12 file with a single key and certificate, but no attributes, would cause a null pointer exception. This has been fixed.
  • Signature verification now handles signatures where the parameters block is missing rather than NULL.
  • Lightweight CBCBlockCipherMac was failing to add padding if padding was being explicitly provided and data length was a multiple of the block size. This has been fixed.
  • ZIP compression in PGP was failing to compress data in many cases. This has been fixed.
  • Signatures were occasionally produced with incorrect padding in their associated bit strings, this has been fixed.
  • An encoding error introduced in 1.23 which affected generation of the KeyUsage extension has been fixed.

2.56.3 Additional Features and Functionality

  • PKCS12 keystore now handles single key/certificate files without any attributes present.
  • Support for creation of PGPKeyRings incorporating sub keys has been added.
  • ZeroPadding for encrypting ASCII data has been added.

2.57.1 Version

Release: 1.23
Date:      2004, April 10

2.57.2 Defects Fixed

  • Reading a PGP Secret key file would sometimes cause a class cast exception. This has been fixed.
  • PGP will now read SecretKeys which are encrypted with the null algorithm.
  • PGP ObjectFactory will recognise Marker packets.
  • BasicConstraints class now handles default empty sequences correctly.
  • S2K Secret Key generation now supported in OpenPGP for keys greater than 160 bits, a bug causing it to occasionally generate the wrong key has been fixed.
  • OpenPGP implementation can now read PGP 8 keys.
  • Decoding issues with Secret Sub Keys should now be fixed.
  • PGP would occasionally unpack ElGamal encrypted data incorrectly, this has been fixed.
  • OCSP TBSRequest now uses abbreviated encoding if the default version is used.
  • X509Name class will now print names with nested pairs in component sets correctly.
  • RC4 now resets correctly on doFinal.

2.57.3 Additional Features and Functionality

  • PGP V3 keys and V3 signature generation is now supported.
  • Collection classes have been added for representing files of PGP public and secret keys.
  • PEMReader now supports "RSA PUBLIC KEY".
  • RipeMD256 and RipeMD320 have been added.
  • Heuristic decoder stream has been added to OpenPGP which "guesses" how the input is constructed.
  • ArmoredInputStream now recognises clear text signed files.
  • ArmoredOutputStream now provides support for generating clear text signed files.
  • Support has been added to CMS for RipeMD128, RipeMD160, and RipeMD256.
  • Support for generating certification directly and editing PGP public key certifications has been added.
  • Support has been added for modification detection codes to the PGP library.
  • Examples have been rewritten to take advantage of the above.
  • SMIMESigned can now covert data straight into a mime message.
  • DERGeneralizedTime getTime() method now handles a broader range of input strings.

2.58.1 Version

Release: 1.22
Date:      2004, February 7

2.58.2 Defects Fixed

  • Generating DSA signatures with PGP would cause a class cast exception, this has been fixed.
  • PGP Data in the 192 to 8383 byte length would sometimes be written with the wrong length header. This has been fixed.
  • The certificate factory would only parse the first certificate in a PKCS7 object. This has been fixed.
  • getRevocationReason() in RevokedStatus in OCSP would throw an exception for a non-null reason, rather than a null one. This has been fixed.
  • PSS signature verification would fail approximately 0.5 % of the time on correct signatures. This has been fixed.
  • Encoding of CRL Distribution Points now always works.

2.58.3 Additional Features and Functionality

  • Additional methods for getting public key information have been added to the PGP package.
  • Some support for user attributes and the image attribute tag has been added.
  • Support for the AuthorityInformationAccess extension has been added.
  • Support for ElGamal encryption/decryption has been added to the PGP package.

2.59.1 Version

Release: 1.21
Date:      2003, December 6

2.59.2 Defects Fixed

  • The CertPath validator would fail for some valid CRLs. This has been fixed.
  • AES OIDS for S/MIME were still incorrect, this has been fixed.
  • The CertPathBuilder would sometimes throw a NullPointerException looking for an issuer. This has been fixed.
  • The J2ME BigInteger class would sometimes go into an infinite loop generating prime numbers. This has been fixed.
  • DERBMPString.equals() would throw a class cast exception. This has been fixed.

2.59.3 Additional Features and Functionality

  • PEMReader now handles public keys.
  • OpenPGP/BCPG should now handle partial input streams. Additional methods for reading subpackets off signatures.
  • The ASN.1 library now supports policy qualifiers and policy info objects.

2.60.1 Version

Release: 1.20
Date:      2003, October 8

2.60.2 Defects Fixed

  • BigInteger toString() in J2ME/JDK1.0 now produces same output as the Sun one.
  • RSA would throw a NullPointer exception with doFinal without arguments. This has been fixed.
  • OCSP CertificateID would calculate wrong issuer hash if issuer cert was not self signed. This has been fixed.
  • Most of response generation in OCSP was broken. This has been fixed.
  • The CertPath builder would sometimes go into an infinite loop on some chains if the trust anchor was missing. This has been fixed.
  • AES OIDS were incorrect, this has been fixed.
  • In some cases BC generated private keys would not work with the JSSE. This has been fixed.

2.60.3 Additional Features and Functionality

  • Support for reading/writing OpenPGP public/private keys and OpenPGP signatures has been added.
  • Support for generating OpenPGP PBE messages and public key encrypted messages has been added.
  • Support for decrypting OpenPGP messages has been added.
  • Addition of a Null block cipher to the light weight API.

2.61.1 Version

Release: 1.19
Date:      2003, June 7

2.61.2 Defects Fixed

  • The PKCS12 store would throw an exception reading PFX files that had attributes with no values. This has been fixed.
  • RSA Private Keys would not serialise if they had PKCS12 bag attributes attached to them, this has been fixed.
  • GeneralName was encoding OtherName as explicitly tagged, rather than implicitly tagged. This has been fixed.
  • ASN1 parser would sometimes mistake an implicit null for an implicit empty sequence. This has been fixed.

2.61.3 Additional Features and Functionality

  • S/MIME and CMS now support the draft standard for AES encryption.
  • S/MIME and CMS now support setable key sizes for the standard algorithms.
  • S/MIME and CMS now handle ARC4/RC4 encrypted messages.
  • The CertPath validator now passes the NIST test suite.
  • A basic OCSP implementation has been added which includes request generation and the processing of responses. Response generation is also provided, but should be treated as alpha quality code.
  • CMS now attempts to use JCA naming conventions in addition to the OID name in order to find algorithms.

2.62.1 Version

Release: 1.18
Date:      2003, February 8

2.62.2 Defects Fixed

  • DESKeySpec.isParityAdjusted in the clean room JCE could go into an infinite loop. This has been fixed.
  • The SMIME API would end up throwing a class cast exception if a MimeBodyPart was passed in containing a MimeMultipart. This is now fixed.
  • ASN1InputStream could go into an infinite loop reading a truncated input stream. This has been fixed.
  • Seeding with longs in the SecureRandom for the J2ME and JDK 1.0, only used 4 bytes of the seed value. This has been fixed.

2.62.3 Additional Features and Functionality

  • The X.509 OID for RSA is now recognised by the provider as is the OID for RSA/OAEP.
  • Default iv's for DES are now handled correctly in CMS.
  • The ASN.1 classes have been updated to use the generic ASN1* classes where possible.
  • A constructor has been added to SMIMESigned to simplify the processing of "application/pkcs7-mime; smime-type=signed-data;" signatures.
  • Diffie-Hellman key generation is now faster in environments using the Sun BigInteger library.

2.63.1 Version

Release: 1.17
Date:      2003, January 8

2.63.2 Defects Fixed

  • Reuse of an CMSSignedObject could occasionally result in a class cast exception. This has been fixed.
  • The X.509 DistributionPointName occasionally encoded incorrectly. This has been fixed.
  • BasicConstraints construction would break if an ASN.1 sequence was used with only the required parameter. This has been fixed.
  • The DERObject constructor in OriginatorIdentifierOrKey was leaving the id field as null. This has been fixed.

2.63.3 Additional Functionality and Features

  • RC2 now supports the full range of parameter versions and effective key sizes.
  • CompressedData handling has been added to CMS/SMIME.
  • The 1.4 version now allows X500Principles to be generated directly from CRLs.
  • SMIME objects now support binary encoding. The number of signature types recognised has been increased.
  • CMS can create signed objects with encapsulated data. Note: while this was been done we realised we could simplify things, we did and for the most part people won't notice, other than the occasional reference to CMSSignable will need to be replaced with CMSProcessable.
  • X509Name and X509Principal now support forward and reverse X509Name to string conversion, with changeable lookup tables for converting OIDs into strings. Both classes also now allow the direction of encoding to be set when a string is converted as well as changeable lookup tables for string to OID conversion.

2.64.1 Version

Release: 1.16
Date:      2002, November 30

2.64.2 Defects Fixed

  • CRLS were only working for UTC time constructed Time objects, this has been fixed.
  • KeyUsage and ReasonFlags sometimes encoded longer than necessary. This has been fixed.
  • BER encoded sets are now recognised and dealt with.
  • Encoding issues in CMS which were causing problems with backwards compatibility with older CMS/SMIME clients have been fixed.
  • KeyFactory now allows for creation of RSAKey*Spec classes.
  • The X509CertSelector in the clean room CertPath API is now less likely to throw a NullPointerException at the wrong time.
  • Macs now clone correctly in the clean room JCE.

2.64.3 Additional Functionality and Features

  • PGPCFB support has been added to the provider and the lightweight API.
  • There are now three versions of the AESEngine, all faster than before, with the largest footprint one being the fastest. The JCE AES now refers to the fastest.
  • The 1.4 version of the library now allows for X500Principals to be generated directly from certificates.
  • X509Name has been extended to parse numeric oids, "oid." oids, and to recognise the LDAP UID.
  • Immutable sequences and sets have been introduced to the ASN.1 package.
  • The SMIME/CMS ASN.1 base classes have been rewritten to reduce the size of the package for use with the lightweight API.
  • The SMIME/CMS api's have been rewritten to allow them to take advantage of the Cert Path API, remove code suited to inclusion in the provider, and to support multiple recipients/signers.

2.65.1 Version

Release: 1.15
Date:      2002, September 6

2.65.2 Defects Fixed

  • The base string for the oids in asn1.x509.KeyPurposeId was incorrect. This has been fixed.
  • MimeBodyParts in the SMIME Generator did not have their Content-Type properly set up after decryption. This has been fixed.
  • If a X.509 certificate did not have all the keyUsage extension bits set, the provider wasn't padding the return value of the key usage extension to 8 booleans in length. This has been fixed.
  • In some cases the simple BC keystore allowed overwriting of an alias with one of the same name. This has been fixed.
  • The key schedule for RC5-64 was not always being calculated correctly. This has been fixed.
  • On reset buffered blockcipher was only partially erasing the previous buffer. This has been fixed.
  • All lightweight mac classes now do a reset on doFinal.
  • ASN.1 object identifiers wouldn't encode the first byte correctly if the OID started with 2 and the second number was greater than 47. This has been fixed.
  • If a key had PKCS9 attributes associated with it on storage they took precedence over the local alias used to add the key to the PKCS12 key store. The local name now takes precedence.
  • ReasonFlags now correctly encodes.

2.65.3 Additional Functionality and Features

  • The PKCS12 key store now handles key bags in encryptedData bags.
  • The X509NameTokenizer now handles for '\' and '"' characters.
  • SMIME v2 compliance has been added. Use setVersion(2) in the generator classes.
  • The ASN.1 library now supports ENUMERATED, UniversalString and the X.509 library support for CRLs now includes CRLReason, and some elements of CertificatePolicies.
  • Both the provider and the lightweight library now support a basic SIC mode for block ciphers.

2.66.1 Version

Release: 1.14
Date:      2002, June 17

2.66.2 Defects Fixed

  • there was a bug in the BigInteger right shifting for > 31 bit shifts. This has been fixed.
  • x509 name had it's equality test based on the order of the directory elements, this has been fixed.
  • the mode used with the RSA cipher in KeyTransRecipientInfoParser in the smime implementation was not compatible with the Sun JCE. This has been fixed.
  • PKCS7 SignedData now supports single length signing chains.
  • When a root certificate had a different issuer id from the subject id, or had it's own AuthorityKeyExtension the PKCS12 key store would drop the root certificate from the certificate chain. This has been fixed.
  • The PKCS10 CertificationRequestInfo class always expected at least one attribute. This has been fixed.
  • UTF-8 strings are now correctly recognised.
  • The Tiger implementation was producing results in reverse byte order for each of the 3 words making up the digest. This has been fixed.
  • asn1.x509.ExtendedKeyUsage used to throw a null pointer exception on construction. This has been fixed.

2.66.3 Additional Functionality and Features

  • The BigInteger library now uses Montgomery numbers for modPow and is substantially faster.
  • SMIMECapabilities, and SMIMEEncryptionKeyPreference attributes added to S/MIME.
  • Increased range of key sizes available in S/MIME.
  • getInstance(ASN1TaggedObject, boolean) methods have been added to most ASN1 types. These deal with implicit/explicit tagging ambiguities with constructed types.
  • Added EncryptedPrivateKeyInfo object to the clean room JCE.
  • A PEMReader has been added for handling some of the openSSL PEM files.
  • The X.509 certificate factory supports a wider range of encodings and object identifiers.

2.67.1 Version

Release: 1.13
Date:      2002, April 19

2.67.2 Defects Fixed

  • The TBSCertificate object in the ASN.1 library now properly implements the Time object, rather returning UTC time.
  • The DESedeKeyGenerator now supports 112 and 168 bit key generation.
  • Certificates with the keyId set to null in the AuthorityKeyIdentifier extensions would sometimes cause the PKCS12 store to throw a NullPointer exception. This has been fixed.
  • toByteArray in the big integer class was not always producing correct results for negative numbers. This has been Fixed.

2.67.3 Additional Functionality and Features

  • The key to keySpec handling of the secret key factories has been improved.
  • There is now a SMIME implementation and a more complete CMS implementation (see CONTRIBUTORS file for additonal details).
  • A CertPath implementation that runs under jdk1.1 and jdk1.4 has also being contributed. A work around to allow it to be used with jdk1.2 and jdk1.3 has also been added. Note: the implementation is not quite complete because policymapping, name and subtree constraints are not yet implemented.
  • The API now supports the generation of PKCS7 signed objects. Note: this is still beta code - one known issue is that it doesn't support single length certificate chains for signing keys.

2.68.1 Version

Release: 1.12
Date:      2002, February 8

2.68.2 Defects Fixed

  • The ASN.1 library was unable to read an empty set object. This has been fixed.
  • Returning sets of critical and non-critical extensions on X.509 certificates could result in a null pointer exception if the certificate had no extensions. This has been fixed.
  • The BC JKS implementation does not follow the conventional one - it has been renamed BKS, an attempt to create a JKS keystore using the BC provider will now result in an exception.
  • The PKCS 10 generator verify(provider) method was ignoring the provider when generating the public key. This has been fixed.
  • The PKCS12 store would throw an OutOfMemoryException if passed a non-PKCS12 file. This has been fixed.
  • In the case where there was no AuthorityKeyIdentifier the PKCS12 store would fail to find certificates further up the signing chain. The store now uses the IssuerDN if no AuthorityKeyIdentifier is specified and the IssuerDN is different from the SubjectDN,
  • PKCS10/CertificationRequestInfo objects with only a single attribute wer not being handled properly. This has been fixed.
  • getExtensionValue for X.509 CRLs was returning the value of the DER-Encoded octet string not the DER-Encoded octet string as required. This has been fixed.
  • the IV algorithm parameters class would improperly throw an exception on initialisation. This has been fixed.

2.68.3 Additional Functionality and Features

  • The AESWrap ciphers will now take IV's.
  • The DES-EDEWrap algorithm described in https://www.ietf.org/internet-drafts/draft-ietf-smime-key-wrap-01.txt is now supported.
  • Support for the ExtendedKeyUsageExtension and the KeyPurposeId has been added.
  • The OID based alias for DSA has been added to the JCE provider.
  • BC key stores now implement the BCKeyStore interface so you can provide your own source of randomness to a key store.
  • The ASN.1 library now supports GeneralizedTime.
  • HMACSHA256, HMACSHA384, and HMACSHA512 are now added.
  • PSS has been added to the JCE, PSS and ISO9796 signers in the lightweight api have been rewritten so they can be used incrementally. SHA256withRSA, SHA384withRSA, and SHA512withRSA have been added.
  • Base support for CMS (RFC 2630) is now provided (see CONTRIBUTORS file for details).

2.69.1 Version

Release: 1.11
Date:      2001, December 10

2.69.2 Defects Fixed

  • X9.23 padding of MACs now works correctly with block size aligned data.
  • Loading a corrupted "UBER" key store would occasionally cause the appearance of hanging. This has been fixed.
  • Loading a PKCS12 store where not all certificates had PKCS9 attributes assigned to them would cause a NullPointerException. This has been fixed.
  • The PKCS12 store wasn't correctly recovering certificate chains of length less than 2 on calling the getCertificateChain method. This has been fixed.
  • Lone certificates were not been stored in the PKCS12 store. This has been fixed.
  • CFB and OFB modes weren't padding iv's more than 1 byte less than the block size of the cipher if the mode was reused with a shorter IV. This has been fixed.
  • IV handling and block size return values for CFB and OFB modes wasn't being handled in the same way as the Sun reference implementation. This has been fixed.
  • CertificateInfoRequests were not handling null attributes correctly. This has been fixed.
  • Tags for the X.509 GeneralName structure were wrongly encoded. This has been fixed.
  • getExtensionValue for X.509 certificates was returning the value of the DER-Encoded octet string not the DER-Encoded octet string as required. This has been fixed.
  • reset on the version 3 X.509 certificate generator was not flushing the extensions. This has been fixed.
  • The NetscapeCert type bits were reversed! This has been fixed.

2.69.3 Additional Functionality and Features

  • The lightweight API and the JCE provider now support ElGamal.
  • X509Principal, and X509Name now supports the "DC" attribute and the creation of directory names from vectors.
  • RSA-PSS signature padding has been added to the lightweight API.
  • EC Public/Private keys are now encoded in accordance with SEC 1. The library will still read older keys as well.
  • Added PKCS12-DEF a pkcs12 based key store which works around a bug in the Sun keytool - it always uses the default provider for creating certificates.
  • A cut down version of the Rijndael has been added that provides the functionality required to conform the the AES. It is designed to fully support FIPS-197. A fips AES wrapper (AESWrap in the JCE, AESWrapEngine in the lightweight library has also been added).
  • Elliptic curve routines now handle uncompressed points as well as the compressed ones.

2.69.4 Other changes

  • As the range of public key types supported has expanded the getPublicKey method on the SubjectPublicKeyInfo class is not always going to work. The more generic method getPublicKeyData has been added and getPublicKey now throws an IOException if there is a problem.

2.70.1 Version

Release: 1.10
Date:      2001, October 20

2.70.2 Defects Fixed

  • The PKCS12 Key Store now interoperates with the JDK key tool. Note: this does mean the the key name passed to the setKeyEntry calls has become significant.
  • The "int" constructor for DERInteger only supported ints up to 128. This has been fixed.
  • The ASN.1 input streams now handle zero-tagged zero length objects correctly.

2.70.3 Additional Functionality and Features

  • The JCE Provider and the lightweight API now support Serpent, CAST5, and CAST6.
  • The JCE provider and the lightweight API now has an implementation of ECIES. Note: this is based on a draft, don't use it for anything that needs to be kept long term as it may be adjusted.
  • Further work has been done on performance - mainly in the symmetric ciphers.
  • Support for the generation of PKCS10 certification requests has been added.

2.71.1 Version

Release: 1.09
Date:      2001, October 6

2.71.2 Defects Fixed

  • failure to pass in an RC5 parameters object now results in an exception at the upper level of the JCE, rather than falling over in the lightweight library.
  • ISO10126Padding now incorporates the correct amount of random data.
  • The PKCS12 key store wasn't picking up certificate chains properly when being used to write PKCS12 files. This has been fixed.
  • The Twofish engine would call System.exit if the key was too large. This has been fixed.
  • In some cases the ASN.1 library wouldn't handle implicit tagging properly. This has been fixed.

2.71.3 Additional Functionality and Features

  • Support for RC5-64 has been added to the JCE.
  • ISO9796-2 signatures have been added to the JCE and lightweight API.
  • A more general paddings packge for use with MACs and block ciphers had been aded to the lightweight API. MACs now allow you to specify padding.
  • X9.23 Padding has been added to the JCE and lightwieght API. The old PaddedBlockCipher class is now deprecated see org.bouncycastle.crypto.paddings for details.
  • SHA-256, SHA-384, and SHA-512 are now added. Note: while the public review period has finished, these algorithms have not yet been standardised, in the event that final standardisation changes the algorithms these implementations will be changed.
  • It's now possible to set bag attributes on items to go into a PKCS12 store, using the org.bouncycastle.jce.interfaces.PKCS12BagAttributeCarrier interface.
  • More classses have been added to the ASN.1 package for dealing with certificate extensions and CRLs including a CRL generator. Note: the CRL generators should be regarded as under development and subject to change.
  • There's now an examples package for the JCE (in addition to the examples in org.bouncycastle.jce.provider.test) - org.bouncycastle.jce.examples. It currently consists of a class showing how to generate a PKCS12 file.
  • The X.509 CertificateFactory now includes CRL support. DER or PEM CRLs may be processed.
  • The BigInteger library has been written with a view to making it less resource hungry and faster - whether it's fast enough remains to be seen!

2.72.1 Version

Release: 1.08
Date:      2001, September 9

2.72.2 Defects Fixed

  • It wasn't possible to specify an ordering for distinguished names in X509 certificates. This is now supported.
  • In some circumstances stream Ciphers in the JCE would cause null pointer exceptions on doFinal. This has been fixed.
  • Unpadded ciphers would sometimes buffer the last block of input, even if it could be processed. This has been fixed.
  • The netscape certificate request class wouldn't compile under JDK 1.1. This has been fixed.

2.72.3 Additional Functionality and Features

  • ISO 9796-1 padding is now supported with RSA in the lightweight API and the JCE.
  • support classes have been added for reading and writing PKCS 12 files, including a keystore for the JCA.
  • The message digests MD4, Tiger, and RIPEMD128 have been added to the JCE and the lightweight API. Note: MD4 and RIPEMD128 have been added for compatibility purposes only - we recommend you don't use them for anything new!
  • The JDK 1.1 certificate classes didn't conform to the JDK 1.2 API as the collections class was not present. Thanks to a donated collections API this is fixed.

2.73.1 Version

Release: 1.07
Date:      2001, July 9

2.73.2 Defects Fixed

  • It turned out that the setOddParity method in the DESParameter class was indeed doing something odd but not what was intended. This is now fixed. Note:This will affect some PBE encryptions that were carried out with DES, equivalent PBE ciphers to the old PBE DES cipher can be accessed by prepending the work "Broken" in front of the original PBE cipher call. If you want an example of how to deal with this as a migration issue have a look in org.bouncycastle.jce.provider.JDKKeyStore lines 201-291.

2.74.1 Version

Release: 1.06
Date:      2001, July 2

2.74.2 Defects Fixed

  • Diffie-Hellman keys are now properly serialisable as well as encodable.
  • Three of the semi-weak keys in the DESParameters, and the DESKeySpec look up table, were incorrect. This has been fixed.
  • DESEDE key generators now accept 112 and 168 as the key sizes, as well as 128 and 192 (for those people who don't like to count the parity bits).
  • Providing no strength parameter is passed to the DESede key generator in the JCE provider, the provider now generates DESede keys in the k1-k2-k1 format (which is compatible with the Sun reference implementation), otherwise you get what you ask for (3-DES or 2-DES in the minimum number of bytes).
  • Base Diffie-Hellman key agreement now works correctly for more than two parties.
  • Cipher.getAlgorithmParameters was returing null in cases where a cipher object had generated it's own IV. This has been fixed.
  • An error in the key store occasionally caused checks of entry types to result in a null pointer exception. This has been fixed.
  • RSA key generator in JCE now recognises RSAKeyGenerationParameterSpec.
  • Resetting and resusing HMacs in the lightweight and heavyweight libraries caused a NullPointer exception. This has been fixed.

2.74.3 Additional Functionality

  • ISO10126Padding is now recognised explicitly for block ciphers as well.
  • The Blowfish implementation is now somewhat faster.

2.75.1 Version

Release: 1.05
Date:      2001, April 17

2.75.2 Defects Fixed

  • The DESEDE key generator can now be used to generate 2-Key-DESEDE keys as well as 3-Key-DESEDE keys.
  • One of the weak keys in the DESParameters, and the DESKeySpec look up table, was incorrect. This has been fixed.
  • The PKCS12 generator was only generating the first 128-160 bits of the key correctly (depending on the digest used). This has been fixed.
  • The ASN.1 library was skipping explicitly tagged objects of zero length. This has been fixed.

2.75.3 Additional Functionality

  • There is now an org.bouncycastle.jce.netscape package which has a class in for dealing with Netscape Certificate Request objects.

2.75.4 Additional Notes

Concerning the PKCS12 fix: in a few cases this may cause some backward compatibility issues - if this happens to you, drop us a line at feedback-crypto@bouncycastle.org and we will help you get it sorted out.

2.76.1 Version

Release: 1.04
Date:      2001, March 11

2.76.2 Defects Fixed

  • Signatures generated by other providers that include optional null parameters in the AlgorithmIdentifier are now handled correctly by the provider.
  • The JCE 1.2.1 states that the names of algorithms associated with the JCE are case insensitive. The class that matches algorithms to names now tries to match the name given with it's equivalent in upper case, before trying to match it as given. If you write a provider and include versions of your algorithm names in uppercase only, this JCE implementation will always match a getInstance regardless of the case of the algorithm passed into the getInstance method.
  • If the JCE API and the Provider were in a different class path, the class loader being used sometimes failed to find classes for JCE Ciphers, etc. This has been fixed.
  • An error in the ASN.1 library was causing problems serialising Diffie-Hellman keys. This has been fixed.
  • The agreement package was left out of the j2me bat file. This has been fixed.
  • The BigInteger class for 1.0 and the j2me wasn't able to generate random integers (prime or otherwise). This has been fixed.
  • The BigInteger class would sometimes go into a death spiral if the any 32nd bit of an exponent was set when modPow was called. This has been fixed.
  • Cipher.getInstance would treat "//" in a transformation as a single "/". This has been fixed.
  • PBEWithSHAAndIDEA-CBC was throwing an exception on initialisation. This has been fixed.
  • The X509Name class in the asn1.x509 package wasn't initialising its local hash table when the hash table constructor was called. This has been fixed.

2.76.3 Additional Functionality

  • Added Elliptic Curve DSA (X9.62) - ECDSA - to provider and lightweight library.
  • Added Elliptic Curve basic Diffie-Hellman to provider and lightweight library.
  • Added DSA support to the provider and the lightweight library.
  • Added super class interfaces for basic Diffie-Hellman agreement classes to lightweight library.
  • The certificate generators now support ECDSA and DSA certs as well.

2.77.1 Version

Release: 1.03
Date:      2001, January 7

2.77.2 Defects Fixed

  • CFB and OFB modes when specified without padding would insist on input being block aligned. When specified without padding CFB and OFB now behave in a compatible fashion (a doFinal on a partial block will yield just the data that could be processed). In short, it provides another way of generating cipher text the same length as the plain text.

2.78.1 Version

Release: 1.02
Date:      2000, November 7

2.78.2 Defects Fixed

  • The RSA key pair generator occasionally produced keys 1 bit under the requested size. This is now fixed.

2.79.1 Version

Release: 1.01
Date:      2000, October 15

2.79.2 Defects Fixed

  • Buffered ciphers in lightweight library were not resetting correctly on a doFinal. This has been fixed.

2.80.1 Version

Release: 1.00
Date:      2000, October 13

2.80.2 Defects Fixed

  • JDK1.2 version now works with keytool for certificate generation.
  • Certificate toString method no longer throws a null pointer exception if a group [3] extension has not been added.
  • Under some circumstances the NullCipher would throw a NullPointerException, this has been fixed.
  • Under some circumstances CipherInputStream would throw a NullPointerException, this has been fixed.
  • OpenSSL/SSLeay private key encodings would cause an exception to be thrown by the RSA key factory. This is now fixed.
  • The Cipher class always used the default provider even when one was specified, this has been fixed.
  • Some DES PBE algorithms did not set the parity correctly in generated keys, this has been fixed.

2.80.3 Additional functionality

  • Argument validation is much improved.
  • An X509KeyUsage class has been added to the JCE class to make it easier to specify the KeyUsage extension on X.509 certificates.
  • The library now allows creation of version 1 certificates as well.

3.0 Notes

The J2ME is only supported under Windows.

If you are trying to use the lightweight provider in a JDK 1.0 applet, you need to change the package names for java.math.BigInteger, java.lang.IllegalStateException, and java.security.SecureRandom

The RSA test under JDK 1.0 and J2ME takes a while to run...