summaryrefslogtreecommitdiff
path: root/src
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"
2020-12-09replace deprecated QFontMetrics::widthIru Cai
2020-12-09replace deprecated qVariantFromValueIru Cai
2020-08-11drop Qt4 supportIru Cai
2020-06-06fix some memory leaksIru Cai
2018-08-20buffer_append_be*: return 1 on successIru Cai
2018-08-20fqterm_ssh_packet.cpp: return a value on error to surpress a warningIru Cai
2018-08-08give local_shell_bin a non-NULL valueIru Cai
2018-07-12clean up all uint*_t messIru Cai
2018-06-18remove register specifierIru Cai
2018-06-18(*)fix build on macOSFan Yang
2018-06-15Fix some minor typosAnthony Fok
Credit: "Unknow" was detected by Lintian, see https://bugs.debian.org/898537
2018-06-08Add missing QButtonGroupIru Cai
2018-06-08warn SSH2 for mismatched/unknown host keyIru Cai
2018-06-08conn_info: show if host key matchesIru Cai
2018-06-08ssh_known_hosts.c: .ssh/known_hosts parserIru Cai
2018-06-08add ccan/base64Iru Cai
2018-06-08aboutdialog: remove old URLsIru Cai
2018-06-08set application name and versionIru Cai
2018-06-08clean up fqterm_appIru Cai
2018-06-06curve25519 ECDHIru Cai
2018-06-06add curve25519 ref implementationIru Cai
2018-06-06restruct ssh_dhIru Cai
* Use strong PRNG * Add a name field * Move BIGNUM things to priv
2018-05-21warn SSH1Iru Cai
2018-05-21add warnInsecure signals and slotsIru Cai
2018-05-21parse_ssh{1,2}_packet C codeIru Cai
2018-05-21buffer_append: support NULL argument s to just allocate the spaceIru Cai
2018-05-21remove FQTermSSH{1,2}PacketSender, remove duplicated codeIru Cai
2018-05-21remove is_compressedIru Cai
2018-05-21conn_info: add host and portIru Cai
2018-05-21make a cleaner parseDataIru Cai
2018-05-21ssh_endian.hIru Cai
2018-05-21move packet making code to C codeIru Cai
2018-05-21use ssh_error.h to define error numbersIru Cai
2018-05-21remove cipher_type_Iru Cai
2018-05-21replace is_{en,de}crypt_ things with cipher->startedIru Cai
2018-05-21kill unneeded signals and slotsIru Cai
2018-05-17fqterm_ssh2_kex.cpp: remove unused headersIru Cai
2018-05-11Fix typo found by codespellBoyuan Yang
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-10kill FQTermSSHBufferIru Cai
2018-05-10use C SSH buffer for {input,output}_bufferIru Cai
2018-05-10Use C SSH buffer for socket_buffer, restruct parseDataIru Cai
2018-05-10restruct createRSAcontextIru Cai
2018-05-10fqterm packet: use C bufferIru Cai
Tested using SSH2
2018-05-10implement SSH buffer in CIru Cai
2018-05-07move local_shell_bin to fqterm_path, add the cmd to quickdialogIru Cai
2018-05-05remove 3des_cbc for SSH2Iru Cai
2018-05-05ssh_3des-ssh1.c: use uint8_tIru Cai
2018-05-04add KEX algorithmsIru Cai