toOnionAddressV3

@JvmStatic
@JvmName(name = "get")
fun String.toOnionAddressV3(): OnionAddress.V3(source)

Parses a String for a v3 .onion address.

String can be either a URL containing the v3 .onion address, or the v3 .onion address itself.

Return

OnionAddress.V3

Throws

IllegalArgumentException

when:

  • A 56 character base 32 encoded string is not found

  • The version byte is invalid

  • The checksum is invalid

  • The 32 byte ed25519 public key is all 0 bytes (blank)


@JvmStatic
@JvmName(name = "get")
fun ByteArray.toOnionAddressV3(): OnionAddress.V3(source)

Transforms provided bytes into a v3 .onion address.

Return

OnionAddress.V3

Throws

IllegalArgumentException

when:

  • Array size is not 35 bytes

  • The version byte is invalid

  • The checksum is invalid

  • The 32 byte ed25519 public key is all 0 bytes (blank)