xmlseclibs
xmlseclibs is a library written in PHP for working with XML Encryption and Signatures., (*1)
The author of xmlseclibs is Rob Richards., (*2)
Branches
Both the master and the 1.4 branches are actively maintained. The 1.3 branch is only updated for security related issues.
* master: Contains namespace support requiring 5.3+.
* 1.4: Contains auto-loader support while also maintaining backwards compatiblity with the 1.3 version using the xmlseclibs.php file. Supports PHP 5.2+, (*3)
Requirements
xmlseclibs requires PHP version 5.3 or greater., (*4)
How to Install
Install with composer.phar
., (*5)
php composer.phar require "robrichards/xmlseclibs"
Use cases
xmlseclibs is being used in many different software., (*6)
Basic usage
The example below shows basic usage of xmlseclibs, with a SHA-256 signature., (*7)
use RobRichards\XMLSecLibs\XMLSecurityDSig;
use RobRichards\XMLSecLibs\XMLSecurityKey;
// Load the XML to be signed
$doc = new DOMDocument();
$doc->load('./path/to/file/tobesigned.xml');
// Create a new Security object
$objDSig = new XMLSecurityDSig();
// Use the c14n exclusive canonicalization
$objDSig->setCanonicalMethod(XMLSecurityDSig::EXC_C14N);
// Sign using SHA-256
$objDSig->addReference(
$doc,
XMLSecurityDSig::SHA256,
array('http://www.w3.org/2000/09/xmldsig#enveloped-signature')
);
// Create a new (private) Security key
$objKey = new XMLSecurityKey(XMLSecurityKey::RSA_SHA256, array('type'=>'private'));
// Load the private key
$objKey->loadKey('./path/to/privatekey.pem', TRUE);
/*
If key has a passphrase, set it using
$objKey->passphrase = '<passphrase>';
*/
// Sign the XML file
$objDSig->sign($objKey);
// Add the associated public key to the signature
$objDSig->add509Cert(file_get_contents('./path/to/file/mycert.pem'));
// Append the signature to the XML
$objDSig->appendSignature($doc->documentElement);
// Save the signed XML
$doc->save('./path/to/signed.xml');
How to Contribute
Mailing List: https://groups.google.com/forum/#!forum/xmlseclibs, (*8)