From 7898c902e483350ace5f9382f1b4517a5515ccdb Mon Sep 17 00:00:00 2001 From: Ross Nicoll Date: Fri, 10 Mar 2017 15:36:37 +0000 Subject: [PATCH] Remove out of date documentation Remove out of date documentation about the "covering" field of DigitalSignature, which no longer exists. --- .../main/kotlin/net/corda/core/crypto/CryptoUtilities.kt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/src/main/kotlin/net/corda/core/crypto/CryptoUtilities.kt b/core/src/main/kotlin/net/corda/core/crypto/CryptoUtilities.kt index 3f2d7473aa..8a934886d9 100644 --- a/core/src/main/kotlin/net/corda/core/crypto/CryptoUtilities.kt +++ b/core/src/main/kotlin/net/corda/core/crypto/CryptoUtilities.kt @@ -22,11 +22,7 @@ fun newSecureRandom(): SecureRandom { } } -/** - * A wrapper around a digital signature. The covering field is a generic tag usable by whatever is interpreting the - * signature. It isn't used currently, but experience from Bitcoin suggests such a feature is useful, especially when - * building partially signed transactions. - */ +/** A wrapper around a digital signature. */ @CordaSerializable open class DigitalSignature(bits: ByteArray) : OpaqueBytes(bits) { /** A digital signature that identifies who the public key is owned by. */