This file is indexed.

/usr/share/qt5/doc/qtdoc/windowsce-signing.html is in qt5-doc-html 5.3.2-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US">
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- wince-signing.qdoc -->
  <title>Windows CE - Signing | QtDoc 5.3</title>
  <link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
    <div class="main">
    <div class="main-rounded">
        <div class="navigationbar">
        <ul>
<li><a href="index.html">Qt 5.3</a></li>
<li>Windows CE - Signing</li>
<li id="buildversion">
Qt 5.3.2 Reference Documentation</li>
    </ul>
    </div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#signing-on-windows-ce">Signing on Windows CE</a></li>
</ul>
</div>
<h1 class="title">Windows CE - Signing</h1>
<span class="subtitle"></span>
<!-- $$$windowsce-signing.html-description -->
<div class="descr"> <a name="details"></a>
<a name="signing-on-windows-ce"></a>
<h2>Signing on Windows CE</h2>
<p>Windows CE provides a security mechanism to ask the user to confirm that they want to use an application/library that is unknown to the system. This process gets repeated for each dependency of an application, meaning each library the application links to, which is not recognized yet.</p>
<p>To simplify this process you can use signatures and certificates. A certificate gets installed on the device and each file which is signed with the according certificate can be launched without the security warning.</p>
<p>If you want to use signatures for your project written in Qt, configure provides the <tt>-signature</tt> option. You need to specify the location of the .pfx file and qmake adds the signing step to the build rules.</p>
<p>If you need to select a separate signature for a specific project, or you only want to sign a single project, you can use the &quot;<a href="../qmake/qmake-variable-reference.html#signature-file">SIGNATURE_FILE</a> = foo.pfx&quot; rule inside the project file.</p>
<p>The above described rules apply for command line makefiles as well as Visual Studio projects generated by qmake.</p>
<p>Microsoft usually ships development signatures inside the SDK packages. You can find them in the Tools subdirectory of the SDK root folder.</p>
<p>Example:</p>
<ul>
<li>Calling configure with signing enabled:<pre class="cpp">configure<span class="operator">.</span>exe <span class="operator">-</span>platform win32<span class="operator">-</span>msvc2005 <span class="operator">-</span>xplatform wincewm50pocket<span class="operator">-</span>msvc2005 <span class="operator">-</span>signature C:\some\path\SDKSamplePrivDeveloper<span class="operator">.</span>pfx</pre>
</li>
<li>Using pro file to specify signature<pre class="cpp"><span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
TARGET <span class="operator">=</span> foo

wince<span class="operator">*</span>: {
   SIGNATURE_FILE <span class="operator">=</span> somepath\customSignature<span class="operator">.</span>pfx
}
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span></pre>
</li>
</ul>
</div>
<!-- @@@windowsce-signing.html -->
        </div>
       </div>
   </div>
   </div>
</div>
<div class="footer">
   <p>
   <acronym title="Copyright">&copy;</acronym> 2014 Digia Plc and/or its
   subsidiaries. Documentation contributions included herein are the copyrights of
   their respective owners.<br>    The documentation provided herein is licensed under the terms of the    <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation    License version 1.3</a> as published by the Free Software Foundation.<br>    Digia, Qt and their respective logos are trademarks of Digia Plc     in Finland and/or other countries worldwide. All other trademarks are property
   of their respective owners. </p>
</div>
</body>
</html>