Clone
3
Home
Infendro edited this page 2025-12-14 13:51:57 +00:00

prng-kt

prng-kt is a Kotlin Multiplatform library that provides common Pseudorandom Number Generators.

Supported PRNG algorithms:

  • LCG

Supported CSPRNG algorithms:

  • HMAC DRBG

Targets

Target Status
JVM Supported
JavaScript Supported
Native (Linux) Supported
Native (Windows) Not Supported

Installation

Add the following to your build.gradle.kts.

repositories {
    maven("https://git.infendro.com/api/packages/Infendro/maven")
}

dependencies {
    implementation("com.infendro:prng:1.2.0")
}