digest

expect fun digest(): ByteArray(source)

Completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.


expect fun digest(input: ByteArray): ByteArray(source)

Updates the instance with provided input then completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.

actual override fun digest(): ByteArray(source)

Completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.


actual override fun digest(input: ByteArray): ByteArray(source)

Updates the instance with provided input then completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.

actual fun digest(): ByteArray(source)

Completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.


actual fun digest(input: ByteArray): ByteArray(source)

Updates the instance with provided input then completes the computation, performing final operations and returning the resultant array of bytes. The Digest is reset afterward.