Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16457 программистов и 1787 роботов. Сейчас ищут 1980 программистов ...
openssl_pkey_get_details - Returns an array with the key details
Вернуться к: OpenSSL
openssl_pkey_get_details
(PHP 5 >= 5.2.0, PHP 7)
openssl_pkey_get_details — Returns an array with the key details
Описание
array openssl_pkey_get_details
( resource
$key
)This function returns the key details (bits, key, type).
Список параметров
-
key
-
Resource holding the key.
Возвращаемые значения
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 Описание "n" "e" "d" "p" "q" "dmp1" "dmq1" "iqmp" -
OPENSSL_KEYTYPE_DSA
, an additional array key named "dsa", containing the key data is returned.Key Описание "p" "q" "g" "priv_key" "pub_key" -
OPENSSL_KEYTYPE_DH
, an additional array key named "dh", containing the key data is returned.Key Описание "p" "g" "priv_key" "pub_key"
Вернуться к: OpenSSL