Browse Subversion Repository
Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ttxssh.c
Parent Directory
| Revision Log
| Patch
| 61 |
#include <Lmcons.h> |
#include <Lmcons.h> |
| 62 |
|
|
| 63 |
// include OpenSSL header file |
// include OpenSSL header file |
|
#include <openssl/opensslv.h> |
|
| 64 |
#include <openssl/evp.h> |
#include <openssl/evp.h> |
| 65 |
#include <openssl/rsa.h> |
#include <openssl/rsa.h> |
| 66 |
#include <openssl/dsa.h> |
#include <openssl/dsa.h> |
| 2360 |
|
|
| 2361 |
// OpenSSLのバージョンを設定する (2005.1.24 yutaka) |
// OpenSSLのバージョンを設定する (2005.1.24 yutaka) |
| 2362 |
// 条件文追加 (2005.5.11 yutaka) |
// 条件文追加 (2005.5.11 yutaka) |
| 2363 |
#ifdef OPENSSL_VERSION_TEXT |
// OPENSSL_VERSION_TEXT マクロ定義ではなく、関数を使ってバージョンを取得する。(2013.11.24 yutaka) |
| 2364 |
SendMessage(GetDlgItem(dlg, IDC_OPENSSL_VERSION), WM_SETTEXT, 0, (LPARAM)OPENSSL_VERSION_TEXT); |
SendMessage(GetDlgItem(dlg, IDC_OPENSSL_VERSION), WM_SETTEXT, 0, (LPARAM)SSLeay_version(SSLEAY_VERSION)); |
|
#else |
|
|
SendMessage(GetDlgItem(dlg, IDC_OPENSSL_VERSION), WM_SETTEXT, 0, (LPARAM)"Unknown"); |
|
|
#endif |
|
| 2365 |
|
|
| 2366 |
// zlibのバージョンを設定する (2005.5.11 yutaka) |
// zlibのバージョンを設定する (2005.5.11 yutaka) |
| 2367 |
#ifdef ZLIB_VERSION |
#ifdef ZLIB_VERSION |
|
|
Legend:
| Removed from v.5359 |
|
| changed lines |
| |
Added in v.5430 |
|
|
| |