Update crytpo module package structure

This commit is contained in:
Severiano Jaramillo 2024-04-28 17:55:22 -07:00
parent f70176d47c
commit 32bc268594
3 changed files with 3 additions and 3 deletions

View file

@ -1,4 +1,4 @@
package net.agorise.shared.crypto.crc package net.agorise.shared.crypto
/** /**
* Provides functionality to calculate CRC-32 checksums. * Provides functionality to calculate CRC-32 checksums.

View file

@ -1,4 +1,4 @@
package net.agorise.shared.crypto.crc package net.agorise.shared.crypto
import kotlin.test.Test import kotlin.test.Test
import kotlin.test.assertEquals import kotlin.test.assertEquals

View file

@ -3,7 +3,7 @@ package net.agorise.shared.stargate.mnemonics
import dev.whyoleg.cryptography.bigint.BigInt import dev.whyoleg.cryptography.bigint.BigInt
import dev.whyoleg.cryptography.bigint.decodeToBigInt import dev.whyoleg.cryptography.bigint.decodeToBigInt
import io.ktor.utils.io.core.toByteArray import io.ktor.utils.io.core.toByteArray
import net.agorise.shared.crypto.crc.Crc32 import net.agorise.shared.crypto.Crc32
/** /**
* Provides functionality to create and validate mnemonics. * Provides functionality to create and validate mnemonics.