PHP code example of mrgenis / sat-certificadosello

1. Go to this page and download the library: Download mrgenis/sat-certificadosello library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mrgenis / sat-certificadosello example snippets


/// Dirección del archivo CER
$cer = $this->path('testing_pm.cer');
/// Dirección del archivo KEY
$key = $this->path('testing_pm.key');
/// Contraseña del KEY
/// (solo se 

/// Dirección del archivo CER
$cer = $this->path('testing_pm.cer');
/// Dirección del archivo KEY
$key = $this->path('testing_pm.key');

$storage = StorageCerKey::create($cer, $key);
$cerSello = new CertificadoSello33($storage);
/// Se obtiene la cedena (string) del xml con NoCertificado, Certificado y Sello. 
$xml = $cerSello->injectInformation($xml);