Package com.subgraph.orchid.crypto

Examples of com.subgraph.orchid.crypto.TorTapKeyAgreement


      logger.info("Failed to open connection to any introduction point");
      rendezvous.markForClose();
      return null;
    }
    logger.fine("Sending introduce cell for "+ logServiceName());
    final TorTapKeyAgreement kex = new TorTapKeyAgreement();
    final boolean icResult = introductionProcessor.sendIntroduce(introductionProcessor.getServiceKey(), kex.getPublicKeyBytes(), rp.getCookie(), rp.getRendezvousRouter());
    introductionProcessor.markCircuitForClose();
    if(!icResult) {
      rendezvous.markForClose();
      return null;
    }
View Full Code Here


  private final Router router;
 
  public TapCircuitExtender(CircuitExtender extender, Router router) {
    this.extender = extender;
    this.router = router;
    this.kex = new TorTapKeyAgreement(router.getOnionKey());
  }
View Full Code Here

TOP

Related Classes of com.subgraph.orchid.crypto.TorTapKeyAgreement

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.