main.com.wire.crypto.client.ByteUtils.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-crypto-jvm Show documentation
Show all versions of core-crypto-jvm Show documentation
MLS/Proteus multiplexer abstraction with encrypted persistent storage in Rust
package com.wire.crypto.client
fun String.toByteArray() = encodeToByteArray()
fun ByteArray.toHex(): String = joinToString(separator = "") { b -> "%02x".format(b) }
© 2015 - 2024 Weber Informatics LLC | Privacy Policy