Skip to content
Snippets Groups Projects
DocumentController.php 48.5 KiB
Newer Older
  • Learn to ignore specific revisions
  •         }
    
            if (!file_exists($signaturePath)) {
                return false;
            }
            exec('openssl pkcs7 -in ' . $signaturePath . ' -inform DER -print_certs > ' . $signatureInfoPath . ' 2>&1', $output, $return);
    
            return file_get_contents($signatureInfoPath);
        }
    
    Damien's avatar
    Damien committed
    }