diff options
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/rsa_kgen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/rsa_kgen.cpp b/doc/examples/rsa_kgen.cpp index 1108b46db..f4566263b 100644 --- a/doc/examples/rsa_kgen.cpp +++ b/doc/examples/rsa_kgen.cpp @@ -30,7 +30,7 @@ int main(int argc, char* argv[]) } u32bit bits = std::atoi(argv[1]); - if(bits < 1024 || bits > 4096) + if(bits < 1024 || bits > 16384) { std::cout << "Invalid argument for bitsize" << std::endl; return 1; |