Revision b698621d
Added by Stephen Beaver almost 10 years ago
usr/local/www/system_camanager.php | ||
---|---|---|
533 | 533 |
'keylen', |
534 | 534 |
'Key length (bits)', |
535 | 535 |
$pconfig['keylen'], |
536 |
$ca_keylens
|
|
536 |
array_combine($ca_keylens, $ca_keylens)
|
|
537 | 537 |
)); |
538 | 538 |
|
539 | 539 |
$section->addInput(new Form_Select( |
540 | 540 |
'digest_alg', |
541 | 541 |
'Digest Algorithm', |
542 | 542 |
$pconfig['digest_alg'], |
543 |
$openssl_digest_algs
|
|
543 |
array_combine($openssl_digest_algs, $openssl_digest_algs)
|
|
544 | 544 |
))->setHelp('NOTE: It is recommended to use an algorithm stronger than SHA1 '. |
545 | 545 |
'when possible.'); |
546 | 546 |
|
Also available in: Unified diff
Bug 4971
Wrong array type in Form_Select