Object/Class

fr.acinq.eclair.crypto

TransportHandler

Related Docs: class TransportHandler | package crypto

Permalink

object TransportHandler

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TransportHandler
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. sealed trait Data extends AnyRef

    Permalink
  2. case class Decryptor(state: CipherState, ciphertextLength: Option[Int], buffer: ByteString) extends Product with Serializable

    Permalink
  3. case class Encryptor(state: CipherState) extends Product with Serializable

    Permalink
  4. case class ExtendedCipherState(cs: CipherState, ck: ByteVector) extends CipherState with Product with Serializable

    Permalink

    extended cipher state which implements key rotation as per BOLT #8

    extended cipher state which implements key rotation as per BOLT #8

    cs

    cipher state

    ck

    chaining key

  5. case class HandshakeCompleted(connection: ActorRef, transport: ActorRef, remoteNodeId: PublicKey) extends Product with Serializable

    Permalink
  6. case class HandshakeData(reader: HandshakeStateReader, buffer: ByteString = ByteString.empty) extends Data with Product with Serializable

    Permalink
  7. case class Listener(listener: ActorRef) extends Product with Serializable

    Permalink
  8. case class NormalData[T](encryptor: Encryptor, decryptor: Decryptor, listener: ActorRef, sendBuffer: SendBuffer[T], unackedReceived: Map[T, Int], unackedSent: Option[T]) extends Data with Product with Serializable

    Permalink
  9. case class ReadAck(msg: Any) extends Product with Serializable

    Permalink
  10. case class SendBuffer[T](normalPriority: Queue[T], lowPriority: Queue[T]) extends Product with Serializable

    Permalink
  11. sealed trait State extends AnyRef

    Permalink
  12. case class WaitingForListenerData(encryptor: Encryptor, decryptor: Decryptor) extends Data with Product with Serializable

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Handshake extends State with Product with Serializable

    Permalink
  5. val MAX_BUFFERED: Long

    Permalink
  6. object Normal extends State with Product with Serializable

    Permalink
  7. object WaitingForListener extends State with Product with Serializable

    Permalink
  8. object WriteAck extends Event with Product with Serializable

    Permalink
  9. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  13. def expectedLength(reader: HandshakeStateReader): Int

    Permalink

    See BOLT #8: during the handshake phase we are expecting 3 messages of 50, 50 and 66 bytes (including the prefix)

    See BOLT #8: during the handshake phase we are expecting 3 messages of 50, 50 and 66 bytes (including the prefix)

    reader

    handshake state reader

    returns

    the size of the message the reader is expecting

  14. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  15. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. def makeReader(localStatic: KeyPair): HandshakeStateReader

    Permalink
  18. def makeWriter(localStatic: KeyPair, remoteStatic: ByteVector): HandshakeStateWriter

    Permalink
  19. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  21. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  22. val prefix: Byte

    Permalink
  23. val prologue: ByteVector

    Permalink
  24. def props[T](keyPair: KeyPair, rs: Option[ByteVector], connection: ActorRef, codec: Codec[T])(implicit arg0: ClassTag[T]): Props

    Permalink
  25. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  26. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from AnyRef

Inherited from Any

Ungrouped