Increases max pool of SHA 256 processors

This commit is contained in:
Vitor Pamplona
2025-11-25 15:02:50 -05:00
parent 7981ecc82c
commit ff8b441bf6
@@ -22,7 +22,7 @@ package com.vitorpamplona.quartz.utils.sha256
import java.io.InputStream
val pool = Sha256Pool(5) // max parallel operations
val pool = Sha256Pool(10) // max parallel operations
actual fun sha256(data: ByteArray) = pool.hash(data)