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.
dev-master
2012-05-17 13:55 UTC
Requires
- php: >=5.3.2
This package is not auto-updated.
Last update: 2025-06-29 06:35:37 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);