Interface I2PClient

All Known Implementing Classes:
I2PClientImpl, I2PSimpleClient

public interface I2PClient
Define the standard means of interacting with the I2P system An I2PClient contains no state, it is just a facility for creating private key files and generating sesssions from existing private key files.
Author:
jrandom
  • Field Details

    • PROP_TCP_HOST

      static final String PROP_TCP_HOST
      Standard host property, defaulting to localhost if not specified
      See Also:
    • PROP_TCP_PORT

      static final String PROP_TCP_PORT
      Standard port number property
      See Also:
    • PROP_RELIABILITY

      static final String PROP_RELIABILITY
      Reliability property
      See Also:
    • PROP_RELIABILITY_BEST_EFFORT

      static final String PROP_RELIABILITY_BEST_EFFORT
      Reliability value: best effort
      See Also:
    • PROP_RELIABILITY_GUARANTEED

      static final String PROP_RELIABILITY_GUARANTEED
      Reliability value: guaranteed
      See Also:
    • PROP_RELIABILITY_NONE

      static final String PROP_RELIABILITY_NONE
      Since:
      0.8.1
      See Also:
    • PROP_SIGTYPE

      static final String PROP_SIGTYPE
      Since:
      0.9.12
      See Also:
    • DEFAULT_SIGTYPE

      static final SigType DEFAULT_SIGTYPE
      Since:
      0.9.12
    • PROP_FAST_RECEIVE

      static final String PROP_FAST_RECEIVE
      For router->client payloads. If false, the router will send the MessageStatus, the client must respond with a ReceiveMessageBegin, the router will send the MessagePayload, and the client respond with a ReceiveMessageEnd. If true, the router will send the MessagePayload immediately, and will not send a MessageStatus. The client will not send ReceiveMessageBegin or ReceiveMessageEnd. Default false, but the implementation in this package sets to true.
      Since:
      0.9.4
      See Also:
    • PROP_ENABLE_SSL

      static final String PROP_ENABLE_SSL
      Since:
      0.9.44, was protected in I2PSessionImpl
      See Also:
    • PROP_USER

      static final String PROP_USER
      Since:
      0.9.44, was protected in I2PSessionImpl
      See Also:
    • PROP_PW

      static final String PROP_PW
      Since:
      0.9.44, was protected in I2PSessionImpl
      See Also:
    • PROP_GZIP

      static final String PROP_GZIP
      Since:
      0.9.46
      See Also:
    • DEFAULT_LISTEN_PORT

      static final int DEFAULT_LISTEN_PORT
      7654
      Since:
      0.9.38
      See Also:
    • PROTOCOL_BYTE

      static final int PROTOCOL_BYTE
      protocol flag that must be sent when opening the i2cp connection to the router
      See Also:
  • Method Details

    • createSession

      I2PSession createSession(InputStream destKeyStream, Properties options) throws I2PSessionException
      Create a new client session for the Destination stored at the destKeyStream using the specified options to both connect to the router, to instruct the router how to handle the new session, and to configure the end to end encryption. As of 0.9.19, defaults in options are honored.
      Parameters:
      destKeyStream - location from which to read the Destination, PrivateKey, and SigningPrivateKey from, format is specified in PrivateKeyFile
      options - set of options to configure the router with, if null will use System properties
      Returns:
      new session allowing a Destination to recieve all of its messages and send messages to any other Destination.
      Throws:
      I2PSessionException
    • createDestination

      Destination createDestination(OutputStream destKeyStream) throws I2PException, IOException
      Create a new destination with the default certificate creation properties and store it, along with the private encryption and signing keys at the specified location Caller must close stream.
      Parameters:
      destKeyStream - create a new destination and write out the object to the given stream, formatted as Destination, PrivateKey, and SigningPrivateKey format is specified in PrivateKeyFile
      Returns:
      new destination
      Throws:
      I2PException
      IOException
    • createDestination

      Destination createDestination(OutputStream destKeyStream, SigType type) throws I2PException, IOException
      Create a destination with the given signature type. It will have a null certificate for DSA 1024/160 and KeyCertificate otherwise. This is not bound to the I2PClient, you must supply the data back again in createSession(). Caller must close stream.
      Parameters:
      destKeyStream - location to write out the destination, PrivateKey, and SigningPrivateKey, format is specified in PrivateKeyFile
      Throws:
      I2PException
      IOException
      Since:
      0.9.12
    • createDestination

      Destination createDestination(OutputStream destKeyStream, Certificate cert) throws I2PException, IOException
      Create a new destination with the given certificate and store it, along with the private encryption and signing keys at the specified location Caller must close stream.
      Parameters:
      destKeyStream - location to write out the destination, PrivateKey, and SigningPrivateKey, format is specified in PrivateKeyFile
      cert - certificate to tie to the destination
      Returns:
      newly created destination
      Throws:
      I2PException
      IOException