Develop and Download Open Source Software

Browse Subversion Repository

Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ttxssh.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2753 by yutakakn, Thu Dec 16 13:57:43 2004 UTC revision 2758 by yutakakn, Fri Dec 17 14:28:36 2004 UTC
# Line 1371  static void init_about_dlg(PTInstVar pva Line 1371  static void init_about_dlg(PTInstVar pva
1371                          }                          }
1372                          append_about_text(dlg, "Host Key: ", buf);                          append_about_text(dlg, "Host Key: ", buf);
1373    
1374                            // add HMAC algorithm (2004.12.17 yutaka)
1375                            buf[0] = '\0';
1376                            if (pvar->ctos_hmac == HMAC_SHA1) {
1377                                    strcat(buf, "hmac-sha1");
1378                            } else if (pvar->ctos_hmac == HMAC_MD5) {
1379                                    strcat(buf, "hmac-md5");
1380                            }
1381                            strcat(buf, " to server, ");
1382                            if (pvar->stoc_hmac == HMAC_SHA1) {
1383                                    strcat(buf, "hmac-sha1");
1384                            } else if (pvar->stoc_hmac == HMAC_MD5) {
1385                                    strcat(buf, "hmac-md5");
1386                            }
1387                            strcat(buf, " from server");
1388                            append_about_text(dlg, "HMAC: ", buf);
1389    
1390                          CRYPT_get_cipher_info(pvar, buf, sizeof(buf));                          CRYPT_get_cipher_info(pvar, buf, sizeof(buf));
1391                          append_about_text(dlg, "Encryption: ", buf);                          append_about_text(dlg, "Encryption: ", buf);
1392                          CRYPT_get_server_key_info(pvar, buf, sizeof(buf));                          CRYPT_get_server_key_info(pvar, buf, sizeof(buf));
# Line 2030  int CALLBACK LibMain(HANDLE hInstance, W Line 2046  int CALLBACK LibMain(HANDLE hInstance, W
2046    
2047  /*  /*
2048   * $Log: not supported by cvs2svn $   * $Log: not supported by cvs2svn $
2049     * Revision 1.6  2004/12/16 13:57:43  yutakakn
2050     * "SECURITY WARINIG" dialogで ESC キーを押下すると、
2051     * アプリケーションエラーとなる現象への暫定対処。
2052     *
2053   * Revision 1.5  2004/12/11 07:31:00  yutakakn   * Revision 1.5  2004/12/11 07:31:00  yutakakn
2054   * SSH heartbeatスレッドの追加した。これにより、IPマスカレード環境において、ルータの   * SSH heartbeatスレッドの追加した。これにより、IPマスカレード環境において、ルータの
2055   * NATテーブルクリアにより、SSHコネクションが切断される現象が回避される。   * NATテーブルクリアにより、SSHコネクションが切断される現象が回避される。

Legend:
Removed from v.2753  
changed lines
  Added in v.2758

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26