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. */