PHP 8.1.28 Released!

openssl_csr_get_public_key

(PHP 5 >= 5.2.0, PHP 7, PHP 8)

openssl_csr_get_public_keyDevuelve la clave púbilca de un CERT

Descripción

openssl_csr_get_public_key(mixed $csr, bool $use_shortnames = true): resource
Advertencia

Esta función no está documentada actualmente, solamente se encuentra disponible la lista de parámetros.

add a note

User Contributed Notes 1 note

up
-5
php at siemenroorda dot nl
14 years ago
Function openssl_pkey_get_details can read this resource. Try:

<?php
print_r
(openssl_pkey_get_details(openssl_csr_get_public_key($csr)));
?>
To Top