wok annotate tinyssh/description.txt @ rev 25466

Update some web_site
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 01 09:32:27 2022 +0000 (20 months ago)
parents
children
rev   line source
Hans-G?nter@25359 1 TinySSH is a minimalistic SSH server which implements only
Hans-G?nter@25359 2 a subset of SSHv2 features.
Hans-G?nter@25359 3
Hans-G?nter@25359 4 Features
Hans-G?nter@25359 5
Hans-G?nter@25359 6 * easy auditable - TinySSH has less than 100000 words of code
Hans-G?nter@25359 7 * no dynamic memory allocation - TinySSH has all memory
Hans-G?nter@25359 8 statically allocated (less than 1MB)
Hans-G?nter@25359 9 * simple configuration - TinySSH can't be misconfigured
Hans-G?nter@25359 10 * reusing code - TinySSH is reusing libraries from CurveCP
Hans-G?nter@25359 11 implementation
Hans-G?nter@25359 12 * reusing software - TinySSH is using tcpserver or systemd
Hans-G?nter@25359 13 socket or inetd for TCP connection
Hans-G?nter@25359 14 * limited amount of features - TinySSH doesn't have features
Hans-G?nter@25359 15 such: SSH1 protocol, compression, ...
Hans-G?nter@25359 16 * no older cryptographic primitives - rsa, dsa, classic
Hans-G?nter@25359 17 diffie-hellman, hmac-md5, hmac-sha1, 3des, arcfour, ...
Hans-G?nter@25359 18 * no copyright restrictions - TinySSH is in the public domain
Hans-G?nter@25359 19 (see the licence)
Hans-G?nter@25359 20 * no dependency on OpenSSL - TinySSH has its own crypto
Hans-G?nter@25359 21 library compatible with NaCl, Libsodium
Hans-G?nter@25359 22 * speed - TinySSH can be also compiled using high-speed NaCl
Hans-G?nter@25359 23 library instead of internal.