perception/catcert

There is no license information available for the latest version (dev-master) of this package.

Provides an object oriented solution to certify document under CatCert using PSIS.

Installs: 163

Dependents: 0

Suggesters: 0

Security: 0

pkg:composer/perception/catcert

dev-master 2012-05-17 13:55 UTC

This package is not auto-updated.

Last update: 2025-12-14 08:52:34 UTC


README

This library allows PHP developers to certify documents against the CatCert platform through an object oriented solution.

Examples of use

Getting the hash of a document

:::php <?php

$catcert = new CatCert(); $hash = $catcert->doHash($documentUsuallyInXml);

Sealing a document

:::php <?php

$catcert = new CatCert(); $result = $catcert->doSeal($documentUsuallyInXml);