NAME
XML::LibXMLSec::KeysManager - the key manager class
DESCRIPTION
This class wraps the keysmngr
portion of xmlsec
.
METHODS
new
my $manager = XML::LibXMLSec::KeysManager->new();
Builds a default keys manager.
load_certificate_from_string
$manager->load_certificate_from_string(
$data_string,
$key_format,
$key_type,
);
This method loads a certificate (or other key data) from a string.
$key_format
must be one of the formats defined in XML::LibXMLSec::KeysData
$key_type
must be a bitmask obtained by or
-ing together the types defined in XML::LibXMLSec::KeysData
SEE ALSO
https://www.aleksey.com/xmlsec/api/xmlsec-keysmngr.html the original documentation.