summaryrefslogtreecommitdiff
path: root/src/protocol/internal/fqterm_ssh2_kex.h
AgeCommit message (Collapse)Author
2021-04-24convert license headers to SPDXHEADmasterIru Cai
Use the following script and find tool: grep 'GNU General Public License' "$1" || exit grep 'either version 2 of the License' "$1" || exit sed -n '/\*\*\*\*\*\//,$p' "$1" > /tmp/src.tmp echo '// SPDX-License-Identifier: GPL-2.0-or-later' > /tmp/src.tmp2 sed -n '2,$p' /tmp/src.tmp >> /tmp/src.tmp2 mv /tmp/src.tmp2 "$1"
2018-06-08conn_info: show if host key matchesIru Cai
2018-05-10restruct SSH RSA verificationIru Cai
- put I_C, I_S, V_C, V_S, K_S to ssh_session - move RSA verification code to C code
2018-05-04refactor using ssh_session structureIru Cai
* move computeKey to C code * Use `mpint_e`, `secret` instead of bn_e, bn_K, drop bn_f * compute DH image and secret in DH related code * drop {get,put}{BN2,SSH2BN}
2018-04-30Add a connection info field in FQTermSocketIru Cai
- the connection info record contains the name of the cipher and MAC algorithms, and the key hash - after doing a key exchange, the connection info will be filled
2016-11-08better handling of errors when KEX fails, use EVP digestIru Cai
2016-11-08Use ssh_diffie-hellman, the new SSH diffie hellman codeIru Cai
And add diffie-hellman-group14-sha1 support
2016-10-29Add new SSH public key crypto code in ssh_kexIru Cai
The original code is too complicated and is broken under OpenSSL 1.1.0, so I rewrite new crypto code based on the original one, and make it work on OpenSSL 1.1.0. Thanks libssh2 for the HAVE_OPAQUE_STRUCT macro.
2014-04-04move to my github.iroul