OnionAddress

sealed class OnionAddress : Address(source)

Base abstraction for denoting a String value as a .onion address

e.g.

val string = "2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid"

string.toOnionAddress()
"http://${string}.onion:8080/some/path".toOnionAddress()
"http://subdomain.${string}.onion:8080/some/path".toOnionAddress()

See also

Inheritors

Types

Link copied to clipboard
object Companion
Link copied to clipboard

Holder for a 56 character base 32 encoded v3 onion address, without the scheme or .onion appended.

Properties

Link copied to clipboard
@JvmField
val value: String

Functions

Link copied to clipboard

Wraps the OnionAddress in its AddressKey.Public format.

Link copied to clipboard
fun canonicalHostName(): String

Returns value in its canonicalized hostname form

Link copied to clipboard
operator override fun compareTo(other: Address): Int
Link copied to clipboard
abstract fun decode(): ByteArray
Link copied to clipboard
@JvmStatic
@JvmName(name = "anyHostIPv4To")
fun OnionAddress.mappingToAnyHostIPv4(): AddressMapping

Creates a AddressMapping that instructs tor to generate a virtual IPAddress.V4 address and map the provided OnionAddress to it.

Link copied to clipboard
@JvmStatic
@JvmName(name = "anyHostIPv6To")
fun OnionAddress.mappingToAnyHostIPv6(): AddressMapping

Creates a AddressMapping that instructs tor to generate a virtual IPAddress.V4 address and map the provided OnionAddress to it.