Package org.vngx.jsch.algorithm

Examples of org.vngx.jsch.algorithm.SignatureRSA.update()


      byte[] n = hostKeyBuffer.getMPInt();

      // Create SignatureRSA instance for verifying server host
      SignatureRSA sig = AlgorithmManager.getManager().createAlgorithm(Algorithms.SIGNATURE_RSA, _session);
      sig.setPubKey(ee, n);
      sig.update(_H);
      return sig.verify(signatureOfH);
    } catch(Exception e) {
      throw new KexException("Failed to verify host key (RSA)", e);
    }
  }
View Full Code Here


    switch( _keyType ) {
      case SSH_RSA: {
        try {
          SignatureRSA rsa = AlgorithmManager.getManager().createAlgorithm(Algorithms.SIGNATURE_RSA);
          rsa.setPrvKey(_dRSA, _nRSA);
          rsa.update(data);
          byte[] sig = rsa.sign();
          byte[] buffer = new byte[KeyType.SSH_RSA.toString().length() + 4 + sig.length + 4];
          Buffer buf = new Buffer(buffer);
          buf.putString(KeyType.SSH_RSA.getBytes());
          buf.putString(sig);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.