Jeroen van Erp
Jeroen van Erp
If you use FileSystemFile, that uses direct FileInputStream and FileOutputStream. It might be worthwhile to wrap those in a Buffered(Input|Output)Stream before passing them
I can have a look, I think the compression speed itself is suboptimal, thus a limiting factor.
@fire2 That means that most probably your bandwidth is the limiting factor in your test, not the CPU speed.
Yes, it was changed, as I took over from Shikhar as maintainer. I have push access to com.hierynomus amongst others. I didn't yet want to break all code by moving...
Thought about it some more. Will not do that for the next release, but will first release a new version. The main reason is that there are a lot of...
You should be able to implement this using the following: ``` SSHClient client = new SSHClient(); client.connect(...); client.auth("username", new AuthPublicKey(keyPair), new AuthPassword("password")); ``` Let me know if that works.
@pseudometric Does it work?
Typically you get the `exhausted available auth methods` if strong cryptography is disabled. Have you seen any log messages pertaining to that? If so enable the JCE Crypto extensions in...
Hi, From what I see from the logging we receive a `01`, meaning a `DISCONNECT` on the `KEXDH_INIT` message. Meaning the server you're connecting to didn't like the message of...
Ok, so the server only supports the `diffie-hellman-group1-sha1` kex algorithm Does that exception happen consistently with 0.27? Because that's a different exception from what we're seeing with 0.31.