punkstar / ssl

πŸ“š PHP library for reading and understanding SSL certificates

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Reading SSL Certificates

Build Status Scrutinizer Code Quality Code Coverage

This is a library for easily reading and understanding SSL certificates using PHP.

Installation

composer require punkstar/ssl

Usage

<?php
require_once __DIR__.'/vendor/autoload.php';
use Punkstar\Ssl\Reader;

$reader = new Reader();
$certificate = $reader->readFromUrl("https://github.com");

printf("Name: %s\n", $certificate->certName());
printf("Valid To: %s\n", $certificate->validTo()->format('r'));
printf("Valid From: %s\n", $certificate->validFrom()->format('r')); 

About

πŸ“š PHP library for reading and understanding SSL certificates

License:MIT License


Languages

Language:PHP 100.0%