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
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
This package is not auto-updated.
Last update: 2026-09-06 12:04:35 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);