All Downloads are FREE. Search and download functionalities are using the official Maven repository.

tech.relaycorp.vera.utils.PRNG.kt Maven / Gradle / Ivy

The newest version!
package tech.relaycorp.vera.utils

import java.math.BigInteger
import java.security.SecureRandom

internal fun generateRandomBigInteger(): BigInteger {
    val random = SecureRandom()
    return BigInteger(64, random)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy