generateNonce

Deprecated

Use generateNonceBlocking in blocking contexts and generateNonceSuspend in non-blocking contexts

Replace with

generateNonceBlocking()

Generates a nonce string 32 characters long. Could block if the system's entropy source is empty

Report a problem


Deprecated

Use generateNonceBlocking in blocking contexts and generateNonceSuspend in non-blocking contexts

Replace with

import io.ktor.utils.io.core.toByteArray
generateNonceBlocking(size).toByteArray()

Generates a nonce bytes of size. Could block if the system's entropy source is empty

Report a problem