generateNonceSuspend

expect suspend fun generateNonceSuspend(length: Int = NONCE_SIZE_IN_CHARS): String(source)

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

Report a problem

actual suspend fun generateNonceSuspend(length: Int): String(source)

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

Report a problem

actual suspend fun generateNonceSuspend(length: Int): String(source)

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

Report a problem

actual suspend fun generateNonceSuspend(length: Int): String(source)

Generates a nonce string.

Report a problem