diff options
Diffstat (limited to 'main.cpp')
-rwxr-xr-x | main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -396,7 +396,7 @@ static BOOL CALLBACK DlgProcFirstRun(HWND hwndDlg,UINT msg,WPARAM wParam,LPARAM } f<<"Key-Type: RSA"; f<<"\n"; - f<<"Key-Length: 2048"; + f<<"Key-Length: 4096"; f<<"\n"; f<<"Subkey-Type: RSA"; f<<"\n"; @@ -1078,7 +1078,7 @@ static BOOL CALLBACK DlgProcKeyGenDialog(HWND hwndDlg, UINT msg, WPARAM wParam, ComboBoxAddStringUtf(GetDlgItem(hwndDlg, IDC_KEY_TYPE), _T("DSA"), 1); SendDlgItemMessage(hwndDlg, IDC_KEY_TYPE, CB_SETCURSEL, (WPARAM)1, 0); SetDlgItemInt(hwndDlg, IDC_KEY_EXPIRE_DATE, 0, 0); - SetDlgItemInt(hwndDlg, IDC_KEY_LENGTH, 2048, 0); + SetDlgItemInt(hwndDlg, IDC_KEY_LENGTH, 4096, 0); return TRUE; } |