Я новичок в PHP и следовал этому руководству, https://www.virendrachandak.com/techtalk/encryption-using-php-openssl/
Используя приведенный ниже код, в моей корневой папке не было создано файла private.key. Здесь что-то не так? Я использую XAMPP в Windows 10 и установил переменные среды, чтобы они указывали на мой файл XAMPP openssl.cnf.
function generate_public_private_keys() {
$privateKey = openssl_pkey_new(array(
'private_key_bits' => 2048, // Size of Key.
'private_key_type' => OPENSSL_KEYTYPE_RSA,
));
// Save the private key to private.key file. Never share this file with anyone.
openssl_pkey_export_to_file($privateKey, 'private.key');
// Generate the public key for the private key
$a_key = openssl_pkey_get_details($privateKey);
// Save the public key in public.key file. Send this file to the person developing the ticket scanner app
file_put_contents('public.key', $a_key['key']);
// Free the private Key.
openssl_free_key($privateKey);
}






Попробуйте поискать в папке Xampp, например, C:\xampp