<html>
<head>
<base href="https://bugs.freedesktop.org/" />
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_NEW "
title="NEW - support for digital signatures"
href="https://bugs.freedesktop.org/show_bug.cgi?id=16770#c60">Comment # 60</a>
on <a class="bz_bug_link
bz_status_NEW "
title="NEW - support for digital signatures"
href="https://bugs.freedesktop.org/show_bug.cgi?id=16770">bug 16770</a>
from <span class="vcard"><a class="email" href="mailto:ajohnson@redneon.com" title="Adrian Johnson <ajohnson@redneon.com>"> <span class="fn">Adrian Johnson</span></a>
</span></b>
<pre>I don't think NSS should be mandatory. It is not required for rendering PDFs.
configure/cmake should include NSS in the "building poppler with support for"
summary.
<span class="quote">> byte_range->arrayGet(1, &r2);
> byte_range->arrayGet(2, &r3);
> byte_range->arrayGet(3, &r4);</span >
>
<span class="quote">> unsigned int signed_data_len = r2.getInt()+r4.getInt();
> unsigned char *to_check = (unsigned char *)gmalloc(signed_data_len);</span >
>
<span class="quote">> //Read the 2 slices of data that are signed
> doc->getBaseStream()->setPos(0);
> doc->getBaseStream()->doGetChars(r2.getInt(), to_check);
> doc->getBaseStream()->setPos(r3.getInt());
> doc->getBaseStream()->doGetChars(r4.getInt(), to_check+r2.getInt());</span >
This does not support large files (> 2GB). The code should check if the objects
in byte_range are int64 and use the Goffset type for setting file offsets.
It would be better to process the range in chunks instead of reading the entire
range into a buffer. We don't know how big the range could be and it is not
necessary to read it all at once as HASH_Begin/HASH_Update/HASH_End can be used
to process it in chunks.
I would prefer it if all the NSS includes were only included in the .cc files
similar to what we do with the image formats (JPEG2000Stream.h, JpegWriter.h
etc). It speeds up compilation, avoids clashes with other include files, and
makes it easier to replace NSS and/or support other security libraries if we
choose to do so in future.
The pdfsigutil utility doesn't seem to do much. Unless there are plans to add a
lot of extra options and functionality would it be better to add an option to
pdfinfo to check signatures instead of adding a new util?</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>