Skip to content

Commit ca5555c

Browse files
author
Thierry Thiers
committed
Code refactoring and documentation added
1 parent de35ef9 commit ca5555c

25 files changed

+9862
-911
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1+
/apigen.phar
12
/composer.lock
2-
/sami
33
/vendor

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -297,12 +297,12 @@ $expectedIssuer = [
297297
$caCertPath = 'path/to/ca/intermediate/certificate';
298298

299299
// Create token object from the XML Digital Signature
300-
$token = XMLDSigToken::parseSecureXMLToken($sig, $cryptKey, $cryptKeyPassword);
300+
$token = XMLDSigToken::analyzeSecureXMLToken($sig, $cryptKey, $cryptKeyPassword);
301301

302302
// NOTE: The above instruction works even if user data is not encrypted.
303303
// However, if user data is not encrypted and you don't own a private key
304304
// then use the following method:
305-
// $token = XMLDSigToken::parseXMLToken($sig);
305+
// $token = XMLDSigToken::analyzeXMLToken($sig);
306306

307307
// Verify that:
308308
// - the XML digital signature meets the XMLDSIG specifications.

docs/404.html

Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="robots" content="noindex">
6+
7+
<title>Page not found</title>
8+
9+
<link rel="stylesheet" href="resources/style.css?c2f33731c1948fbed7c333554678bfa68d4817da">
10+
11+
</head>
12+
13+
<body>
14+
<div id="left">
15+
<div id="menu">
16+
<a href="index.html" title="Overview"><span>Overview</span></a>
17+
18+
19+
<div id="groups">
20+
<h3>Namespaces</h3>
21+
<ul>
22+
<li>
23+
<a href="namespace-webcoder31.html">
24+
webcoder31<span></span>
25+
</a>
26+
27+
<ul>
28+
<li>
29+
<a href="namespace-webcoder31.ezxmldsig.html">
30+
ezxmldsig </a>
31+
32+
</li>
33+
</ul></li>
34+
</ul>
35+
</div>
36+
37+
<hr>
38+
39+
40+
<div id="elements">
41+
<h3>Classes</h3>
42+
<ul>
43+
<li><a href="class-webcoder31.ezxmldsig.X509Cert.html">webcoder31\ezxmldsig\X509Cert</a></li>
44+
<li><a href="class-webcoder31.ezxmldsig.XMLDSigToken.html">webcoder31\ezxmldsig\XMLDSigToken</a></li>
45+
</ul>
46+
47+
48+
49+
50+
51+
</div>
52+
</div>
53+
</div>
54+
55+
<div id="splitter"></div>
56+
57+
<div id="right">
58+
<div id="rightInner">
59+
<form id="search">
60+
<input type="hidden" name="cx" value="">
61+
<input type="hidden" name="ie" value="UTF-8">
62+
<input type="text" name="q" class="text" placeholder="Search">
63+
</form>
64+
65+
<div id="navigation">
66+
<ul>
67+
<li>
68+
<a href="index.html" title="Overview"><span>Overview</span></a>
69+
</li>
70+
<li>
71+
<span>Namespace</span> </li>
72+
<li>
73+
<span>Class</span> </li>
74+
</ul>
75+
<ul>
76+
</ul>
77+
<ul>
78+
</ul>
79+
</div>
80+
81+
<div id="content">
82+
<h1>Page not found</h1>
83+
<p>The requested page could not be found.</p>
84+
<p>You have probably clicked on a link that is outdated and points to a page that does not exist any more or you have made an typing error in the address.</p>
85+
<p>To continue please try to find requested page in the menu, or use search field on the top.</p>
86+
</div>
87+
88+
<div id="footer">
89+
API documentation generated by <a href="http://apigen.org">ApiGen</a>
90+
</div>
91+
</div>
92+
</div>
93+
<script src="resources/combined.js?b89a3bc5c28ca76b55aeeb83ca95935fc7818eb1"></script>
94+
<script src="elementlist.js"></script>
95+
</body>
96+
</html>

0 commit comments

Comments
 (0)