Merge pull request #1625 from nrobi144/feat/desktop-multiplatform

Create desktopApp module
This commit is contained in:
Vitor Pamplona
2025-12-29 10:41:58 -05:00
committed by GitHub
155 changed files with 5209 additions and 277 deletions
@@ -29,6 +29,8 @@ fun ByteArray.toHexKey(): HexKey = Hex.encode(this)
fun HexKey.hexToByteArray(): ByteArray = Hex.decode(this)
fun HexKey.hexToByteArrayOrNull(): ByteArray? = if (Hex.isHex(this)) Hex.decode(this) else null
const val PUBKEY_LENGTH = 64
const val EVENT_ID_LENGTH = 64