26 lines
484 B
Plaintext
26 lines
484 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
$config = array(
|
||
|
"digest_alg" => "sha512",
|
||
|
"private_key_bits" => 1024, // Noncompliant
|
||
|
"private_key_type" => OPENSSL_KEYTYPE_RSA,
|
||
|
);
|
||
|
$res = openssl_pkey_new($config);
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
$config = array(
|
||
|
"digest_alg" => "sha512",
|
||
|
"private_key_bits" => 2048 // Compliant
|
||
|
"private_key_type" => OPENSSL_KEYTYPE_RSA,
|
||
|
);
|
||
|
$res = openssl_pkey_new($config);
|
||
|
----
|
||
|
|
||
|
include::../see.adoc[]
|