Skip to content
Snippets Groups Projects

Update call to openssl_pkey_export to include config file (on file Utility.php)

Merged malmeida287 requested to merge issue/oauth2_server-3525722:2.1.x into 2.1.x
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -124,7 +124,7 @@ class Utility {
// Generate a private key.
$resource = openssl_pkey_new($config);
openssl_pkey_export($resource, $private_key);
openssl_pkey_export($resource, $private_key, NULL, $config);
// Generate a public key certificate valid for 2 days.
$serial = \Drupal::state()
Loading