exposed secureRandom

This commit is contained in:
nathan 2020-09-28 16:12:50 +02:00
parent 1040cf14f5
commit 4dc58f2485

View File

@ -70,7 +70,7 @@ internal class CryptoManagement(val logger: KLogger,
val privateKeyBytes: ByteArray
val publicKeyBytes: ByteArray
private val secureRandom = SecureRandom(settingsStore.getSalt())
val secureRandom = SecureRandom(settingsStore.getSalt())
private val iv = ByteArray(GCM_IV_LENGTH_BYTES)
val cryptOutput = AeronOutput()