-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
32 lines (22 loc) · 777 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
XML::Sig -- a module for creating and verifying XML Digital Signatures
Copyright (c) 2009 Byrne Reese. All rights reserved.
This program is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
This module borrows heavily from Google::SAML::Response
(c) 2009 Manni Heumann.
To install this module, please run:
perl Makefile.PL
make
make test
make install
For more information on the module, please see the POD documentation
inside Sig.pm. ("perldoc XML::Sig", once it is installed.)
EXAMPLE
my $sig = XML::Sig->new();
if ($sig->verify($saml)) {
print "SAML document is VALID.\n"
} else {
print "Ug. SAML document is NOT valid.\n"
}
LICENSE
This software is licensed under the same terms as Perl itself.