implement HMAC PRNG

This commit is contained in:
2025-07-24 20:51:31 +02:00
parent abd9ff96f1
commit de4c18afe3
2 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package com.infendro.random
object PRNG {
val HMAC = HMAC()
}