From b6dbd6bbb523847d27b96501505322d36e9e2348 Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Tue, 30 May 2017 16:10:57 +0100 Subject: [PATCH] Add docs --- core/src/main/kotlin/net/corda/core/node/services/Services.kt | 1 - docs/source/changelog.rst | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/core/src/main/kotlin/net/corda/core/node/services/Services.kt b/core/src/main/kotlin/net/corda/core/node/services/Services.kt index a673001f05..97cc2bce84 100644 --- a/core/src/main/kotlin/net/corda/core/node/services/Services.kt +++ b/core/src/main/kotlin/net/corda/core/node/services/Services.kt @@ -20,7 +20,6 @@ import net.corda.core.transactions.LedgerTransaction import net.corda.core.transactions.TransactionBuilder import net.corda.core.transactions.WireTransaction import org.bouncycastle.cert.X509CertificateHolder -import org.bouncycastle.operator.ContentSigner import rx.Observable import java.io.InputStream import java.security.PublicKey diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 7d7783ebc0..e210cc7428 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -50,6 +50,10 @@ UNRELEASED * Names of parties are now stored as a ``X500Name`` rather than a ``String``, to correctly enforce basic structure of the name. As a result all node legal names must now be structured as X.500 distinguished names. + * The Bouncy Castle library ``X509CertificateHolder`` class is now used in place of ``X509Certificate`` in order to + have a consistent class used internally. Conversions to/from ``X509Certificate`` are done as required, but should + be avoided where possible. + * There are major changes to transaction signing in flows: * You should use the new ``CollectSignaturesFlow`` and corresponding ``SignTransactionFlow`` which handle most