POssible alternative to #17386 - adding SAML key size to env

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe
2025-08-21 11:27:50 +01:00
parent 15f97b6cb9
commit 39e6223ff2
3 changed files with 26 additions and 3 deletions
+1 -1
View File
@@ -109,7 +109,7 @@ class SettingsSamlRequest extends FormRequest
];
$pkey = openssl_pkey_new([
'private_key_bits' => 2048,
'private_key_bits' => config('app.saml_key_size'),
'private_key_type' => OPENSSL_KEYTYPE_RSA,
]);