create crypto project

This commit is contained in:
2021-01-23 11:43:40 +06:00
parent d074f29b82
commit a4020cb484
13 changed files with 193 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
package dev.inmo.micro_utils.coroutines
import kotlinx.coroutines.await
import org.khronos.webgl.Int8Array
import org.w3c.fetch.Response
import org.w3c.files.Blob
suspend fun Blob.toByteArray() = Int8Array(
Response(this).arrayBuffer().await()
) as ByteArray