updated documentation and version

This commit is contained in:
billchurch 2017-05-26 17:30:41 -04:00
parent f8dcd70b33
commit d995e7ddd7
3 changed files with 26 additions and 33 deletions

View file

@ -85,20 +85,21 @@ config.json contains several options which may be specified to customize to your
1. aes128-ctr
2. aes192-ctr
3. aes256-ctr
4. aes128-gcm **(node v0.11.12 or newer)**
5. aes128-gcm@openssh.com **(node v0.11.12 or newer)**
6. aes256-gcm **(node v0.11.12 or newer)**
7. aes256-gcm@openssh.com **(node v0.11.12 or newer)**
4. aes128-gcm
5. aes128-gcm@openssh.com
6. aes256-gcm
7. aes256-gcm@openssh.com
8. aes256-cbc
* Supported values:
* aes128-ctr
* aes192-ctr
* aes256-ctr
* aes128-gcm **(node v0.11.12 or newer)**
* aes128-gcm@openssh.com **(node v0.11.12 or newer)**
* aes256-gcm **(node v0.11.12 or newer)**
* aes256-gcm@openssh.com **(node v0.11.12 or newer)**
* aes128-gcm
* aes128-gcm@openssh.com
* aes256-gcm
* aes256-gcm@openssh.com
* aes256-cbc
* aes192-cbc
* aes128-cbc
@ -109,23 +110,6 @@ config.json contains several options which may be specified to customize to your
* cast128-cbc
* arcfour
* **serverHostKey** - _array_ - Server host key formats. In server mode, this list must agree with the host private keys set in the `hostKeys` config setting.
* Default values:
1. ssh-rsa
2. ecdsa-sha2-nistp256 **(node v5.2.0 or newer)**
3. ecdsa-sha2-nistp384 **(node v5.2.0 or newer)**
4. ecdsa-sha2-nistp521 **(node v5.2.0 or newer)**
* Supported values:
* ssh-rsa
* ecdsa-sha2-nistp256 **(node v5.2.0 or newer)**
* ecdsa-sha2-nistp384 **(node v5.2.0 or newer)**
* ecdsa-sha2-nistp521 **(node v5.2.0 or newer)**
* ssh-dss
* **hmac** - _array_ - (H)MAC algorithms.
* Default values:

View file

@ -24,18 +24,27 @@
"challengeButton": true
},
"algorithms": {
"kex": [
"ecdh-sha2-nistp256",
"ecdh-sha2-nistp384",
"ecdh-sha2-nistp521",
"diffie-hellman-group-exchange-sha256",
"diffie-hellman-group14-sha1"
],
"cipher": [
"aes128-cbc",
"3des-cbc",
"aes256-cbc",
"aes128-ctr",
"aes192-ctr",
"aes256-ctr"
"aes256-ctr",
"aes128-gcm",
"aes128-gcm@openssh.com",
"aes256-gcm",
"aes256-gcm@openssh.com",
"aes256-cbc" // for some legacy systems
],
"hmac": [
"hmac-sha1",
"hmac-sha1-96",
"hmac-md5-96"
"hmac-sha2-256",
"hmac-sha2-512",
"hmac-sha1" // for some legacy systems
]
}
}

View file

@ -1,6 +1,6 @@
{
"name": "WebSSH2",
"version": "0.0.5",
"version": "0.1.0",
"ignore": [
".gitignore"
],