parent root
PHP: openssl_free_key - Manual
PHP 7.2.23 Release Announcement

openssl_free_key

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

openssl_free_keyFree key resource

Description

openssl_free_key ( resource $key_identifier ) : void

openssl_free_key() frees the key associated with the specified key_identifier from memory.

Parameters

key_identifier

Return Values

No value is returned.

add a noteadd a note

User Contributed Notes 2 notes

up
1
Lawri van Bul
1 year ago
I just checked the code for PHP 7.1 and in there openssl_free_key is an alias for opnessl_pkey_free (PHP_FALIAS).

This supports Richards assumption.

I would also suggest to not use the alias,
but use the openssl_pkey_free function in new code.

This is because it is more descriptive about what its intend is and is the same structure as similar function in the openssl section.
up
1
Richard Lynch
6 years ago
openssl_free_key and openssl_pkey_free are probably aliases.

And the preferred one is probably openssl_pkey_free.
To Top
parent root