openssl_pkey_get_details
(PHP 5 >= 5.2.0, PHP 7)
openssl_pkey_get_details — Returns an array with the key details
Description
$key
) : arrayThis function returns the key details (bits, key, type).
Return Values
Returns an array with the key details in success or FALSE
in failure.
Returned array has indexes bits (number of bits),
key (string representation of the public key) and
type (type of the key which is one of
OPENSSL_KEYTYPE_RSA
,
OPENSSL_KEYTYPE_DSA
,
OPENSSL_KEYTYPE_DH
,
OPENSSL_KEYTYPE_EC
or -1 meaning unknown).
Depending on the key type used, additional details may be returned. Note that some elements may not always be available.
-
OPENSSL_KEYTYPE_RSA
, an additional array key named "rsa", containing the key data is returned.Key Description "n" modulus "e" public exponent "d" private exponent "p" prime 1 "q" prime 2 "dmp1" exponent1, d mod (p-1) "dmq1" exponent2, d mod (q-1) "iqmp" coefficient, (inverse of q) mod p -
OPENSSL_KEYTYPE_DSA
, an additional array key named "dsa", containing the key data is returned.Key Description "p" prime number (public) "q" 160-bit subprime, q | p-1 (public) "g" generator of subgroup (public) "priv_key" private key x "pub_key" public key y = g^x -
OPENSSL_KEYTYPE_DH
, an additional array key named "dh", containing the key data is returned.Key Description "p" prime number (shared) "g" generator of Z_p (shared) "priv_key" private DH value x "pub_key" public DH value g^x -
OPENSSL_KEYTYPE_EC
, an additional array key named "ec", containing the key data is returned.Key Description "curve_name" name of curve, see openssl_get_curve_names() "curve_oid" ASN1 Object identifier (OID) for EC curve. "x" x coordinate (public) "y" y coordinate (public) "d" private key
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 30/01/2003, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/php-rf-function.openssl-pkey-get-details.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.
References
These references and links indicate documents consulted during the writing of this page, or which may provide additional information, but the authors of these sources can not be held responsible for the content of this page.
The author This site is solely responsible for the way in which the various concepts, and the freedoms that are taken with the reference works, are presented here. Remember that you must cross multiple source information to reduce the risk of errors.