Compare commits

...

5 Commits

Author SHA1 Message Date
Greg Alexander 56e505c8d8 add new apk to doc
3 years ago
Greg Alexander 0711c4d0ab Bump to version 26.
3 years ago
Greg Alexander 114dd6dded Update doc for new version.
3 years ago
Greg Alexander 1e9500c97e Define the filename for ed25519 keys, instead of using the default
3 years ago
Greg Alexander fd81eb7897 Remove #ifndef guards around host key filenames because they are
3 years ago

@ -27,8 +27,8 @@ android {
minSdkVersion 17 minSdkVersion 17
targetSdkVersion 30 targetSdkVersion 30
versionCode 25 versionCode 26
versionName "25" versionName "26"
} }
buildTypes { buildTypes {

@ -22,12 +22,6 @@ password/interactive auth except for bootstrapping). It does not use
root, which means it must listen on a port over 1024 (defaults to port root, which means it must listen on a port over 1024 (defaults to port
2222).</p> 2222).</p>
<p><b>SimpleSSHD version 20 was released 2019/06/16 and features
significant changes -- a new version of Dropbear 2019.78 and a new
version of the Android SDK. If you are having troubles with the upgrade,
please email me!</b></p>
<h2>Quick start</h2> <h2>Quick start</h2>
<ul> <ul>
@ -227,6 +221,7 @@ harmless.
<h2>Change Log</h2> <h2>Change Log</h2>
<ul> <ul>
<li> <b>2020/12/29 Version 26:</b> Fix ed25519 host key creation.
<li> <b>2020/12/29 Version 25:</b> Fix compatibility with WinSCP. Update to upstream Dropbear 2020.81 -- adding ed25519 support! <li> <b>2020/12/29 Version 25:</b> Fix compatibility with WinSCP. Update to upstream Dropbear 2020.81 -- adding ed25519 support!
<li> <b>2020/01/01 Version 24:</b> Fix crash with "Start on Open" on Android 9. New TV icon. Improve performance. <li> <b>2020/01/01 Version 24:</b> Fix crash with "Start on Open" on Android 9. New TV icon. Improve performance.
<li> <b>2019/09/21 Version 23:</b> Support Android TV. <li> <b>2019/09/21 Version 23:</b> Support Android TV.
@ -289,7 +284,7 @@ me:<br>
<li><a href="SimpleSSHD-19.apk">SimpleSSHD-19.apk</a> - last version to target SDK 11, Android 3.0 Honeycomb. <li><a href="SimpleSSHD-19.apk">SimpleSSHD-19.apk</a> - last version to target SDK 11, Android 3.0 Honeycomb.
<li><a href="SimpleSSHD-23.apk">SimpleSSHD-23.apk</a> <li><a href="SimpleSSHD-23.apk">SimpleSSHD-23.apk</a>
<li><a href="SimpleSSHD-24.apk">SimpleSSHD-24.apk</a> <li><a href="SimpleSSHD-24.apk">SimpleSSHD-24.apk</a>
<li><a href="SimpleSSHD-25.apk">SimpleSSHD-25.apk</a> <li><a href="SimpleSSHD-26.apk">SimpleSSHD-26.apk</a>
</ul></p> </ul></p>
</body></html> </body></html>

@ -9,15 +9,10 @@
#endif #endif
/* Default hostkey paths - these can be specified on the command line */ /* Default hostkey paths - these can be specified on the command line */
#ifndef DSS_PRIV_FILENAME
#define DSS_PRIV_FILENAME conf_path_file("dropbear_dss_host_key") #define DSS_PRIV_FILENAME conf_path_file("dropbear_dss_host_key")
#endif
#ifndef RSA_PRIV_FILENAME
#define RSA_PRIV_FILENAME conf_path_file("dropbear_rsa_host_key") #define RSA_PRIV_FILENAME conf_path_file("dropbear_rsa_host_key")
#endif
#ifndef ECDSA_PRIV_FILENAME
#define ECDSA_PRIV_FILENAME conf_path_file("dropbear_ecdsa_host_key") #define ECDSA_PRIV_FILENAME conf_path_file("dropbear_ecdsa_host_key")
#endif #define ED25519_PRIV_FILENAME conf_path_file("dropbear_ed25519_host_key")
/* Set NON_INETD_MODE if you require daemon functionality (ie Dropbear listens /* Set NON_INETD_MODE if you require daemon functionality (ie Dropbear listens
* on chosen ports and keeps accepting connections. This is the default. * on chosen ports and keeps accepting connections. This is the default.

Loading…
Cancel
Save