aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'master' into gradle-conversionKenny Root2015-06-091-10/+1
|\
| * Remove wrong link to licenseKenny Root2015-06-091-10/+1
| | | | | | | | Closes #77
* | Merge branch 'master' into gradle-conversionKenny Root2015-06-092-4/+4
|\|
| * Set the default RSA key size to 2048 bitsKenny Root2015-06-092-6/+6
| | | | | | | | | | This should be the default size according to NIST 800-57 for new keys. Closes #81.
* | Merge branch 'master' into gradle-conversionKenny Root2015-06-091-0/+6
|\|
| * Scale entropy dialog text with display densityKenny Root2015-06-092-1/+2
| | | | | | | | Fixes #82.
| * Update the CHANGELOG for recent commitsKenny Root2015-06-091-0/+5
| |
* | Scale entropy dialog text with display densityKenny Root2015-06-091-1/+1
| |
* | Merge branch 'master' into gradle-conversionKenny Root2015-06-092-3/+4
|\|
| * Use explicit Intent when launching from Host ListKenny Root2015-06-091-0/+1
| | | | | | | | | | | | If there are multiple apps that can handle the "ssh" protocol, it will bring up an activity disambiguation dialog if we don't specify the component explicitly. Fixes #84.
| * Change MessageDigest algorithms to standard nameKenny Root2015-06-091-3/+3
| | | | | | | | | | | | | | These message digests need a hyphen according to https://docs.oracle.com/javase/7/docs/technotes/guides/security/StandardNames.html#MessageDigest Fixes #87
* | Merge branch 'master' into gradle-conversionKenny Root2015-06-013-5/+8
|\|
| * We should be decoding the public key not privateKenny Root2015-06-011-1/+1
| | | | | | | | Thanks to @msoulatre-tt for pointing out the bug. Closes #83.
| * Update version code for v1.8.4Kenny Root2015-04-192-4/+7
| |
* | Merge branch 'master' into gradle-conversionKenny Root2015-04-193-7/+27
|\|
| * telnet: try all addresses for hostKenny Root2015-04-192-3/+20
| | | | | | | | Closes #46
| * Merge pull request #21 from zakki/keep-local-connectionKenny Root2015-04-191-4/+7
| |\ | | | | | | Keep local connections when network down.
| | * Keep local connections when network down.Kensuke Matsuzaki2010-11-141-4/+7
| | |
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-194-67/+25
|\| |
| * | ssh: try all addresses when connectingKenny Root2015-04-192-67/+17
| | | | | | | | | | | | This should satisfy the SSH part of issue #46.
| * | ssh: display the key exchange algorithm usedKenny Root2015-04-193-0/+8
| | |
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-172-2/+3
|\| |
| * | Telnet: ensure port number is below maximumKenny Root2015-04-172-2/+3
| | | | | | | | | | | | Closes #62
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-162-15/+12
|\| |
| * | Update CHANGELOG for TerminalManager fixKenny Root2015-04-161-0/+1
| | | | | | | | | | | | | | | In change 613bc40cdd458c7127902d1fd0b7b4b12fb27268 there was a fix that could be significant for some, so update the CHANGELOG to reflect that.
| * | Keep TerminalManager alive even during rebindKenny Root2015-04-161-15/+11
| | |
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-1431-106/+3
|\| |
| * | Update translationsKenny Root2015-04-1429-87/+0
| | | | | | | | | | | | Remove unused bind_{minutes,seconds,days} from other languages.
| * | Use DateUtils.getRelativeTimeSpanStringPeter Collingbourne2015-04-142-19/+3
| | | | | | | | | | | | Closes #2
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-053-3/+5
|\| |
| * | ECDH there should be no negative bigintKenny Root2015-04-053-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | Since the hash is over the canonical values of the agreed parameters when the shared secret was encoded as a negative biginteger, the two sides didn't agree. Make sure this doesn't occur by setting the bigint signum to 1. Change-Id: Ib0581cd7dc280dcce8cc3309d7102f8f5a444158
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-052-1/+13
|\| |
| * | Fix ssh-dss host key supportKenny Root2015-04-052-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | This string was accidentally renamed to "ssh-dsa" during refactoring. DSA should die and go away, but the SSH standard said that was the only required algorithm when it was created. Change-Id: Ia533eac55692289de8042f6f95714b577941ca3f
| * | Add changelog entries for 1.8.3Kenny Root2015-04-051-0/+9
| | | | | | | | | | | | Change-Id: Ifeefc557aaae1e3d6085c17988c728b045e32ee6
| * | Fix link in CHANGELOGKenny Root2015-04-051-0/+2
| | | | | | | | | | | | Change-Id: I30ef735f468da663c5ce5e70cec717711aef7d2c
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-053-3/+20
|\| |
| * | Provide more context for SSH connection failuresKenny Root2015-04-052-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since the Trilead SSH stack throws IOException on failures and then higher levels of the stack catch those, we need to descend into the causes of each Exception to give the user more context. Unfortunately this information is not localized. Change-Id: I8b1fdf9eab65e5d2f6f1956562cbf9f56a2adb9d
| * | Keep order for crypto wishlistKenny Root2015-04-052-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | Switch from TreeSet to LinkedHashMap since the preference is determined by iterating over the Set for both KEX_ALGS and HOST_KEY_ALGS. The order before was based on string comparisons(!) Change-Id: Ia4573d67f35a5371eb8c70dde631085d61570fe9
| * | Add a CHANGELOGKenny Root2015-04-051-0/+5
| | | | | | | | | | | | Change-Id: I7031e8bc379ed52ea8eb06e79cefb871204d530c
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-021-2/+2
|\| |
| * | Update version code for v1.8.3Kenny Root2015-04-021-2/+2
| | | | | | | | | | | | Change-Id: I18026baf76d25af3dc30d46144d3f941bde6f16c
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-024-515/+240
|\| |
| * | Update translationsKenny Root2015-04-024-515/+240
| | | | | | | | | | | | Change-Id: I370370d4cbe6f0f2510cc32f64f51946650ba8e2
* | | Merge branch 'master' into gradle-conversionKenny Root2015-04-032-9/+28
|\| |
| * | Check for EC support before enabling itKenny Root2015-04-031-6/+24
| | | | | | | | | | | | Fixes #69
| * | Break circle since connectionLost should not call closeKenny Root2015-04-031-2/+2
| | |
| * | Fix JavaDoc (okay, not much of an improvement)Kenny Root2015-04-031-1/+2
| | |
| * | Return empty port forward list if host arg is nullKenny Root2015-03-291-1/+4
| | | | | | | | | | | | | | | There would be a NullPointerException if the host passed in was null, so just preclude it by checking.
* | | Return empty port forward list if host arg is nullKenny Root2015-03-291-1/+4
| | | | | | | | | | | | | | | There would be a NullPointerException if the host passed in was null, so just preclude it by checking.
* | | Merge branch 'master' into gradle-conversionKenny Root2015-03-281-4/+1
|\| |