summaryrefslogtreecommitdiffstats
path: root/common/ssl_calls.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/ssl_calls.c')
-rw-r--r--common/ssl_calls.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/ssl_calls.c b/common/ssl_calls.c
index a187edc9..134f5afd 100644
--- a/common/ssl_calls.c
+++ b/common/ssl_calls.c
@@ -400,7 +400,8 @@ ssl_gen_key_xrdp1(int key_size_in_bits, char *exp, int exp_len,
int error;
int len;
- if ((exp_len != 4) || (mod_len != 64) || (pri_len != 64))
+ if ((exp_len != 4) || ((mod_len != 64) && (mod_len != 256)) ||
+ ((pri_len != 64) && (pri_len != 256)))
{
return 1;
}
@@ -469,7 +470,8 @@ ssl_gen_key_xrdp1(int key_size_in_bits, char *exp, int exp_len,
int error;
int len;
- if ((exp_len != 4) || (mod_len != 64) || (pri_len != 64))
+ if ((exp_len != 4) || ((mod_len != 64) && (mod_len != 256)) ||
+ ((pri_len != 64) && (pri_len != 256)))
{
return 1;
}