Key length dropdown — after selecting RSA, the Key length dropdown appears but always saves as 2048 regardless of selected value
Lifetime field — JavaScript validation caps input at 397 days, even for internal certificates (CA, VPN server cert) where there is no technical reason for this limit
Workaround: Run in browser console before submitting the form (twice — before and after selecting RSA):
document.querySelectorAll('input[type="number"]').forEach(function(el){el.removeAttribute('max')})
document.querySelectorAll('select').forEach(function(s){for(var i=0;i<s.options.length;i++){if(s.options[i].value==='4096'){s.value='4096'}}})
Key length dropdown — after selecting RSA, the Key length dropdown appears but always saves as 2048 regardless of selected value
Lifetime field — JavaScript validation caps input at 397 days, even for internal certificates (CA, VPN server cert) where there is no technical reason for this limit
Workaround: Run in browser console before submitting the form (twice — before and after selecting RSA):
document.querySelectorAll('input[type="number"]').forEach(function(el){el.removeAttribute('max')})
document.querySelectorAll('select').forEach(function(s){for(var i=0;i<s.options.length;i++){if(s.options[i].value==='4096'){s.value='4096'}}})