tryVerify
abstract fun tryVerify(signature: ByteArray, startIndex: Int = 0, endIndex: Int = signature.size): Boolean(source)
open fun tryVerify(signature: ByteString, startIndex: Int = 0, endIndex: Int = signature.size): Boolean(source)
Checks whether the signature (or its subrange from startIndex to endIndex) is valid for the data fed so far. Returns true if the signature is valid, false otherwise.
For a throwing variant, use verify.