Follow these steps:
- Upgrade to OpenEdge 11.7.5 or later.
- Make a backup of the %DLC%\bin\pkiutil.bat file if on Windows or $DLC/bin/pkiutil if on Linux.
- Modify the pkiutil script and change the following lines:
# size has to be 512, 1024, or 2048
if ($_size == 512 || $_size == 1024 || $_size == 2048) {
$KEYSIZE=$_size;
}
else {
print "The key size must be 512, 1024, or 2048\n";
exit 1;
}
With the following:
# size has to be 512, 1024, 2048 or 4096
if ($_size == 512 || $_size == 1024 || $_size == 2048 || $_size == 4096) {
$KEYSIZE=$_size;
}
else {
print "The key size must be 512, 1024, 2048 or 4096\n";
exit 1;
}