openssl_pkey_new

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

openssl_pkey_newGenerates a new private key

Descrierea

openssl_pkey_new ([ array $configargs ] ) : resource

openssl_pkey_new() generates a new private and public key pair. The public component of the key can be obtained using openssl_pkey_get_public().

Notă: Trebuie să aveți un fișier openssl.cnf valid instalat pentru ca această funcție să opereze corect. Vedeți notele în secțiunea de instalare pentru informații suplimentare.

Parametri

configargs

You can finetune the key generation (such as specifying the number of bits) using configargs. See openssl_csr_new() for more information about configargs.

Valorile întoarse

Returns a resource identifier for the pkey on success, or FALSE on error.

Istoricul schimbărilor

Versiune Descriere
7.1.0 The curve_name configarg was added to make it possible to create EC keys.