1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace SimpleSAML\XMLSecurity; |
4
|
|
|
|
5
|
|
|
use DOMXPath; |
6
|
|
|
use Exception; |
7
|
|
|
|
8
|
|
|
/** |
9
|
|
|
* xmlseclibs.php |
10
|
|
|
* |
11
|
|
|
* Copyright (c) 2007-2017, Robert Richards <[email protected]>. |
12
|
|
|
* All rights reserved. |
13
|
|
|
* |
14
|
|
|
* Redistribution and use in source and binary forms, with or without |
15
|
|
|
* modification, are permitted provided that the following conditions |
16
|
|
|
* are met: |
17
|
|
|
* |
18
|
|
|
* * Redistributions of source code must retain the above copyright |
19
|
|
|
* notice, this list of conditions and the following disclaimer. |
20
|
|
|
* |
21
|
|
|
* * Redistributions in binary form must reproduce the above copyright |
22
|
|
|
* notice, this list of conditions and the following disclaimer in |
23
|
|
|
* the documentation and/or other materials provided with the |
24
|
|
|
* distribution. |
25
|
|
|
* |
26
|
|
|
* * Neither the name of Robert Richards nor the names of his |
27
|
|
|
* contributors may be used to endorse or promote products derived |
28
|
|
|
* from this software without specific prior written permission. |
29
|
|
|
* |
30
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
31
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
32
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
33
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
34
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
35
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
36
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
37
|
|
|
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
38
|
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
39
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN |
40
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
41
|
|
|
* POSSIBILITY OF SUCH DAMAGE. |
42
|
|
|
* |
43
|
|
|
* @copyright 2007-2017 Robert Richards <[email protected]> |
44
|
|
|
* @license http://www.opensource.org/licenses/bsd-license.php BSD License |
45
|
|
|
*/ |
46
|
|
|
|
47
|
|
|
class XMLSecurityDSig extends \RobRichards\XMLSecLibs\XMLSecurityDSig |
48
|
|
|
{ |
49
|
|
|
} |
50
|
|
|
|