<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Signature Software</title>
	<atom:link href="http://www.signfiles.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.signfiles.com</link>
	<description>Everything you need to sign your files</description>
	<lastBuildDate>Wed, 01 Feb 2012 09:05:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>FileSignDll Quick Manual</title>
		<link>http://www.signfiles.com/filesigndll-quick-manual/</link>
		<comments>http://www.signfiles.com/filesigndll-quick-manual/#comments</comments>
		<pubDate>Wed, 13 Jul 2011 10:34:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=1623</guid>
		<description><![CDATA[The library FileSignDll can be used for adding digital signatures to your .XML, .DOCX, .XLSX, .PPTX, .XPS and .DWFx files.
To initialize the library use the code snippets below. To register the library you must enter as parameter a valid serial number.
Office 2007, 2010 digital signature

//digitally sign an Office 2007, 2010 document
OfficeSign officeSign = new OfficeSign("enter [...]]]></description>
			<content:encoded><![CDATA[<p>The library FileSignDll can be used for adding digital signatures to your .XML, .DOCX, .XLSX, .PPTX, .XPS and .DWFx files.</p>
<p>To initialize the library use the code snippets below. To register the library you must enter as parameter a valid serial number.</p>
<h3>Office 2007, 2010 digital signature</h3>
<pre id="exCode"><span id="black">
<span id="cmt">//digitally sign an Office 2007, 2010 document</span>
OfficeSign officeSign = new OfficeSign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//you will need a digital certificate for this</span>
DigitalCertificates certificate = new DigitalCertificates();

<span id="cmt">//load the certificate from a PFX file</span>
officeSign.DigitalSignatureCertificate =
certificate.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt"> //apply the digital signature to the DOCX document</span>
officeSign.SignOfficeDocument(<span id="lit">"c:\\TestDOCX.docx"</span>, <span id="lit">"c:\\TestDOCX[signed].docx"</span>);

<span id="cmt">//apply the digital signature to the XLSX document</span>
officeSign.SignOfficeDocument(<span id="lit">"c:\\TestXLSX.xlsx"</span>, <span id="lit">"c:\\TestXLSX[signed].xlsx"</span>);

</span></pre>
<p><code><br />
</code></p>
<h3>DWFx digital signature</h3>
<pre id="exCode"><span id="black">
<span id="cmt">//digitally sign an DWFx document</span>
DWFXSign dwfxSign = new DWFXSign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//you will need a digital certificate for this</span>
DigitalCertificates certificate = new DigitalCertificates();

<span id="cmt">//load the certificate from a PFX file</span>
dwfxSign.DigitalSignatureCertificate =
certificate.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt">//optionally, set a signing intent</span>
dwfxSign.SigningIntent = <span id="lit">"I approve this drawing"</span>;

<span id="cmt">//optionally, set a signing location</span>
dwfxSign.SigningLocation = <span id="lit">"Europe bureau</span>";

<span id="cmt">//apply the digital signature to the DWFx document</span>
dwfxSig.SignDWFXDocument(<span id="lit">"c:\\TestDWFX.dwfx"</span>, <span id="lit">"c:\\TestDWFX[signed].dwfx"</span>);

</span></pre>
<p><code><br />
</code></p>
<h3>XPS digital signature</h3>
<pre id="exCode"><span id="black">
<span id="cmt">//digitally sign an XPS document</span>
XPSSign xpsSign = new XPSSign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//you will need a digital certificate for this</span>
DigitalCertificates certificate = new DigitalCertificates();

<span id="cmt">//load the certificate from a PFX file</span>
xpsSign.DigitalSignatureCertificate =
certificate.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt">//optionally, set a signing intent</span>
xpsSign.SigningIntent = <span id="lit">"I am the author of this document"</span>;

<span id="cmt">//optionally, set a signing location</span>
xpsSign.SigningLocation = <span id="lit">"Asia branch</span>";

<span id="cmt">//apply the digital signature to the XPS document</span>
xpsSign.SignXPSDocument(<span id="lit">"c:\\TestXPS.xps"</span>, <span id="lit">"c:\\TestXPS[signed].xps"</span>);

</span></pre>
<p><code><br />
</code></p>
<h3>XML digital signature</h3>
<pre id="exCode"><span id="black">
<span id="cmt">//digitally sign an XML document</span>
XMLSign xmlSign = new XMLSign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//you will need a digital certificate for this</span>
DigitalCertificates certificate = new DigitalCertificates();

<span id="cmt">//load the certificate from a PFX file</span>
xmlSign.DigitalSignatureCertificate =
certificate.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt"> //apply the digital signature to the XML document</span>
xmlSign.SignXMLDocument(<span id="lit">"c:\\TestXML.xml"</span>, <span id="lit">"c:\\TestXML[signed].xml"</span>);

</span></pre>
<p><code><br />
</code></p>
<h3>PKCS#7 digital signature</h3>
<pre id="exCode"><span id="black">
<span id="cmt">//digitally sign a file in PKCS#7 format</span>
PKCS7Sign pkcs7Sign = new PKCS7Sign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//you will need a digital certificate for this</span>
DigitalCertificates certificate = new DigitalCertificates();

<span id="cmt">//load the certificate from a PFX file</span>
pkcs7Sign.DigitalSignatureCertificate =
certificate.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt">//set a signing reason for this signature</span>
pkcs7Sign.SigningReason = <span id="lit">"I approve this document"</span>;

<span id="cmt">//optionally, the file can be time stamped</span>
pkcs7Sign.TimeStamping.ServerURL = new Uri(<span id="lit">"http://ca.signfiles.com/TSAServer.aspx"</span>);

<span id="cmt">//the file can be saved as .p7s or .p7m file</span>
pkcs7Sign.SignFile(<span id="lit">"c:\\test.txt"</span>, <span id="lit">"c:\\test.txt.p7s"</span>);

<span id="cmt">//verify the signature</span>
Console.WriteLine(<span id="lit">"Number of signatures: "</span>
     + pkcs7Sign.GetNumberOfSignatures(<span id="lit">"c:\\test.txt.p7s"</span>));

PKCS7SignatureInformation si =
pkcs7Sign.VerifyDigitalSignature(<span id="lit">"c:\\test.txt.p7s"</span>, 1);

Console.WriteLine(<span id="lit">"Original document name: "</span> + si.DocumentName);

Console.WriteLine(<span id="lit">"Signature is valid: "</span> + si.CheckSignature(false));

Console.WriteLine(<span id="lit">"Signing Certificate: "</span> + si.SigningCertificate.SubjectName.Name);
Console.WriteLine(<span id="lit">"Signing Reason: "</span> + si.SigningReason);
Console.WriteLine(<span id="lit">"Signing Date: "</span> + si.SigningDate.ToString());
Console.WriteLine(<span id="lit">"Is timestamped: "</span> + si.IsTimeStamped);

if (si.IsTimeStamped == true)
      Console.WriteLine(<span id="lit">"TSA Certificate: "</span> + si.TSACertificate.SubjectName.Name);

</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/filesigndll-quick-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FileSignDll SDK for .NET Framework</title>
		<link>http://www.signfiles.com/file-sign-library/</link>
		<comments>http://www.signfiles.com/file-sign-library/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 13:14:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=1608</guid>
		<description><![CDATA[The main function of FileSignDll SDK is to digitally sign Office 2007, 2010, XPS, DWFx and XML documents using X.509 certificates. Using this library you can quickly digitally sign .docx, .xlsx, .pptx, .xps, .dwfx and .xml files using a simple SDK.
Also, using FileSignDll SDK any files can be signed in PKCS#7 cryptographic  standard (.p7m or [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The main function of <strong>FileSignDll SDK </strong>is to digitally sign Office 2007, 2010, XPS, DWFx and XML documents using X.509 certificates. Using this library you can quickly digitally sign .docx, .xlsx, .pptx, .xps, .dwfx and .xml files using a simple SDK.</p>
<p style="text-align: justify;">Also, using <strong>FileSignDll SDK</strong> any files can be signed in PKCS#7 cryptographic  standard (.p7m or .p7s files). Details about the standard regarding the creation of such structures are published on <a href="http://www.ietf.org/rfc/rfc3369.txt" target="_blank">RFC 3369</a>, standard initiated by RSA Security Data Inc.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; FileSignDll SDK can access, use and manage X.509 certificates and associated private keys, stored on cryptocards, USB cryptotokens or PFX files.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><strong><img title="developers" src="http://www.signfiles.com/resources/developers.png" alt="" width="16" height="16" /> File</strong>SignDll SDK</strong> can be used on Windows desktop systems. For development you can use one of the following <strong>development tools</strong>:</p>
<p>- Visual Studio 2010<br />
- Visual Studio 2008<br />
- Visual Studio 2005<br />
- Visual Studio 2003</p>
<p><code><br />
</code></p>
<p><strong><img class="alignnone size-full wp-image-554" title="os" src="http://www.signfiles.com/resources/os.png" alt="" width="16" height="16" /> Operating Systems Compatibility:</strong> Windows XP or higher</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-551" title="programming" src="http://www.signfiles.com/resources/programming.png" alt="" width="16" height="16" /> Programming Languages:</strong> C#, VB.NET, ASP.NET, Visual C++. The library requires .NET Framework 3.5 (or higher).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-548" title="license" src="http://www.signfiles.com/resources/license.png" alt="" width="16" height="16" /> Licensing:</strong></p>
<p style="text-align: justify;"><strong>Internal license</strong> is used by companies (or freelancers) which need FileSignDll for internal company use, such as custom digital signature software.</p>
<p><strong>Web license</strong> is required when you use FileSignDLL in web applications. This license can be used on any number of systems in one company.</p>
<p><strong>Company license</strong> is offered to software vendors (freelancers or companies), who develop their software for third-parties (companies or individuals). If you develop a software that will be distributed to other companies or individual users, then you need a Company license.</p>
<p><em><strong>All licenses can be used by any number of developers from the company.</strong></em></p>
<p><code><br />
</code></p>
<p><strong><img title="license" src="http://www.signfiles.com/resources/appearance.png" alt="" width="16" height="16" /> Technical support: </strong>One year of free technical support is offered with every purchase (all licenses).</p>
<p><code><br />
</code></p>
<table style="height: 105px;" border="1" cellspacing="1" cellpadding="5" width="551" bordercolor="#cccccc">
<tbody>
<tr>
<td width="191" height="30" align="center" valign="middle"><strong>License type</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Price</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with PayPal</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with credit card</strong></td>
</tr>
<tr>
<td width="191" height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Internal license<br />
</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>65 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="PXVK3ZHHVW2KL">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG_global.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
</td>
<td width="248" align="center">not available yet</td>
</tr>
<tr>
<td width="191" height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Web license<br />
</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>90 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="8PCU4GQB68HRU">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG_global.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
</td>
<td width="248" align="center">not available yet</td>
</tr>
<tr>
<td height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Company license</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>210 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="4W569QV2YDTZS">
<input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG_global.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"><br />
</form>
</td>
<td width="248" align="center">not available yet</td>
</tr>
</tbody>
</table>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/sdk/FileSignDll.zip"><strong>Download FileSignDll library (examples incuded)</strong></a> (latest version: 2.0.1 updated on 15.07.2011)</li>
<li><a href="http://www.signfiles.com/filesigndll-quick-manual/">FileSignDll SDK Quick Manual</a> <img title="page" src="../resources/page.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code><br />
<strong>Useful links:</strong></p>
<ul>
<li> <a href="http://www.signfiles.com/pdf-sign-library/">PDFSignDll SDK</a> (for developers)</li>
<li> <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
</ul>
<p><code><br />
</code></p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#appId=APP_ID&amp;xfbml=1"></script><fb:comments href="http://www.signfiles.com/file-sign-library/" num_posts="5" width=600"></fb:comments></p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/file-sign-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDFSignDll Quick Manual</title>
		<link>http://www.signfiles.com/pdfsigndll-quick-manual/</link>
		<comments>http://www.signfiles.com/pdfsigndll-quick-manual/#comments</comments>
		<pubDate>Mon, 09 May 2011 13:05:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=1449</guid>
		<description><![CDATA[

Download PDFSignDLL User&#8217;s Guide in PDF format 


The library PDFSignDll can be used for adding digital signatures and encryption to your PDF files.
To initialize the library use the code snippet below. To register the library you must enter as parameter a valid serial number.

PDFSign PDFSign = new PDFSign("enter your serial number");



In order to add a [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>
<a href="http://www.signfiles.com/manuals/PDFSignDLLUserManual.pdf" target="_blank">Download PDFSignDLL User&#8217;s Guide in PDF format</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" />
</li>
</ul>
<p>The library PDFSignDll can be used for adding digital signatures and encryption to your PDF files.</p>
<p>To initialize the library use the code snippet below. To register the library you must enter as parameter a valid serial number.</p>
<pre id="exCode"><span id="black">
PDFSign PDFSign = new PDFSign(<span id="lit">"enter your serial number"</span>);
</span></pre>
<p><code><br />
</code></p>
<p>In order to add a digital signature, a valid PDF document must be loaded.</p>
<pre id="exCode"><span id="black">
<span id="cmt">//Load a document from an existing file</span>
PDFSign.LoadPDFDocumentFromFile(<span id="lit">"c:\\source.pdf"</span>);

<span id="cmt">//Load a document from byte[] array</span>
PDFSign.LoadPDFDocumentFromArray(File.ReadAllBytes(<span id="lit">"c:\\source.pdf"</span>));

<span id="cmt">//Load a document from an URL</span>
PDFSign.LoadPDFDocumentFromURL(new Uri(<span id="lit">"http://www.signfiles.com/test.pdf"</span>));
</span></pre>
<p><code><br />
</code></p>
<p>If the PDF document is protected by a password, the password must be specified before calling the load function:</p>
<pre id="exCode"><span id="black">
PDFSign.DocumentProperties.Password = <span id="lit">"Document p@ssw0rd"</span>;

<span id="cmt">//Load an encrypted document from an existing file</span>
PDFSign.LoadPDFDocumentFromFile(<span id="lit">"c:\\source.pdf"</span>);
</span></pre>
<p><code><br />
</code></p>
<p>In order to digitally sign a PDF file, a digital certificate must be loaded first. The certificates can be loaded from PFX files or Microsoft Store. If the certificate is stored on a smart card (like Aladdin eToken or SafeNey iKey) the public part of the certificate will appear on Microsoft Store.</p>
<pre id="exCode"><span id="black">
<span id="cmt">//load the certificate from a PFX file</span>
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\certificate.pfx"</span>), <span id="lit">"cert password"</span>);

<span id="cmt">//load the certificate form Microsoft Store</span>
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificateFromStore(false, <span id="lit">""</span>, <span id="lit">"Digital Certificates"</span>,
<span id="lit">"Select the signing certificate"</span>, DigitalCertificateScope.ForDigitalSignature);
</span></pre>
<p><code><br />
</code></p>
<p>The digital signature can be added to PDF document as a visible (default) or invisible signature. The signature rectangle properties can be specified like this:</p>
<pre id="exCode"><span id="black">
PDFSign.VisibleSignature = true;

<span id="cmt">//some default positions for the signature rectangle</span>
PDFSign.SignatureBasicPosition = BasicSignatureLocation.TopRight;

<span id="cmt">//the signature rectangle can be set</span>
PDFSign.SignaturePosition = new System.Drawing.Rectangle(30, 30, 120, 70);

<span id="cmt">//set the signature page</span>
PDFSign.SignaturePage = 1;

<span id="cmt">//if there are Unicode characters on the signature, the font can be specified</span>
PDFSign.FontFile = <span id="lit">"c:\\Windows\\fonts\\Arial.ttf"</span>;

<span id="cmt">//insert an image on the signature rectangle</span>
PDFSign.SignatureImage =  <span id="lit">"c:\\signature_graphic.jpg"</span>;
PDFSign.SignatureImagePosition = SignatureImageType.ImageAndText;

<span id="cmt">//set the signature text</span>
PDFSign.SignatureText =<span id="lit">"Digitally signed by: Signer Name\n"</span>
+<span id="lit">"Email: emailSigner@domain.com\n"</span>
+ <span id="lit">"Title: Name Title\n"</span> + <span id="lit">"Company: Company name"</span>;
</span></pre>
<p><code><br />
</code></p>
<p>To add time stamping information to the digital signature, the Time Stamping server URL must be specified. If the Time Stamping server requires authentication, the username and password must be specified:</p>
<pre id="exCode"><span id="black">
<span id="cmt">//set the time stamping server URL</span>
PDFSign.TimeStamping.ServerURL = new Uri(<span id="lit">"http://ca.signfiles.com/TSAServer.aspx"</span>);

<span id="cmt">//optionally, the username and password must be specified</span>
PDFSign.TimeStamping.UserName = <span id="lit">"user"</span>;
PDFSign.TimeStamping.Password = <span id="lit">"P@ssw0rd"</span>;
</span></pre>
<p><code><br />
</code></p>
<p>To encrypt and digitally sign a PDF document on the same step use the following code:</p>
<pre id="exCode"><span id="black">
<span id="cmt">//append signature must be set to false</span>
PDFSign.AppendSignature = false;

<span id="cmt">//set the encryption method</span>
PDFSign.Encryption.EncryptionMethod = PDFEncryptionMethod.PasswordSecurity;

<span id="cmt">//set the document password</span>
PDFSign.Encryption.OwnerPassword = <span id="lit">"123456"</span>;

<span id="cmt">//set the restrictions</span>
PDFSign.Encryption.DocumentRestrictions = PDFDocumentRestrictions.AllowNone;

<span id="cmt">//set the encryption algorithm</span>
PDFSign.Encryption.EncryptionAlgorithm = PDFEncryptionAlgorithm.EnhancedEncryption128BitAES;
</span></pre>
<p><code><br />
</code></p>
<p>Finally, save the PDF on a file:</p>
<pre id="exCode"><span id="black">
File.WriteAllBytes(<span id="lit">"c:\\dest.pdf"</span>, PDFSign.ApplyDigitalSignature());
</span></pre>
<p><code><br />
</code></p>
<p>To digitally sign a folder that contains multiple PDF documents use the following code:</p>
<pre id="exCode"><span id="black">
PDFSign PDFSign = new PDFSign(<span id="lit">"enter your serial number"</span>);

<span id="cmt">//set the signing certificate</span>
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificateFromStore(false, <span id="lit">""</span>, <span id="lit">"Digital certificates"</span>,
<span id="lit">"Select the signing certificate"</span>, DigitalCertificateScope.ForDigitalSignature);

<span id="cmt">//set the signature properties</span>
PDFSign.SignatureBasicPosition = BasicSignatureLocation.TopLeft;

DirectoryInfo di;
FileInfo[] rgFiles;

<span id="cmt">//get the pdf files from the folder</span>
di = new DirectoryInfo(<span id="lit">"c:\\source_dir"</span>);
rgFiles = di.GetFiles(<span id="lit">"*.pdf"</span>);

foreach (FileInfo fi in rgFiles)
{
   <span id="cmt">//for readonly files</span>
   fi.Attributes = FileAttributes.Normal;

   <span id="cmt">//load the PDF document</span>
   PDFSign.LoadPDFDocumentFromFile(di.FullName + <span id="lit">"\\"</span> + fi.Name);

   <span id="cmt">//set the signature page</span>
   PDFSign.SignaturePage = PDFSign.DocumentProperties.NumberOfPages;

   <span id="cmt">//digitally sign and save the PDF file</span>
   File.WriteAllBytes(<span id="lit">"c:\\output_dir\\"</span> + fi.Name, PDFSign.ApplyDigitalSignature());
}
</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdfsigndll-quick-manual/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open XML Signer</title>
		<link>http://www.signfiles.com/open-xml-signer/</link>
		<comments>http://www.signfiles.com/open-xml-signer/#comments</comments>
		<pubDate>Wed, 27 Apr 2011 13:15:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=1350</guid>
		<description><![CDATA[Open XML Signer main function is to sign Office Open XML documents (DOCX, XLSX and PPTX), Autodesk AutoCAD DWFx files and Open XML Paper Specification (XPS) documents using X.509 digital certificates.
The current AutoCAD file format (.dwfx) is based on ISO/IEC 29500-2:2008 Open Packaging Conventions.


Using this product you can quickly sign multiple files (bulk sign) by [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Open XML Signer</strong> main function is to sign <a href="http://en.wikipedia.org/wiki/Office_Open_XML" target="_blank">Office Open XML</a> documents (DOCX, XLSX and PPTX), <a href="http://en.wikipedia.org/wiki/Design_Web_Format" target="_blank">Autodesk AutoCAD DWFx</a> files and <a href="http://en.wikipedia.org/wiki/Open_XML_Paper_Specification" target="_blank">Open XML Paper Specification</a> (XPS) documents using X.509 digital certificates.</p>
<p style="text-align: justify;">The current AutoCAD file format (.dwfx) is based on ISO/IEC 29500-2:2008 <a href="http://en.wikipedia.org/wiki/Open_Packaging_Conventions" target="_blank">Open Packaging Conventions</a>.</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
<p style="text-align: justify;">Using this product you can quickly sign multiple files (bulk sign) by selecting input and output directory. This is ideal for batch signing of large number of corporate documents rather than signing each one individually.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>Open XML Signer</strong> allows you to digitally sign Microsoft Office &#8482; 2007/2010 documents and Autodesk Autocad &#8482; DWFx files without any need to purchase additional software. This dramatically reduces the Total Cost of Ownership (TCO).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong> <img title="verification" src="http://www.signfiles.com/resources/verification.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; Signatures produced with Open XML Signer can be verified using Microsoft Office &#8482; 2007 and 2010 versions (for DOCX, XLSX and PPTX documents) and <a href="http://windows.microsoft.com/en-US/windows-vista/what-is-the-xps-viewer" target="_blank">Microsoft XPS Viewer</a> (for XPS and DWFx documents)</p>
<p><code><br />
</code></p>
<h4 style="text-align: justify;"><strong>Digital signature in Microsoft Office &#8482; 2007/2010 (</strong>DOCX, XLSX and PPTX documents<strong>)<br />
</strong></h4>
<p style="text-align: center;"><img class="aligncenter" src="http://www.signfiles.com/resources/OfficeDigitalSignature.jpg" alt="" width="386" height="248" /></p>
<p style="text-align: center;">
<p><code><br />
</code></p>
<h4><strong>Digital signature in Microsoft XPS Viewer (XPS or .DWFx files)<br />
</strong></h4>
<p style="text-align: center;"><strong><strong><img class="aligncenter" src="http://www.signfiles.com/resources/AutodeskXPSDigitalSignature.jpg" alt="" width="537" height="267" /><br />
</strong></strong></p>
<p style="text-align: center;">
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; Open XML Signer is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p><code><br />
</code></p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-1300" title="DOCXSigner" src="http://www.signfiles.com/resources/OpenXMLSigner.jpg" alt="" width="462" height="360" /></p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>Requirements:</strong></p>
<p style="text-align: justify;">- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p style="text-align: justify;">- .NET Framework 3.5 available <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=333325fd-ae52-4e35-b531-508d977d32a6&amp;displaylang=en" target="_blank">here</a></p>
<p style="text-align: justify;">- Windows XP or later</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>9 EUR (<span style="text-decoration: line-through;">15 EUR</span>)<br />
</strong></span></p>
<p style="text-align: justify;"><code><br />
</code></p>
<p><span style="color: #800000;"><strong>What you will also get if you purchase Open XML Signer</strong></span></p>
<p><span style="color: #800000;">- An X.509 Personal Digital Certificate with<strong> one year validity</strong></span></p>
<p><span style="color: #800000;">- free updates for one year</span><strong><br />
</strong></p>
<p><code><br />
</code></p>
<p><span style="color: #800000;"> </span></p>
<ul>
<li><a href="http://www.signfiles.com/apps/OpenXMLSignerDemo.msi"><strong>Download Open XML Signer Demo</strong></a> (requires .NET Framework 3.5 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=333325FD-AE52-4E35-B531-508D977D32A6&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p style="text-align: justify;">
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="LFWS3EXLYSCK2" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><strong><span style="color: #800000;">Buy online with PayPal</span></strong></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/pdf-signer/">PDF Signer</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/open-xml-signer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finishing your order</title>
		<link>http://www.signfiles.com/order-finish/</link>
		<comments>http://www.signfiles.com/order-finish/#comments</comments>
		<pubDate>Tue, 15 Feb 2011 10:48:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=1307</guid>
		<description><![CDATA[The registered application license will be sent to you by email (PayPal email address). You may need to wait for up to 2 hours to receive our email (please check the spam folder). If you did not receive an email after waiting for 2 hours, please contact us.


 
For the ordered software will be an [...]]]></description>
			<content:encoded><![CDATA[<p><strong><span style="color: #800000;">The registered application license will be sent to you by email (PayPal email address). You may need to wait for up to 2 hours to receive our email (please check the spam folder). If you did not receive an email after waiting for 2 hours, please contact us.</span></strong></p>
<p><code><br />
</code></p>
<p><strong><span style="color: #800000;"> </span></strong></p>
<p style="text-align: justify;">For the ordered software will be an one-time payment with no annual fees.</p>
<p>If you ordered a desktop application, the registered version will be installed properly only if the previous version will be uninstalled first.</p>
<p><code><br />
</code></p>
<p><strong>Contact details:</strong><br />
<strong>General Information:</strong> <a href="mailto:office@signfiles.com">office@signfiles.com</a><br />
<strong>Sales:</strong> <a href="mailto:sales@signfiles.com">sales@signfiles.com</a></p>
<p><code><br />
</code></p>
<p><strong><span style="color: #000000;">Thank you for your choice to use our products.</span></strong></p>
<p><!-- Google Code for Order Conversion Page --><br />
<script type="text/javascript">
/* <![CDATA[ */
var google_conversion_id = 1068258908;
var google_conversion_language = "ar";
var google_conversion_format = "3";
var google_conversion_color = "ffffff";
var google_conversion_label = "3BwTCLDlkgIQ3Kyx_QM";
var google_conversion_value = 0;
if (1) {
  google_conversion_value = 1;
}
/* ]]&gt; */
</script><br />
<script type="text/javascript" src="http://www.googleadservices.com/pagead/conversion.js">
</script><br />
<noscript></p>
<div style="display:inline;">
<img height="1" width="1" style="border-style:none;" alt="" src="http://www.googleadservices.com/pagead/conversion/1068258908/?value=1&amp;label=3BwTCLDlkgIQ3Kyx_QM&amp;guid=ON&amp;script=0"/>
</div>
<p></noscript></p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/order-finish/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding PDF Encryption using PDFSignDll SDK</title>
		<link>http://www.signfiles.com/adding-pdf-encryption/</link>
		<comments>http://www.signfiles.com/adding-pdf-encryption/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 10:18:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=917</guid>
		<description><![CDATA[In order to encrypt a PDF file, the document must be opened first. If the document is already protected by a password, it must be specified before loading the document

PDFEncrypt crypt = new PDFEncrypt();

//password if the document is already encrypted
crypt.LoadedDocumentPassword ="D0cument P@ssword";

//load the PDF document
crypt.LoadPDFDocumentFromArray(File.ReadAllBytes("c:\\source.pdf"));


Password Security
Owner password is set for changing the rights of the [...]]]></description>
			<content:encoded><![CDATA[<p>In order to encrypt a PDF file, the document must be opened first. If the document is already protected by a password, it must be specified before loading the document</p>
<pre id="exCode"><span id="black">
PDFEncrypt crypt = new PDFEncrypt();

<span id="cmt">//password if the document is already encrypted</span>
crypt.LoadedDocumentPassword =<span id="lit">"D0cument P@ssword"</span>;

<span id="cmt">//load the PDF document</span>
crypt.LoadPDFDocumentFromArray(File.ReadAllBytes(<span id="lit">"c:\\source.pdf"</span>));
</span></pre>
<p><code><br /></code></p>
<h1>Password Security</h1>
<p style="text-align: justify;"><strong>Owner password</strong> is set for changing the rights of the PDF file. The owner password is not requested when opening the PDF file but it is requesting when you want to change something in the password protected PDF file that was restricted from modifying.</p>
<p><code><br /></code></p>
<p>To set the owner password you can use:</p>
<pre id="exCode"><span id="black">
<span id="cmt">//owner password is used to set the permissions</span>
crypt.OwnerPassword =</span><span id="lit">"owner P@ssw0rD"</span>;
</span></pre>
<p><code><br /></code></p>
<p style="text-align: justify;"><strong>User password</strong> is for opening (and reading) the PDF file. If you define an user password before generating the PDF file, when someone will want to open the resulting PDF file it will have to enter the user password to open it. So only the ones that know this password can read/open the password protected PDF file.</p>
<p><code><br /></code></p>
<p>To set the user password you can use:</p>
<pre id="exCode"><span id="black">
<span id="cmt">//optionally, user password is used to open the document with a password</span>
crypt.UserPassword =</span><span id="lit"> "user P@ssw0rD"</span>;
</span></pre>
<p><code><br /></code></p>
<h1>Certificate Security</h1>
<p style="text-align: justify;">Encrypts a PDF document by using a certificate. The certificate can be loaded from Microsoft Store, PFX, CER, PKCS#7, or X509Certificate2 object.</p>
<pre id="exCode"><span id="black">
<span id="cmt">//load the encryption certificate from .CER file</span>
crypt.EncryptionCertificate = crypt.LoadCertificateFromCER(<span id="lit">"c:\\encryption_cert.cer"</span>);

<span id="cmt">//load the encryption certificate from Microsoft Store</span>
crypt.EncryptionCertificate =
crypt.LoadCertificateFromStore(false, <span id="lit">""</span>, <span id="lit">"Encryption Certificates"</span>,
<span id="lit">"Set the encryption certificate"</span>, DigitalCertificateScope.ForEncryption);
</span></pre>
<p><code><br /></code></p>
<h1>Encryption Algorithms</h1>
<p style="text-align: justify;">The library can use <strong>Standard Encryption RC4 (40 bit)</strong>,  <strong>Standard Encryption RC4 (128 bit)</strong>, and <strong>Enhanced Encryption AES (128 bit) &#8211; default</strong>.</p>
<pre id="exCode"><span id="black">
crypt.EncryptionAlgorithm = PDFEncryptionAlgorithm.EnhancedEncryption128BitAES;
</span></pre>
<p><code><br /></code></p>
<h1 style="text-align: justify;">Document Restrictions</h1>
<p style="text-align: justify;">Setting document restrictions allows you to customize if a user can copy content, filling form fields, edit content, or print the PDF file.</p>
<p style="text-align: justify;">The library can allow content copying, content copying for accessibility, filling of form fields, printing, or none of them.</p>
<pre id="exCode"><span id="black">
crypt.DocumentRestrictions =
PDFDocumentRestrictions.AllowPrinting | PDFDocumentRestrictions.AllowContentCopying;
</span></pre>
<p><code><br /></code></p>
<h1 style="text-align: justify;">Encrypt a PDF Using Passwords</h1>
<pre id="exCode"><span id="black">
PDFEncrypt crypt = new PDFEncrypt();

<span id="cmt">//load the PDF document</span>
crypt.LoadPDFDocumentFromArray(File.ReadAllBytes(<span id="lit">"c:\\source.pdf"</span>));

<span id="cmt">//set the encryption method</span>
crypt.EncryptionMethod = PDFEncryptionMethod.PasswordSecurity;

<span id="cmt">//set the owner password - for changing the rights of the PDF file.</span>
crypt.OwnerPassword = <span id="lit">"1234567"</span>;

<span id="cmt">//set the user password - required for opening (and reading) the PDF file</span>
crypt.UserPassword = <span id="lit">"User Password"</span>;

<span id="cmt">//set the encryption algorithm</span>
crypt.EncryptionAlgorithm = PDFEncryptionAlgorithm.StandardEncryption128BitRC4;

<span id="cmt">//set the document restrictions</span>
crypt.DocumentRestrictions = PDFDocumentRestrictions.AllowNone;

<span id="cmt">//save the encrypted PDF document on a file</span>
File.WriteAllBytes(<span id="lit">"c:\\encrypted.pdf"</span>, crypt.EncryptPDFFile());
</span></pre>
<p><code><br /></code></p>
<h1>Encrypt a PDF Using Digital Certificates</h1>
<pre id="exCode"><span id="black">
PDFEncrypt crypt = new PDFEncrypt();

<span id="cmt">//load the PDF document</span>
crypt.LoadPDFDocumentFromFile(<span id="lit">"c:\\source.pdf"</span>);

<span id="cmt">//set the encryption method</span>
crypt.EncryptionMethod = PDFEncryptionMethod.CertificateSecurity;

<span id="cmt">//set the encryption algorithm</span>
crypt.EncryptionAlgorithm = PDFEncryptionAlgorithm.StandardEncryption40BitRC4;

<span id="cmt">//set the document restrictions</span>
crypt.DocumentRestrictions = PDFDocumentRestrictions.AllowPrinting;

<span id="cmt">//save the encrypted PDF document on a file</span>
File.WriteAllBytes(<span id="lit">"c:\\encrypted.pdf"</span>, crypt.EncryptPDFFile());
</span></pre>
<p><code><br /></code></p>
<p>Encryption methods are a free part of <a href="http://www.signfiles.com/pdf-sign-library/">PDFSignDll SDK</a>.</p>
<p style="text-align: justify;">If you want to digitally sign a PDF document, please remember that the encryption must be done <strong>before</strong> the signing operation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/adding-pdf-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Help Center</title>
		<link>http://www.signfiles.com/help-center/</link>
		<comments>http://www.signfiles.com/help-center/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 09:15:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/?p=894</guid>
		<description><![CDATA[PDFSignDLL

PDFSignDLL User&#8217;s Guide 
PDFSignDll SDK Quick Manual 
Adding PDF encryption using PDFSignDll SDK



FileSignDLL

FileSignDll SDK Quick Manual 



PDF Signer Server

PDF Signer Server User Manual 



Time Stamping


Adding time stamping information on PDF documents 


Installing a demo TSA Authority on IIS server 




PDF Security

Validating digital signatures in Adobe 
Verifying PDF digital signatures using PDFSignDLL SDK  (for developers) 



Root Certificates

Secure [...]]]></description>
			<content:encoded><![CDATA[<h1>PDFSignDLL</h1>
<ul>
<li><a href="http://www.signfiles.com/manuals/PDFSignDLLUserManual.pdf" target="_blank">PDFSignDLL User&#8217;s Guide</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/pdfsigndll-quick-manual/">PDFSignDll SDK Quick Manual</a> <img title="page" src="http://www.signfiles.com/resources/page.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/adding-pdf-encryption/">Adding PDF encryption using PDFSignDll SDK</a><img class="alignnone size-full wp-image-1024" title="page" src="http://www.signfiles.com/resources/page.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<h1>FileSignDLL</h1>
<ul>
<li><a href="http://www.signfiles.com/filesigndll-quick-manual/">FileSignDll SDK Quick Manual</a> <img title="page" src="http://www.signfiles.com/resources/page.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<h1>PDF Signer Server</h1>
<ul>
<li><a href="http://www.signfiles.com/manuals/PDFSignerServerManual.pdf" target="_blank">PDF Signer Server User Manual</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<h1>Time Stamping</h1>
<ul>
<li>
<div><a href="http://www.signfiles.com/manuals/UsingTheTSAServer.pdf" target="_blank">Adding time stamping information on PDF documents</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></div>
</li>
<li>
<div><a href="http://www.signfiles.com/manuals/InstallingTheTSAServer.pdf" target="_blank">Installing a demo TSA Authority on IIS server</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></div>
</li>
</ul>
<p><code><br />
</code></p>
<h1>PDF Security</h1>
<ul>
<li><a href="http://www.signfiles.com/manuals/ValidatingDigitalSignaturesInAdobe.pdf" target="_blank">Validating digital signatures in Adobe</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/manuals/VerifyingPDFSignatures.pdf" target="_blank">Verifying PDF digital signatures using PDFSignDLL SDK </a> (for developers) <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<h1>Root Certificates</h1>
<ul>
<li><a href="http://www.signfiles.com/certs/RootSecureSoftPrivateCA.cer">Secure Soft Private CA Root Certificate</a> <img title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/certs/AdobePolicy.fdf" target="_blank">Installing Adobe Security Policy (.fdf file)</a> <img title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/certs/InstallingRoot.exe">Installing Secure Soft Private CA Root</a> (run as Administrator) <img title="admin" src="http://www.signfiles.com/resources/admin.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/manuals/ValidatingDigitalCertificatesInWindows.pdf" target="_blank">Validating digital certificates in Windows</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/manuals/DigitalSignatureThunderbird.pdf" target="_blank">Adding digital signature on Mozilla Thunderbird emails</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/help-center/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certification Authority</title>
		<link>http://www.signfiles.com/certification-authority/</link>
		<comments>http://www.signfiles.com/certification-authority/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 12:11:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=721</guid>
		<description><![CDATA[A Certification Authority issues digital certificates which contain a public key and the identity of the owner. The certificates are issued in PFX (Personal inFormation eXchange) file format  protected by a password.
 
Certificates provide the foundation of a public key infrastructure (PKI). These are electronic credentials, issued by a certification authority (CA), that are associated with a [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">A <strong>Certification Authority</strong> issues digital certificates which contain a public key and the identity of the owner. The certificates are issued in PFX (Personal inFormation eXchange) file format  protected by a password.</p>
<p><strong> </strong></p>
<p style="text-align: justify;">Certificates provide the foundation of a public key infrastructure (PKI). These are electronic credentials, issued by a certification authority (CA), that are associated with a public and private key pair.</p>
<p><strong> </strong></p>
<p style="text-align: justify;">Our <strong>Certification Authority</strong> solution works as a plugin for most Windows webservers. That means it is not required to operate an extra CA machine.</p>
<p><strong> </strong></p>
<p><strong>Benefits:</strong><br />
- X.509 standards compliant<br />
- Easy to use through friendly programs like Adobe Acrobat or PDF Signer<br />
- Supports up to 4096 bit RSA keys</p>
<p><strong> </strong></p>
<p><strong>Requirements:</strong><br />
- Windows operating system with IIS<br />
- Microsoft .NET Framework 2.0</p>
<p><span style="color: #000000;"><strong> </strong></span></p>
<p style="text-align: justify;"><span style="color: #000000;"><strong>To obtain a free digital certificate (for demo purposes only), follow this link:</strong></span></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
</ul>
<p> </p>
<p style="text-align: justify;">If you are interested in running your own Certification Authority service, please <a href="http://www.signfiles.com/contact/">contact us</a>.</p>
<p style="text-align: justify;"> </p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: starting with <strong>540 EUR</strong></span></p>
<p><span style="color: #800000;"> </span></p>
<p><strong>Useful links:</strong></p>
<ul>
<li>
<div><a href="http://www.signfiles.com/x509-certificate-generator/">X.509 Certificate Generator</a></div>
</li>
<li>
<div><a href="http://www.signfiles.com/timestamping/">Time Stamping Authority</a></div>
</li>
<li>
<div><a href="http://www.signfiles.com/manuals/ValidatingDigitalCertificatesInWindows.pdf" target="_blank">Validating digital certificates in Windows</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/certification-authority/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Downloads</title>
		<link>http://www.signfiles.com/downloads/</link>
		<comments>http://www.signfiles.com/downloads/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 13:10:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=701</guid>
		<description><![CDATA[


Most Popular

PDF Signer
PDF Encryptor
Open XML Signer

P7S Viewer
X.509 Certificate Generator




Signing Software

PDF Signer
PDF Signer Server
XML Signer &#124; Viewer
P7S Signer &#124; Viewer
Open XML Signer




Encryption Software

PDF Encryptor
XML Encryptor &#124; Viewer
File Encryptor &#124; Viewer

 

For Developers

PDFSignDll (Sample project:  C# &#8211; VB.NET &#8211; VC++)

FileSignDll





Digital Certificates

X.509 Certificate Generator




Other Products

Time Synchronizer
Certificate Manager
HTML Form Filler




Root certificates

Secure Soft Private CA Root Certificate 
Adobe Security Policy 





]]></description>
			<content:encoded><![CDATA[<table style="width: 649px; height: 441px;" border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td valign="top"><strong>Most Popular</strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/PDFSignerDemo.msi"><strong>PDF Signer</strong></a></li>
<li><a href="http://www.signfiles.com/apps/PDFEncryptor.msi"><strong>PDF Encryptor</strong></a></li>
<li><strong><a href="http://www.signfiles.com/apps/OpenXMLSignerDemo.msi">Open XML Signer</a><br />
</strong></li>
<li><a href="http://www.signfiles.com/apps/P7SViewer.msi"><strong>P7S Viewer</strong></a></li>
<li><a href="http://www.signfiles.com/apps/X509CertificateGenerator.msi"><strong>X.509 Certificate Generator</strong></a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Signing Software</strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/PDFSignerDemo.msi">PDF Signer</a></li>
<li><a href="http://www.signfiles.com/apps/PDFSignerServerDemo.msi">PDF Signer Server</a></li>
<li><a href="http://www.signfiles.com/apps/XMLSignerDemo.msi">XML Signer</a> | <a href="http://www.signfiles.com/apps/XMLSignerViewer.msi">Viewer</a></li>
<li><a href="http://www.signfiles.com/apps/P7SSignerDemo.msi">P7S Signer</a> | <a href="http://www.signfiles.com/apps/P7SViewer.msi">Viewer</a></li>
<li><a href="http://www.signfiles.com/apps/OpenXMLSignerDemo.msi">Open XML Signer</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Encryption Software</strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/PDFEncryptor.msi">PDF Encryptor</a></li>
<li><a href="http://www.signfiles.com/apps/XMLEncryptor.msi">XML Encryptor</a> | <a href="http://www.signfiles.com/apps/XMLDecryptor.msi">Viewer</a></li>
<li><a href="http://www.signfiles.com/apps/FileEncryptor.msi">File Encryptor</a> | <a href="http://www.signfiles.com/apps/FileDecryptor.msi">Viewer</a></li>
</ul>
<p><strong> </strong>
</td>
<td valign="top"><strong>For Developers</strong></p>
<ul>
<li><a href="http://www.signfiles.com/sdk/PDFSignDll.zip">PDFSignDll</a> (Sample project:  <a href="http://www.signfiles.com/sdk/PDFSignDLLTestCSharp.zip">C#</a> &#8211; <a href="http://www.signfiles.com/sdk/PDFSignDLLTestVBNET.zip">VB.NET</a> &#8211; <a href="http://www.signfiles.com/sdk/PDFSignDLLTestCPP.zip">VC++</a>)</li>
<li>
<li><a href="http://www.signfiles.com/sdk/FileSignDll.zip">FileSignDll</a>
</li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Digital Certificates</strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/X509CertificateGenerator.msi">X.509 Certificate Generator</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Other Products</strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/TimeSyncronizer.msi">Time Synchronizer</a></li>
<li><a href="http://www.signfiles.com/apps/LDAPBrowser.msi">Certificate Manager</a></li>
<li><a href="http://www.signfiles.com/apps/HTMLFormFiller.msi">HTML Form Filler</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Root certificates</strong></p>
<ul>
<li><a href="http://www.signfiles.com/certs/RootSecureSoftPrivateCA.cer">Secure Soft Private CA Root Certificate</a> <img class="alignnone size-full wp-image-211" title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/certs/AdobePolicy.fdf">Adobe Security Policy</a> <img class="alignnone size-full wp-image-211" title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /></li>
</ul>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/downloads/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>All Products</title>
		<link>http://www.signfiles.com/all-products/</link>
		<comments>http://www.signfiles.com/all-products/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 12:15:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=619</guid>
		<description><![CDATA[


Signing Software

PDF Signer
PDF Signer Server
XML Signer
P7S Signer
Open XML Signer




Encryption Software

PDF Encryption
XML Encryption
File Encryption




For Developers

PDFSignDll Library
FileSignDll Library


Digital Certificates

X.509 Certificate Generator
Certification Authority
Obtain a free SSL certificate




Time Stamping

Time Stamping Authority
Time Synchronizer




Management Tools

Certificate Manager
HTML Form Filler





]]></description>
			<content:encoded><![CDATA[<table style="width: 649px; height: 447px;" border="0" cellspacing="0" cellpadding="0" align="center">
<tbody>
<tr>
<td valign="top"><strong>Signing Software</strong></p>
<ul>
<li><a title="PDF Signer" rel="bookmark" href="http://www.signfiles.com/pdf-signer/">PDF Signer</a></li>
<li><a title="PDF Signer Server" rel="bookmark" href="http://www.signfiles.com/pdf-signer-server/">PDF Signer Server</a></li>
<li><a title="XML Signer" rel="bookmark" href="http://www.signfiles.com/xml-signer/">XML Signer</a></li>
<li><a title="P7S Signer" rel="bookmark" href="http://www.signfiles.com/p7s-signer/">P7S Signer</a></li>
<li><a title="XPS Signer" rel="bookmark" href="http://www.signfiles.com/open-xml-signer/">Open XML Signer</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Encryption Software</strong></p>
<ul>
<li><a title="PDF Encryption" rel="bookmark" href="http://www.signfiles.com/pdf-encryption/">PDF Encryption</a></li>
<li><a title="XML Encryption" rel="bookmark" href="http://www.signfiles.com/xml-encryption/">XML Encryption</a></li>
<li><a title="File Encryption" rel="bookmark" href="http://www.signfiles.com/file-encryption/">File Encryption</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>For Developers</strong></p>
<ul>
<li><a title="PDFSignDll for .NET Framework" rel="bookmark" href="http://www.signfiles.com/pdf-sign-library/">PDFSignDll Library</a></li>
<li><a title="FileSignDll for .NET Framework" rel="bookmark" href="http://www.signfiles.com/file-sign-library/">FileSignDll Library</a></li>
</ul>
</td>
<td valign="top"><strong>Digital Certificates</strong></p>
<ul>
<li><a title="X.509 Certificate Generator" rel="bookmark" href="http://www.signfiles.com/x509-certificate-generator/">X.509 Certificate Generator</a></li>
<li><a href="http://www.signfiles.com/certification-authority/">Certification Authority</a></li>
<li><a href="http://www.ca-soft.com/SSLEnroll.aspx" target="_blank">Obtain a free SSL certificate</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Time Stamping</strong></p>
<ul>
<li><a href="http://www.signfiles.com/timestamping/">Time Stamping Authority</a></li>
<li><a title="Time Synchronizer" rel="bookmark" href="http://www.signfiles.com/time-synchronizer/">Time Synchronizer</a></li>
</ul>
<p><code>
</p>
<p></code><br />
<strong>Management Tools</strong></p>
<ul>
<li><a title="Certificate Manager" rel="bookmark" href="http://www.signfiles.com/certificate-manager/">Certificate Manager</a></li>
<li><a title="HTML Form Filler" rel="bookmark" href="http://www.signfiles.com/html-form-filler/">HTML Form Filler</a></li>
</ul>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/all-products/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDFSignDll for .NET Framework 2.0 Code Example</title>
		<link>http://www.signfiles.com/pdf-sign-library-code-example/</link>
		<comments>http://www.signfiles.com/pdf-sign-library-code-example/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 11:10:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=578</guid>
		<description><![CDATA[C# Code Example


PDFSign PDFSign = new PDFSign("Enter your application license here");

//Load the PDF file
PDFSign.LoadPDFDocumentFromArray(File.ReadAllBytes("c:\\source.pdf"));

//Load the certificate from .PFX
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificate(File.ReadAllBytes("c:\\cert.pfx"), "123456");

//Load the certificate from Microsoft Store
//PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificateFromStore(false, "", "Digital certificates",
"Select the digital certificate", DigitalCertificateScope.ForDigitalSignature);

//Signing reason &#038; location
PDFSign.SigningReason = "I approve this document";
PDFSign.SigningLocation = "Europe branch";

//Set the signature rectangle attributes
PDFSign.SignaturePage = 1;
PDFSign.SignatureBasicPosition = BasicSignatureLocation.TopRight;

//Custom signature position
//PDFSign.SignaturePosition = [...]]]></description>
			<content:encoded><![CDATA[<h1><a id="csharp" name="csharp"></a>C# Code Example</h1>
<pre id="exCode">
<span id="black">
PDFSign PDFSign = new PDFSign(<span id="lit">"Enter your application license here"</span>);

<span id="cmt">//Load the PDF file</span>
PDFSign.LoadPDFDocumentFromArray(File.ReadAllBytes(<span id="lit">"c:\\source.pdf"</span>));

<span id="cmt">//Load the certificate from .PFX</span>
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificate(File.ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt">//Load the certificate from Microsoft Store
//PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificateFromStore(false, "", "Digital certificates",
"Select the digital certificate", DigitalCertificateScope.ForDigitalSignature);</span>

<span id="cmt">//Signing reason &#038; location</span>
PDFSign.SigningReason = <span id="lit">"I approve this document"</span>;
PDFSign.SigningLocation = <span id="lit">"Europe branch"</span>;

<span id="cmt">//Set the signature rectangle attributes</span>
PDFSign.SignaturePage = 1;
PDFSign.SignatureBasicPosition = BasicSignatureLocation.TopRight;

<span id="cmt">//Custom signature position
//PDFSign.SignaturePosition = new System.Drawing.Rectangle(30, 30, 100, 150);</span>

<span id="cmt">//insert an image on the signature</span>
PDFSign.SignatureImage = <span id="lit">"c:\\signature_image.jpg"</span>;
PDFSign.SignatureImagePosition = SignatureImageType.ImageAsBackground;

<span id="cmt">//Set the PDF signature properties</span>
PDFSign.SigningReason = <span id="lit">"Your signing reason"</span>;
PDFSign.SigningLocation = <span id="lit">"Your signing location"</span>;

<span id="cmt">//signature text that will appear on the signature rectangle</span>
PDFSign.SignatureText =
<span id="lit">"Signed by:"</span> + PDFSign.DigitalSignatureCertificate.GetNameInfo(
X509NameType.SimpleName, false) + <span id="lit">"\n"</span> +
<span id="lit">"Date:"</span> + DateTime.Now.ToString(<span id="lit">"yyyy.MM.dd HH:mm"</span>) + <span id="lit">"\n"</span> +
<span id="lit">"Reason:" </span> + PDFSign.SigningReason;

<span id="cmt">//Time stamp the PDF file</span>
PDFSign.TimeStamping.ServerURL = new Uri(<span id="lit">"http://ca.signfiles.com/TSAServer.aspx"</span>);

<span id="cmt">//digitally sign the PDF file</span>
File.WriteAllBytes(<span id="lit">"c:\\dest.pdf"</span>, PDFSign.ApplyDigitalSignature());
</span></pre>
<ul>
<li><a href="http://www.signfiles.com/sdk/PDFSignDll.zip">Download PDFSignerDll Demo library (.DLL only)</a></li>
<li><a href="http://www.signfiles.com/sdk/PDFSignDLLTestCSharp.zip">Download PDFSignDll C# Sample project</a></li>
</ul>
<h1><a id="vb" name="vb"></a>Visual Basic.NET Code Example</h1>
<pre id="exCode">
<span id="black">
Dim PDFSign As New PDFSign(<span id="lit">"Enter your application license here"</span>)

<span id="cmt">'Load the PDF file</span>
PDFSign.LoadPDFDocumentFromArray(System.IO.File.ReadAllBytes(<span id="lit">"c:\source.pdf"</span>))

<span id="cmt">'Load the certificate from .PFX</span>
PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificate(System.IO.File.ReadAllBytes(<span id="lit">"c:\cert.pfx"</span>), <span id="lit">"123456"</span>)

<span id="cmt">'Load the certificate from Microsoft Store
'PDFSign.DigitalSignatureCertificate =
PDFSign.LoadCertificateFromStore(False, "", "Digital certificates",
"Select the digital certificate", DigitalCertificateScope.ForDigitalSignature)</span>

<span id="cmt">'Signing reason &#038; location</span>
PDFSign.SigningReason = <span id="lit">"I approve this document"</span>
PDFSign.SigningLocation = <span id="lit">"Europe branch"</span>

<span id="cmt">'Set the signature rectangle attributes</span>
PDFSign.SignaturePage = 1
PDFSign.SignatureBasicPosition = BasicSignatureLocation.TopRight

<span id="cmt">'Custom signature position
'PDFSign.SignaturePosition = New System.Drawing.Rectangle(30, 30, 100, 150)</span>

<span id="cmt">'insert an image on the signature</span>
PDFSign.SignatureImage = <span id="lit">"c:\signature_image.jpg"</span>
PDFSign.SignatureImagePosition = SignatureImageType.ImageAsBackground

<span id="cmt">'Set the PDF signature properties</span>
PDFSign.SigningReason = <span id="lit">"Your signing reason"</span>
PDFSign.SigningLocation = <span id="lit">"Your signing location"</span>

<span id="cmt">'signature text that will appear on the signature rectangle</span>
PDFSign.SignatureText =
(<span id="lit">"Signed by:"</span> &#038; PDFSign.DigitalSignatureCertificate.GetNameInfo(
Security.Cryptography.X509Certificates.X509NameType.SimpleName, False) &#038; vbLf &#038;
<span id="lit">"Date:"</span> &#038; DateTime.Now.ToString(<span id="lit">"yyyy.MM.dd HH:mm"</span>) &#038; vbLf &#038;
<span id="lit">"Reason:"</span>) + PDFSign.SigningReason

<span id="cmt">'Time stamp the PDF file</span>
PDFSign.TimeStamping.ServerURL = New Uri(<span id="lit">"http://ca.signfiles.com/TSAServer.aspx"</span>)

<span id="cmt">'digitally sign the PDF file</span>
System.IO.File.WriteAllBytes(<span id="lit">"c:\dest.pdf"</span>, PDFSign.ApplyDigitalSignature())
</pre>
<ul>
<li><a href="http://www.signfiles.com/sdk/PDFSignDll.zip">Download PDFSignerDll Demo library (.DLL only)</a></li>
<li><a href="http://www.signfiles.com/sdk/PDFSignDLLTestVBNET.zip">Download PDFSignDll Visual Basic.NET Sample project</a></li>
</ul>
<h1><a id="cpp" name="cpp"></a>Visual C++ Code Example</h1>
<pre id="exCode"><span id="black">
PDFSign ^ PDFSignObj = gcnew PDFSign("Enter your application license here");

<span id="cmt">//Load the PDF file</span>
PDFSignObj->LoadPDFDocumentFromArray(System::IO::File::ReadAllBytes(<span id="lit">"c:\\source.pdf"</span>));

<span id="cmt">//Load the certificate from .PFX</span>
PDFSignObj->DigitalSignatureCertificate =
PDFSignObj->LoadCertificate(System::IO::File::ReadAllBytes(<span id="lit">"c:\\cert.pfx"</span>), <span id="lit">"123456"</span>);

<span id="cmt">//Load the certificate from Microsoft Store
//PDFSignObj->DigitalSignatureCertificate =
PDFSignObj->LoadCertificateFromStore(false, "", "Digital certificates",
"Select the digital certificate", DigitalCertificateScope::ForDigitalSignature);</span>

<span id="cmt">//Signing reason &#038; location</span>
PDFSignObj->SigningReason = "I approve this document";
PDFSignObj->SigningLocation = "Europe branch";

<span id="cmt">//Set the signature rectangle attributes</span>
PDFSignObj->SignaturePage = 1;
PDFSignObj->SignatureBasicPosition = BasicSignatureLocation::TopRight;

<span id="cmt">//Custom signature position</span>
//PDFSignObj->SignaturePosition = System::Drawing::Rectangle(30, 30, 100, 150);

<span id="cmt">//insert an image on the signature</span>
PDFSignObj->SignatureImage = <span id="lit">"c:\\signature_image.jpg"</span>;
PDFSignObj->SignatureImagePosition = SignatureImageType::ImageAsBackground;

<span id="cmt">//Set the PDF signature properties</span>
PDFSignObj->SigningReason = <span id="lit">"Your signing reason"</span>;
PDFSignObj->SigningLocation = <span id="lit">"Your signing location"</span>;

<span id="cmt">//signature text that will appear on the signature rectangle</span>
PDFSignObj->SignatureText =
<span id="lit">"Signed by:"</span> + PDFSignObj->DigitalSignatureCertificate->GetNameInfo(
System::Security::Cryptography::X509Certificates::X509NameType::SimpleName, false) + <span id="lit">"\n"</span> +
<span id="lit">"Date:"</span> + DateTime::Now.ToString(<span id="lit">"yyyy.MM.dd HH:mm"</span>) + <span id="lit">"\n"</span> +
<span id="lit">"Reason:"</span> + PDFSignObj->SigningReason;

<span id="cmt">//Time stamp the PDF file</span>
PDFSignObj->TimeStamping->ServerURL = gcnew Uri(<span id="lit">"http://ca.signfiles.com/TSAServer.aspx"</span>);

<span id="cmt">//digitally sign the PDF file</span>
System::IO::File::WriteAllBytes(<span id="lit">"c:\\dest.pdf"</span>, PDFSignObj->ApplyDigitalSignature());</span></pre>
<ul>
<li><a href="http://www.signfiles.com/sdk/PDFSignDll.zip">Download PDFSignerDll Demo library (.DLL only)</a></li>
<li><a href="http://www.signfiles.com/sdk/PDFSignDLLTestCPP.zip">Download PDFSignDll Visual C++ Sample project</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdf-sign-library-code-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDFSignDll SDK for .NET Framework</title>
		<link>http://www.signfiles.com/pdf-sign-library/</link>
		<comments>http://www.signfiles.com/pdf-sign-library/#comments</comments>
		<pubDate>Thu, 21 Jan 2010 10:33:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=544</guid>
		<description><![CDATA[The main function of PDFSignDll SDK is to sign and encrypt PDF documents using X.509 certificates. Using this library you can quickly sign and encrypt PDF files using a fully configurable appearance. The positioning of the signature appearance is configurable, plus on which pages of the document it should appear (first page, last page or [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The main function of <strong>PDFSignDll SDK </strong>is to sign and encrypt PDF documents using X.509 certificates. Using this library you can quickly sign and encrypt PDF files using a fully configurable appearance. The positioning of the signature appearance is configurable, plus on which pages of the document it should appear (first page, last page or all pages). Also, the connection to the time stamping server (TSA) can be made using proxy.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; PDFSignDll SDK can access, use and manage X.509 certificates and associated private keys, stored on cryptocards, USB cryptotokens or PFX files.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /> PAdES standard</strong> &#8211; PDFSignDll SDK is fully compatible with PAdES Part 2 (ETSI TS 102778-2).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="rsa" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> RSA 2048 and SHA 256 algorithms</strong> &#8211; Our library can digitally sign and time stamp PDF documents using  RSA 2048 or higher key length and SHA 256, SHA 512 according to ETSI TS 102 176-1 V2.0.0 (“ALGO Paper”).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><strong><img title="developers" src="http://www.signfiles.com/resources/developers.png" alt="" width="16" height="16" /> </strong>PDFSignDll SDK</strong> can be used on Windows desktop systems. For development you can use one of the following <strong>development tools</strong>:</p>
<p>- Visual Studio 2010<br />
- Visual Studio 2008<br />
- Visual Studio 2005<br />
- Visual Studio 2003</p>
<p><code><br />
</code></p>
<p><strong><img class="alignnone size-full wp-image-554" title="os" src="http://www.signfiles.com/resources/os.png" alt="" width="16" height="16" /> Operating Systems Compatibility:</strong> Windows XP or higher</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-551" title="programming" src="http://www.signfiles.com/resources/programming.png" alt="" width="16" height="16" /> Programming Languages:</strong> C#, VB.NET, ASP.NET, Visual C++. The library requires .NET Framework 2.0 (or higher) available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-548" title="license" src="http://www.signfiles.com/resources/license.png" alt="" width="16" height="16" /> Licensing:</strong></p>
<p style="text-align: justify;"><strong>Internal license</strong> is used by companies (or freelancers) which need PDFSignDll for internal company use, such as custom digital signature software.</p>
<p><strong>Web license</strong> is required when you use PDFSignDLL in web applications. This license can be used on any number of systems in one company.</p>
<p><strong>Company license</strong> is offered to software vendors (freelancers or companies), who develop their software for third-parties (companies or individuals). If you develop a software that will be distributed to other companies or individual users, then you need a Company license.</p>
<p>The license for <strong>PDFSignDll</strong> is a lifetime license. There is no additional cost like monthly / annual fees or fees per use. When a new version is released you can continue using your purchased version as usual.</p>
<p><em><strong>All licenses can be used by any number of developers from the company.</strong></em></p>
<p><code><br />
</code></p>
<p><strong><img title="license" src="http://www.signfiles.com/resources/appearance.png" alt="" width="16" height="16" /> Technical support: </strong>One year of free technical support is offered with every purchase (all licenses).</p>
<p><code><br />
</code></p>
<table style="height: 105px;" border="1" cellspacing="1" cellpadding="5" width="551" bordercolor="#cccccc">
<tbody>
<tr>
<td width="191" height="30" align="center" valign="middle"><strong>License type</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Price</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with PayPal</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with credit card</strong></td>
</tr>
<tr>
<td width="191" height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Internal license<br />
</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>65 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="6401023" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /></form>
</td>
<td width="248" align="center"><a href="https://secure.avangate.com/order/checkout.php?PRODS=4540753&amp;QTY=1&amp;CART=2" target="_self"><img class="alignnone" src="http://www.signfiles.com/files/avangate.png" alt="" width="87" height="40" /></a></td>
</tr>
<tr>
<td width="191" height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Web license<br />
</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>90 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="TCGN7JJXRL53U" />
<input alt="PayPal - The safer, easier way to pay  online." name="submit" src="https://www.paypalobjects.com/WEBSCR-640-20110429-1/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypalobjects.com/WEBSCR-640-20110429-1/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</td>
<td width="248" align="center"><a href="https://secure.avangate.com/order/checkout.php?PRODS=4540757&amp;QTY=1&amp;CART=2" target="_self"><img src="http://www.signfiles.com/files/avangate.png" alt="" width="87" height="40" /></a></td>
</tr>
<tr>
<td height="51" align="center" valign="middle"><span style="color: #800000;"><strong> Company license</strong></span></td>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>210 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="6401053" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /></form>
</td>
<td width="248" align="center"><a href="https://secure.avangate.com/order/checkout.php?PRODS=4540758&amp;QTY=1&amp;CART=2" target="_self"><img src="http://www.signfiles.com/files/avangate.png" alt="" width="87" height="40" /></a></td>
</tr>
</tbody>
</table>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/sdk/PDFSignDll.zip"><strong>Download PDFSignDll Demo library (.DLL only)</strong></a> (latest version: 6.0.4 updated on 06.10.2011)</li>
<li>Download PDFSignDll Sample project: <a href="http://www.signfiles.com/sdk/PDFSignDLLTestCSharp.zip">C#</a> &#8211; <a href="http://www.signfiles.com/sdk/PDFSignDLLTestVBNET.zip">Visual Basic.NET</a> &#8211; <a href="http://www.signfiles.com/sdk/PDFSignDLLTestCPP.zip">Visual C++</a></li>
<li>Code example: <a href="http://www.signfiles.com/pdf-sign-library-code-example/#csharp">C#</a> &#8211; <a href="http://www.signfiles.com/pdf-sign-library-code-example/#vb">Visual Basic.NET</a> &#8211; <a href="http://www.signfiles.com/pdf-sign-library-code-example/#cpp">Visual C++</a></li>
<li><a href="http://www.signfiles.com/manuals/PDFSignDLLUserManual.pdf" target="_blank">PDFSignDLL User&#8217;s Guide</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/pdfsigndll-quick-manual/">PDFSignDll SDK Quick Manual</a> <img title="page" src="../resources/page.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<p><strong>Useful links:</strong></p>
<ul>
<li><a href="http://www.signfiles.com/manuals/ValidatingDigitalSignaturesInAdobe.pdf" target="_blank">Validating digital signatures in Adobe</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/manuals/VerifyingPDFSignatures.pdf" target="_blank">Verifying PDF digital signatures using PDFSignDLL SDK</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/adding-pdf-encryption/">Adding PDF encryption using PDFSignDll SDK</a> <img title="page" src="http://www.signfiles.com/resources/page.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#appId=APP_ID&amp;xfbml=1"></script><fb:comments href="http://www.signfiles.com/pdf-sign-library/" num_posts="5" width=600"></fb:comments></p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdf-sign-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Other Products</title>
		<link>http://www.signfiles.com/other-tools/</link>
		<comments>http://www.signfiles.com/other-tools/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 14:01:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=533</guid>
		<description><![CDATA[PDF Encryption
PDF Encryptor can be used to protect your PDF files with 128-bit strength using digital certificates or passwords, set all permissions (such as copying, editing, printing, selecting text and graphics, fill in etc), and prevent PDF files from being printed, changed or copied.
 

XML Encryption
XML Encryptor allows you to encrypt XML files by using a [...]]]></description>
			<content:encoded><![CDATA[<h1><a title="Permanent Link to PDF Encryption" rel="bookmark" href="http://www.signfiles.com/pdf-encryption/">PDF Encryption</a><a href="http://www.signfiles.com/signpdf.htm"></a></h1>
<p style="text-align: justify;"><strong>PDF Encryptor</strong> can be used to protect your PDF files with 128-bit strength using digital certificates or passwords, set all permissions (such as copying, editing, printing, selecting text and graphics, fill in etc), and prevent PDF files from being printed, changed or copied.</p>
<p style="text-align: justify;"> </p>
<p style="text-align: justify;">
<h1><a title="Permanent Link to XML Encryption" rel="bookmark" href="http://www.signfiles.com/xml-encryption/">XML Encryption</a></h1>
<p style="text-align: justify;"><strong>XML Encryptor </strong>allows you to encrypt XML files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of a large number of corporate XML files rather than encrypting each one individually.</p>
<p style="text-align: justify;"> </p>
<h1><a title="Permanent Link to File Encryption" rel="bookmark" href="http://www.signfiles.com/file-encryption/">File Encryption</a></h1>
<p style="text-align: justify;"><strong>File Encryptor (P7M)</strong> allows you to encrypt files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of a large number of corporate files rather than encrypting each one individually. The encrypted files will be saved with <strong>P7M</strong> extension.</p>
<p style="text-align: justify;"> </p>
<h1><a title="Permanent Link to Certificate Manager" rel="bookmark" href="http://www.signfiles.com/certificate-manager/">Certificate Manager</a></h1>
<p style="text-align: justify;"><strong>LDAP Certificate Browser</strong> (Certificate Manager) may be used to manage the X.509 certificates from your CA hierarchy. This tool allows you to obtain detailed information about user certificates stored on LDIF file.</p>
<p style="text-align: justify;"> </p>
<h1><a title="Permanent Link to Time Synchronizer" rel="bookmark" href="http://www.signfiles.com/time-synchronizer/">Time Synchronizer</a></h1>
<p style="text-align: justify;"><strong>Time Synchronizer</strong> is a time client to synchronize the computer clock. The time client receives the curent time from a time server located in your local network or somewhere in the internet.</p>
<p style="text-align: justify;"> </p>
<h1><a title="Permanent Link to HTML Form Filler" rel="bookmark" href="http://www.signfiles.com/html-form-filler/">HTML Form Filler</a><a title="Permanent Link to Certificate Manager" rel="bookmark" href="http://www.signfiles.com/blog/certificate-manager/"></a></h1>
<p style="text-align: justify;"><strong>HTML Form Filler</strong> is a free solution that automates the process of filling out the digital certificate enrollment web form.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/other-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>File Encryption</title>
		<link>http://www.signfiles.com/file-encryption/</link>
		<comments>http://www.signfiles.com/file-encryption/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=448</guid>
		<description><![CDATA[File Encryptor (P7M) allows you to encrypt files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of large number of corporate files rather than encrypting each one individually. The encrypted files will be saved with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>File Encryptor (P7M)</strong> allows you to encrypt files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of large number of corporate files rather than encrypting each one individually. The encrypted files will be saved with <strong>P7M</strong> extension.  </p>
<p style="text-align: justify;"><strong> </strong>   </p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-369" title="p7s" src="http://www.signfiles.com/resources/p7s.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; The files encrypted with File Encryptor has the P7M extension and is (mime-type) <em>application/pkcs7-enveloped-data</em> type. Details about the standard regarding the creation of such structures are published on <a href="http://www.ietf.org/rfc/rfc3369.txt" target="_blank">RFC 3369</a>, standard initiated by RSA Security Data Inc.  </p>
<p style="text-align: justify;">  </p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; File Encryptor (P7M) is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).  </p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-450" title="File Encryptor" src="http://www.signfiles.com/resources/File-Encryptor.jpg" alt="" width="457" height="303" />  </p>
<p style="text-align: justify;"> <strong>Requirements:</strong>  </p>
<p>- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)  </p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>  </p>
<p>- Windows XP or later  </p>
<p><strong> </strong>  </p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>25 EUR</strong></span>  </p>
<p><span style="color: #800000;"> </span>  </p>
<ul>
<li><a href="http://www.signfiles.com/apps/FileEncryptor.msi">Download File Encryptor Demo</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
<li><a href="http://www.signfiles.com/contact/">Purchase File Encryptor</a><a href="http://www.signfiles.com/contact.htm"></a></li>
</ul>
<p><strong> </strong>  </p>
<hr /> </p>
<h2>File Decryptor</h2>
<p style="text-align: justify;"><strong>File Decryptor </strong>(P7M and P7E file extension)<strong> </strong>lets you view files encrypted by <strong>File Encryptor</strong> or other encryption software that uses digital certificates for encryption operation. </p>
<p style="text-align: center;"> <img class="alignnone size-full wp-image-449" title="File Decryptor" src="http://www.signfiles.com/resources/File-Decryptor.jpg" alt="" width="426" height="324" /> </p>
<p style="text-align: left;"> <strong>Requirements:</strong>  </p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>  </p>
<p>- Windows XP or later  </p>
<p><strong> </strong>  </p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>FREE</strong></span><span style="color: #800000;"> </span>  </p>
<p><strong> </strong>  </p>
<ul>
<li><a href="http://www.signfiles.com/apps/FileDecryptor.msi">Download File Decryptor</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p><strong> </strong>  </p>
<p><strong>Useful links:</strong>  </p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/p7s-signer/">File Signer (P7S)</a></li>
<li><a href="http://www.signfiles.com/pdf-encryption/">PDF Encryptor</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/file-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Encryption</title>
		<link>http://www.signfiles.com/xml-encryption/</link>
		<comments>http://www.signfiles.com/xml-encryption/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:24:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=434</guid>
		<description><![CDATA[XML Encryptor allows you to encrypt XML files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of large number of corporate XML files rather than encrypting each one individually.
  
 Interoperability &#8211; Encrypted files produced with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>XML Encryptor </strong>allows you to encrypt XML files by using a digital certificate. Using this product you can quickly encrypt multiple files (bulk encryption) by selecting input and output directory. This is ideal for batch encryption of large number of corporate XML files rather than encrypting each one individually.</p>
<p style="text-align: justify;"><strong> </strong><strong> </strong></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-334" title="xml" src="http://www.signfiles.com/resources/xml.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; Encrypted files produced with this product may be verified using standard XML Decryptor products.</p>
<p style="text-align: justify;"><strong> </strong><strong> </strong></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; XML Encryptor is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p style="text-align: center;"><img class="size-full wp-image-436 aligncenter" title="XML Encryptor" src="http://www.signfiles.com/resources/XML-Encryptor.jpg" alt="" width="457" height="337" /></p>
<p><strong>Requirements:</strong></p>
<p>- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><strong> </strong></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>25 EUR</strong></span></p>
<p><span style="color: #800000;"> </span></p>
<ul>
<li><a href="http://www.signfiles.com/apps/XMLEncryptor.msi">Download XML Encryptor Demo</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
<li><a href="http://www.signfiles.com/contact/">Purchase XML Encryptor</a><a href="http://www.signfiles.com/contact.htm"></a></li>
</ul>
<p><strong> </strong></p>
<hr />
<h2>XML Decryptor</h2>
<p><strong>XML Decryptor </strong>lets you view XML files encrypted by <strong>XML Encryptor</strong> or other encryption software that uses digital certificates for encryption operation.</p>
<p style="text-align: center;"><img class="size-full wp-image-435 aligncenter" title="XML Decryptor" src="http://www.signfiles.com/resources/XML-Decryptor.jpg" alt="" width="426" height="324" /></p>
<p style="text-align: left;"> <strong>Requirements:</strong></p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><strong> </strong></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>FREE</strong></span><span style="color: #800000;"> </span></p>
<p><strong> </strong></p>
<ul>
<li><a href="http://www.signfiles.com/apps/XMLDecryptor.msi">Download XML Decryptor</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p><strong> </strong></p>
<p><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/xml-signer/">XML Signer</a><a href="http://www.ca-soft.com/XMLEncryption.htm"></a></li>
<li><a href="http://www.signfiles.com/pdf-signer/">PDF Signer</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/xml-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF Encryption</title>
		<link>http://www.signfiles.com/pdf-encryption/</link>
		<comments>http://www.signfiles.com/pdf-encryption/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:14:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=424</guid>
		<description><![CDATA[PDF Encryptor can be used to protect your PDF files with 128-bit strength using digital certificates or passwords, set all permissions (such as copying, editing, printing, selecting text and graphics, fill in etc), and prevent PDF files from being printed, changed or copied.


PDF Encryptor allows you to encrypt existing PDFs using digital certificates or passwords. [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>PDF Encryptor</strong> can be used to protect your PDF files with 128-bit strength using digital certificates or passwords, set all permissions (such as copying, editing, printing, selecting text and graphics, fill in etc), and prevent PDF files from being printed, changed or copied.</p>
<p><code><br />
</code></p>
<p><strong>PDF Encryptor</strong> allows you to encrypt existing PDFs using digital certificates or passwords. For example you can encrypt a PDF without to allow to print it. The button to print the file will be disabled in Acrobat Reader application, you also can encrypt a PDF allowing the user to read it only if he know the correct password.</p>
<p style="text-align: center;"><img class="size-full wp-image-425  alignnone" title="PDF Encryptor" src="http://www.signfiles.com/resources/PDF-Encryptor.jpg" alt="" width="457" height="513" /></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>Requirements:</strong></p>
<p style="text-align: justify;">
<p style="text-align: justify;">- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p style="text-align: justify;">- Optional, an X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p style="text-align: justify;">
<p style="text-align: justify;">- Windows XP or later</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>9 EUR (<span style="text-decoration: line-through;">15 EUR</span>)<br />
</strong></span></p>
<p><span style="color: #800000;"> </span></p>
<ul>
<li><a href="http://www.signfiles.com/apps/PDFEncryptor.msi">Download PDF Encryptor Demo</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p style="text-align: justify;">
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="3878978" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><strong><span style="color: #800000;">Buy online with PayPal</span></strong></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/pdf-signer/">PDF Signer</a><a href="http://www.signfiles.com/x509Generator.htm"></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdf-encryption/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Form Filler</title>
		<link>http://www.signfiles.com/html-form-filler/</link>
		<comments>http://www.signfiles.com/html-form-filler/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:03:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=415</guid>
		<description><![CDATA[HTML Form Filler is a free solution that automates the process of filling out the digital certificate enrollment web form.
If you don&#8217;t have time to set the HTML Form Filler up we are ready to help you. Based on HTML Form Filler we may customize this solution to filling out various enrollment forms. This customization [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>HTML Form Filler</strong> is a free solution that automates the process of filling out the digital certificate enrollment web form.</p>
<p style="text-align: justify;">If you don&#8217;t have time to set the HTML Form Filler up we are ready to help you. Based on HTML Form Filler we may customize this solution to filling out various enrollment forms. This customization will enable you to automate and speed up the process of form filling of any kind.</p>
<p style="text-align: center;"><img class="size-full wp-image-416 aligncenter" title="HTML Form Filler" src="http://www.signfiles.com/resources/HTML-Form-Filler.jpg" alt="" width="504" height="627" /></p>
<p style="text-align: left;"><strong> </strong></p>
<p style="text-align: left;"><strong>Requirements:</strong></p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><span style="color: #800000;"> </span></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>FREE</strong></span></p>
<p><span style="color: #800000;"> </span></p>
<ul>
<li><a href="http://www.signfiles.com/apps/HTMLFormFiller.msi">Download HTML Form Filler</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p><a href="http://ca-soft.com/contact.htm"></a></p>
<p style="text-align: left;"><strong> </strong></p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li><a href="http://www.signfiles.com/certificate-manager/">LDAP X509 Certificate Browser</a><a href="http://www.ca-soft.com/userEnroll.aspx"></a></li>
<li><a href="http://www.signfiles.com/x509-certificate-generator/">X509 Certificate Generator</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/html-form-filler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Certificate Manager</title>
		<link>http://www.signfiles.com/certificate-manager/</link>
		<comments>http://www.signfiles.com/certificate-manager/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:53:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=405</guid>
		<description><![CDATA[LDAP Certificate Browser (Certificate Manager) may be used to manage the X.509 certificates from your CA hierarchy. This tool allows you to obtain detailed information about user certificates stored on LDIF file. 
 
This tool works with LDIF files exported from Windows 2003 and Windows 2008 Certification Authority using ldifde –f switch (Active Directory). 
 
LDAP Certificate Browser was optimized [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>LDAP Certificate Browser</strong> (Certificate Manager) may be used to manage the X.509 certificates from your CA hierarchy. This tool allows you to obtain detailed information about user certificates stored on LDIF file. </p>
<p style="text-align: justify;"> </p>
<p style="text-align: justify;">This tool works with LDIF files exported from Windows 2003 and Windows 2008 Certification Authority using <em>ldifde –f</em> switch (Active Directory). </p>
<p style="text-align: justify;"> </p>
<p style="text-align: justify;">LDAP Certificate Browser was optimized to work with more than 5000 X.509 digital certificates. </p>
<p style="text-align: center;"><a href="http://www.signfiles.com/resources/Certificate-Manager.jpg" target="_blank"><img class="size-medium wp-image-406   aligncenter" title="Certificate Manager" src="http://www.signfiles.com/resources/Certificate-Manager-300x234.jpg" alt="" width="300" height="234" /></a> <strong> </strong> </p>
<p style="text-align: left;"><strong>Requirements:</strong> </p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a> </p>
<p>- Windows XP or later </p>
<p><span style="color: #800000;"> </span> </p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>45 EUR</strong></span> </p>
<p><span style="color: #800000;"> </span> </p>
<ul>
<li><a href="http://www.signfiles.com/apps/LDAPBrowser.msi">Download LDAP Certificate Browser Demo</a> (.NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
<li><a href="http://www.signfiles.com/contact/">Purchase LDAP Certificate Browser</a></li>
</ul>
<p style="text-align: left;"><strong> </strong> </p>
<p style="text-align: left;"><strong>Useful links:</strong> </p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/x509-certificate-generator/">X509 Certificate Generator</a><a href="http://www.ca-soft.com/LDAPCertificateBrowser.htm"></a></li>
<li>
<div style="text-align: justify;"><a href="http://www.signfiles.com/html-form-filler/">HTML Form Filler</a></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/certificate-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time Synchronizer</title>
		<link>http://www.signfiles.com/time-synchronizer/</link>
		<comments>http://www.signfiles.com/time-synchronizer/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:46:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=396</guid>
		<description><![CDATA[Time Synchronizer is a time client to synchronize the computer clock. The time client receives the curent time from a time server located in your local network or somewhere in the internet. 
 
The Simple Network Time Protocol (SNTP) is a protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks. SNTP uses UDP [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Time Synchronizer</strong> is a time client to synchronize the computer clock. The time client receives the curent time from a time server located in your local network or somewhere in the internet. </p>
<p style="text-align: justify;"> </p>
<p style="text-align: justify;">The <em>Simple Network Time Protocol</em> (SNTP) is a protocol for synchronizing the clocks of computer systems over packet-switched, variable-latency data networks. SNTP uses UDP port 123 as its transport layer. It is designed particularly to resist the effects of variable latency. SNTP uses Marzullo’s algorithm with the UTC time scale, including support for features such as leap seconds. </p>
<p> </p>
<p>This tool may be used to synchronize the clock for <a href="http://www.signfiles.com/timestamping/">TSA Authority</a>. </p>
<p style="text-align: center;"><strong><img class="size-full wp-image-397   aligncenter" title="Time Synchonizer" src="http://www.signfiles.com/resources/Time-Synchonizer.jpg" alt="" width="346" height="449" /></strong> </p>
<p style="text-align: justify;">
<p style="text-align: justify;"><strong>Requirements:</strong> </p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a> </p>
<p>- Windows XP or later </p>
<p><span style="color: #800000;"> </span> </p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>FREE</strong></span> </p>
<p><span style="color: #800000;"> </span> </p>
<ul>
<li><a href="http://www.signfiles.com/apps/TimeSyncronizer.msi">Download Time Synchronizer</a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p style="text-align: justify;">
<p style="text-align: left;"><strong> </strong></p>
<p style="text-align: left;"><strong>Useful links:</strong> </p>
<ul>
<li><a href="http://www.ca-soft.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/certificate-manager/">Certificate Manager</a></li>
<li>
<div style="text-align: justify;"><a href="http://www.signfiles.com/timestamping/">Time stamping Authority (TSA) </a></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/time-synchronizer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>P7S Signer</title>
		<link>http://www.signfiles.com/p7s-signer/</link>
		<comments>http://www.signfiles.com/p7s-signer/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 12:53:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=359</guid>
		<description><![CDATA[P7S Signer is a standards-based electronic signature solution. Signing electronic documents with P7S Signer will immediately reduce costs, increase security and help organizations comply with regulations. Electronic signatures are based on standard PKI technology, guaranteeing signer authenticity, data integrity and the non-repudiation of electronic documents.
Using P7S Signer you can quickly sign multiple files (any type [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>P7S Signer</strong> is a standards-based electronic signature solution. Signing electronic documents with P7S Signer will immediately reduce costs, increase security and help organizations comply with regulations. Electronic signatures are based on standard PKI technology, guaranteeing signer authenticity, data integrity and the non-repudiation of electronic documents.</p>
<p style="text-align: justify;">Using <strong>P7S Signer </strong>you can quickly sign multiple files (any type of files) by selecting input and output directory. This is ideal for bulk signing of large number of corporate files.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-369" title="p7s" src="http://www.signfiles.com/resources/p7s.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; The files digitally signed with <strong>P7S Signer</strong> has the p7s extension and is (mime-type) <em>application/pkcs7-signed-data</em> type. Details about the standard regarding the creation of such structures are published on <a href="http://www.ietf.org/rfc/rfc3369.txt" target="_blank">RFC 3369</a>, standard initiated by RSA Security Data Inc.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; P7S Signer is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-220" title="verification" src="http://www.signfiles.com/resources/verification.png" alt="" width="16" height="16" /> Standard Compliance</strong> &#8211; P7S Signer signatures are compatible with ETSI TS 101 733 Electronic Signature Formats (CAdES) and PKCS#7 &#8211; Cryptographic Message Syntax Standard.</p>
<p style="text-align: center;"><img class="size-full wp-image-982 aligncenter" title="P7S Signer" src="http://www.signfiles.com/resources/P7S-Signer1.jpg" alt="" width="457" height="243" /></p>
<p><strong>Requirements:</strong></p>
<p>- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><code><br />
</code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>25 EUR</strong></span></p>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/apps/P7SSignerDemo.msi">Download P7S Signer Demo</a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
<li><a href="http://www.signfiles.com/contact/">Purchase P7S Signer</a></li>
</ul>
<p><code><br />
</code></p>
<hr />
<h2><a id="p7sviewer" name="p7sviewer"></a>P7S Viewer</h2>
<p style="text-align: justify;">The digitally signed files using <strong>P7S or P7M</strong> format has the mime-type <em>application/pkcs7-signed-data type</em>. Details about the standard regarding the creation of such structures are published on <a href="http://www.ietf.org/rfc/rfc3369.txt" target="_blank">RFC 3369</a>, standard initiated by RSA Security Data Inc.</p>
<p style="text-align: justify;"><strong>P7S Viewer</strong> lets you view files signed by <strong>P7S Signer</strong> or other signature software.</p>
<p style="text-align: center;"><img class="size-full wp-image-983 aligncenter" title="P7S Viewer" src="http://www.signfiles.com/resources/P7S-Viewer1.jpg" alt="" width="422" height="349" /></p>
<p><strong>Requirements:</strong></p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><code><br />
</code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>15 EUR</strong></span></p>
<p><strong><img title="verification" src="http://www.signfiles.com/files/ro.png" alt="" width="16" height="16" /> </strong><em>Pentru utilizatorii din Romania, acest produs este disponibil gratuit <a href="http://www.alfasign.ro/index.php/resurse/download.html" target="_blank">aici</a></em><strong><br />
</strong></p>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/apps/P7SViewer.msi">Download P7S Viewer Demo</a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<table style="height: 105px;" border="1" cellspacing="1" cellpadding="5" width="551" bordercolor="#cccccc">
<tbody>
<tr>
<td width="191" height="30" align="center" valign="middle"><strong>Price</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with PayPal</strong></td>
<td width="191" height="30" align="center" valign="middle"><strong>Buy with credit card</strong></td>
</tr>
<tr>
<td width="70" height="51" align="center" valign="middle"><span style="color: #800000;"><strong>15 EUR</strong></span></td>
<td width="248" align="center">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="5220318" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /></p>
</form>
</td>
<td width="248" align="center"><a href="https://secure.avangate.com/order/checkout.php?PRODS=4552465&amp;QTY=1&amp;CART=2" target="_self"><img class="alignnone" src="http://www.signfiles.com/files/avangate.png" alt="" width="87" height="40" /></a></td>
</tr>
</tbody>
</table>
<p><code><br />
</code></p>
<p><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/file-encryption/">File Encryptor</a></li>
<li><a href="http://www.signfiles.com/timestamping/">Timestamping Authority (TSA) </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/p7s-signer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Signer</title>
		<link>http://www.signfiles.com/xml-signer/</link>
		<comments>http://www.signfiles.com/xml-signer/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 12:16:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=325</guid>
		<description><![CDATA[XML Signer main function is to sign XML documents (see: XML Digital Signature) using X.509 digital certificates. Using this product you can quickly sign multiple XML files (bulk sign) by selecting input and output directory. This is ideal for batch signing of large number of corporate XML documents rather than signing each one individually.


XML Signer [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>XML Signer</strong> main function is to sign XML documents (see: <a href="http://en.wikipedia.org/wiki/XML_Signature" target="_blank">XML Digital Signature</a>) using X.509 digital certificates. Using this product you can quickly sign multiple XML files (bulk sign) by selecting input and output directory. This is ideal for batch signing of large number of corporate XML documents rather than signing each one individually.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>XML Signer</strong> allows you to sign XML documents without any need to purchase additional software. This dramatically reduces the Total Cost of Ownership (TCO).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-334" title="xml" src="http://www.signfiles.com/resources/xml.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; Signatures produced with XML Signer can be verified using standard XML Viewer.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; XML Signer is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-220" title="verification" src="http://www.signfiles.com/resources/verification.png" alt="" width="16" height="16" /> Standard Compliance</strong> &#8211; XML Signer signatures are compatible with ETSI TS 101 903 XML Advanced Electronic Signatures (XAdES / AdES) and XMLDSig format.</p>
<p style="text-align: center;"><img class="size-full wp-image-1001   aligncenter" title="XML Signer" src="http://www.signfiles.com/resources/XML-Signer1.jpg" alt="" width="457" height="250" /></p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>Requirements:</strong></p>
<p>- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><code><br />
</code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>9 EUR </strong>(old price <strong><span style="text-decoration: line-through;">15 EUR</span></strong>)</span></p>
<p><span style="color: #800000;"><br />
</span></p>
<p><span style="color: #800000;"> </span></p>
<ul>
<li><a href="http://www.signfiles.com/apps/XMLSignerDemo.msi">Download XML Signer Demo 3.0</a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="KBEW235PZT2ES" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><strong><span style="color: #800000;">Buy online with PayPal</span></strong></p>
<p><strong> </strong></p>
<hr />
<h2>XML Signer Viewer</h2>
<p><strong> </strong></p>
<p><strong>XML Signer Viewer</strong> lets you view files signed by <strong>XML Signer</strong> or other signature software.</p>
<p style="text-align: center;"><img class="size-full wp-image-1002 aligncenter" title="XML Signer Viewer" src="http://www.signfiles.com/resources/XML-Signer-Viewer1.jpg" alt="" width="426" height="300" /></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>Requirements:</strong></p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><code><br />
</code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>FREE</strong></span><span style="color: #800000;"> </span></p>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/apps/XMLSignerViewer.msi">Download XML Viewer 3.0</a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<p><code><br />
</code></p>
<p><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li><a href="http://www.signfiles.com/xml-encryption/">XML Encryptor</a></li>
<li><a href="http://www.signfiles.com/timestamping/">Timestamping Authority (TSA) </a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/xml-signer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>X.509 Certificate Generator</title>
		<link>http://www.signfiles.com/x509-certificate-generator/</link>
		<comments>http://www.signfiles.com/x509-certificate-generator/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 11:41:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=289</guid>
		<description><![CDATA[The X.509 Certificate Generator is a multi purpose certificate utility. It can be used to generate X.509 certificates, export certificates in PFX format, preview certificates or change key usage extensions.

Certificates provide the foundation of a public key infrastructure (PKI). These are electronic credentials, issued by a certification authority (CA), that are associated with a public [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The <strong>X.509 Certificate Generator</strong> is a multi purpose certificate utility. It can be used to generate X.509 certificates, export certificates in PFX format, preview certificates or change key usage extensions.</p>
<p><code><br /></code></p>
<p style="text-align: justify;">Certificates provide the foundation of a public key infrastructure (PKI). These are electronic credentials, issued by a certification authority (CA), that are associated with a public and private key pair.</p>
<p><code><br /></code></p>
<p>In an X.509 version 3 digital certificate, the following important certificate extensions can exist:</p>
<p style="text-align: justify;"><strong>Key Usage</strong>. A CA, user, computer, network device, or service can have more than one certificate. The Key Usage extension defines the security services for which a certificate can be used. The options can be used in any combination and can include the following:</p>
<p style="text-align: justify;">-<em> Digital Signature</em>. The public key can be used to verify signatures. This key is also used for client authentication and data-origin validation.</p>
<p style="text-align: justify;">- <em>Non-Repudiation</em>. The public key can be used to validate the signer&#8217;s identity, preventing a signer from denying that he/she signed a package.</p>
<p style="text-align: justify;">- <em>Data Encipherment</em>. The public key can be used to directly encrypt data, rather than exchanging a symmetric key for data encryption.</p>
<p><code><br /></code></p>
<p style="text-align: justify;"><strong>Enhanced Key Usage</strong>. This extension indicates how a certificate&#8217;s public key can be used. The Enhanced Key Usage extension provides additional information beyond the general purposes defined in the Key Usage extension. For example, OIDs exist for <em>Client Authentication</em> (1.3.6.1.5.5.7.3.2), <em>Server Authentication</em> (1.3.6.1.5.5.7.3.1), and <em>Secure E-mail</em> (1.3.6.1.5.5.7.3.4). When a certificate is presented to an application, an application can require the presence of an Enhanced Key Usage OID specific to that application.</p>
<p style="text-align: center;"><img class="size-full wp-image-293 aligncenter" title="X509 Certificate Generator" src="http://www.signfiles.com/resources/X509-Certificate-Generator.jpg" alt="" width="422" height="529" /></p>
<p><code><br /></code></p>
<p><strong>Requirements:</strong></p>
<p>- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p>- Windows XP or later</p>
<p><code><br /></code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>25 EUR</strong></span></p>
<p><code><br /></code></p>
<ul>
<li><a href="http://www.signfiles.com/apps/X509CertificateGenerator.msi"><strong>Download X509 Certificate Generator Demo</strong></a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
</ul>
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="4523880" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><strong><span style="color: #800000;">Buy online with PayPal</span></strong></p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></li>
<li>
<a href="http://www.signfiles.com/timestamping/">Time stamping Authority (TSA) </a></li>
<li>
<a href="http://www.signfiles.com/manuals/ValidatingDigitalCertificatesInWindows.pdf" target="_blank">Validating digital certificates in Windows</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
<li><a href="http://www.signfiles.com/manuals/DigitalSignatureThunderbird.pdf" target="_blank">Adding digital signature on Mozilla Thunderbird emails</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/x509-certificate-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PDF Signer Server</title>
		<link>http://www.signfiles.com/pdf-signer-server/</link>
		<comments>http://www.signfiles.com/pdf-signer-server/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 15:42:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=230</guid>
		<description><![CDATA[The main function of PDF Signer Server is to sign PDF documents using X.509 digital certificates. Using this product you can quickly sign multiple PDF files (bulk sign) by selecting input and output directory. This is ideal for bulk signing of large number of corporate documents rather than signing each one individually.


PDF Signer Server allows [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.signfiles.com/resources/invoice_signing.png"></a>The main function of <strong>PDF Signer Server</strong> is to sign PDF documents using X.509 digital certificates. Using this product you can quickly sign multiple PDF files (bulk sign) by selecting input and output directory. This is ideal for bulk signing of large number of corporate documents rather than signing each one individually.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>PDF Signer Server</strong> allows you to sign PDF documents without any need to purchase full Adobe Acrobat license. This dramatically reduces the Total Cost of Ownership (TCO).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-220" title="verification" src="http://www.signfiles.com/resources/verification.png" alt="" width="16" height="16" /> Signature Verification</strong> &#8211; Verify digitial signatures within your PDFs by simply clicking them. The validation results are provided in both summary and detailed manner consistent with Adobe Reader 7.0+.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-219" title="appearance" src="http://www.signfiles.com/resources/appearance.png" alt="" width="16" height="16" /> Configurable Signature Appearance</strong> &#8211; PDF Signer Server provides a fully configurable appearance for its digital signatures. The positioning of the signature appearance is configurable, plus on which pages of the document it should appear (first page, last page or all pages).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-217" title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; Signatures produced with PDF Signer Server can be verified using standard Adobe Reader 7.0+</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; PDF Signer Server is completely PKI neutral and it will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-207" title="timestamping" src="http://www.signfiles.com/resources/timestamping.png" alt="" width="16" height="16" /> Timestamping</strong> &#8211; Like signatures, timestamps are easier to verify when they&#8217;re associated with a timestamp authority&#8217;s trusted certificate. Including a timestamp helps to prove that the document wasn&#8217;t changed after you had signed it and it reduces the chances of an invalid signature.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-211" title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /> Long-term validation purposes</strong> &#8211; Using our software you can sign and timestamp PDF documents for long-term validation purposes. PDF Signer Server supports advanced digital signatures which include embedded <strong>RFC 3161 compliant</strong> secure timestamps. Such signatures can be verified even after the signer&#8217;s certificate expires or is revoked.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-215" title="sha2" src="http://www.signfiles.com/resources/sha2.png" alt="" width="16" height="16" /> RSA 2048</strong> &#8211; Our software may sign PDF documents using <strong>RSA 2048 or higher</strong> key length according to ETSI TS 102 176-1 V2.0.0 (&#8220;ALGO Paper&#8221;).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /> PAdES standard</strong>  &#8211; PDF Signer Server is fully compatible with PAdES Part 2 (ETSI TS 102778-2).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><strong><img title="invoice_signing" src="http://www.signfiles.com/resources/invoice_signing.png" alt="" width="16" height="16" /> </strong>Invoice signing</strong> &#8211; PDF Signer Server allows organizations to digitally sign and process large numbers of invoices. EU VAT Directive requires that: <em>“Invoices sent by electronic means shall be accepted by Member States provided that the authenticity of the origin and integrity of the contents are guaranteed”</em>. The only standard and interoperable way of doing this is to use digital signatures and in general EU member states require that a qualified electronic signature is used to confirm the identity of the originator.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-205" title="certify" src="http://www.signfiles.com/resources/certify.gif" alt="" width="13" height="16" /> Certify your documents </strong>- When you certify a PDF, you indicate that you approve of its contents.</p>
<p style="text-align: center;"><img class="size-full wp-image-237 aligncenter" title="PDF Signer Server" src="http://www.signfiles.com/resources/PDFSignerServer.jpg" alt="" width="557" height="259" /></p>
<p style="text-align: justify;"><strong>Requirements:</strong></p>
<p style="text-align: justify;">- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p style="text-align: justify;">- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p style="text-align: justify;">- Windows XP or later</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>65</strong> <strong>EUR</strong></span><span style="color: #800000;"> (old price <strong><span style="text-decoration: line-through;">90 EUR</span></strong> - limited offer)</span></p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><span style="color: #800000;">What you will also get if you purchase PDF Signer Server</span></strong></p>
<p><span style="color: #800000;">- An X.509 Personal Digital Certificate with <strong>one year validity</strong></span></p>
<p><span style="color: #800000;"><strong>- </strong>Full access to the time stamping server at no extra cost</span></p>
<p><code><br />
</code></p>
<ul>
<li><a href="http://www.signfiles.com/apps/PDFSignerServerDemo.msi"><strong>Download PDF Signer Server Demo 4.0</strong></a> (requires .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a>)</li>
<li><a href="http://www.signfiles.com/manuals/PDFSignerServerManual.pdf" target="_blank">PDF Signer Server User Manual</a> <img class="alignnone size-full wp-image-217" title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" accept-charset="UNKNOWN" enctype="application/x-www-form-urlencoded" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="6330421" />
<input alt="PayPal - The safer, easier way to pay online." name="submit" src="https://www.paypal.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" /> <img src="https://www.paypal.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><strong><span style="color: #800000;">Buy online with PayPal</span></strong></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>More screenshots:</strong></p>
<p style="text-align: left;"><strong> </strong>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserver/' title='PDF Signer Server'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServer-150x150.jpg" class="attachment-thumbnail" alt="" title="PDF Signer Server" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserverfolders/' title='PDFSignerServerFolders'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerFolders-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerFolders" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserverposition/' title='PDFSignerServerPosition'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerPosition-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerPosition" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserverlocalization/' title='PDFSignerServerLocalization'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerLocalization-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerLocalization" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserversigning/' title='PDFSignerServerSigning'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerSigning-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerSigning" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerservertimestamping/' title='PDFSignerServerTimestamping'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerTimestamping-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerTimestamping" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserverlog/' title='PDFSignerServerLog'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerLog-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerLog" /></a>
<a href='http://www.signfiles.com/pdf-signer-server/pdfsignerserveremail/' title='PDFSignerServerEmail'><img width="100" height="100" src="http://www.signfiles.com/resources/PDFSignerServerEmail-150x150.jpg" class="attachment-thumbnail" alt="" title="PDFSignerServerEmail" /></a>
</p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li>
<div style="text-align: left;"><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></div>
</li>
<li>
<div style="text-align: left;"><a href="http://www.signfiles.com/timestamping/">Timestamping Authority (TSA)</a></div>
</li>
<li>
<div style="text-align: left;"><a href="http://www.signfiles.com/pdf-sign-library/">PDFSignDll SDK</a> (for developers)</div>
</li>
</ul>
<ul>
<li>
<div><a href="../manuals/ValidatingDigitalSignaturesInAdobe.pdf" target="_blank">Validating digital signatures in Adobe</a> <img title="pdf" src="../resources/pdf.png" alt="" width="16" height="16" /></div>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdf-signer-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PDF Signer</title>
		<link>http://www.signfiles.com/pdf-signer/</link>
		<comments>http://www.signfiles.com/pdf-signer/#comments</comments>
		<pubDate>Mon, 11 Jan 2010 13:27:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.signfiles.com/blog/?p=158</guid>
		<description><![CDATA[The main function of PDF Signer is to sign PDF documents using X.509 digital certificates. Using this product you can quickly sign multiple PDF files (bulk sign) by selecting input and output directory. This is ideal for bulk signing of a large number of corporate documents rather than signing each one individually.


PDF Signer allows you [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><a href="http://www.signfiles.com/resources/invoice_signing.png"></a>The main function of <strong>PDF Signer</strong> is to sign PDF documents using X.509 digital certificates. Using this product you can quickly sign multiple PDF files (bulk sign) by selecting input and output directory. This is ideal for bulk signing of a large number of corporate documents rather than signing each one individually.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>PDF Signer</strong> allows you to sign PDF documents without any need to purchase full Adobe Acrobat license. This dramatically reduces the Total Cost of Ownership (TCO).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-220" title="verification" src="http://www.signfiles.com/resources/verification.png" alt="" width="16" height="16" /> Signature Verification</strong> &#8211; Verify digitial signatures within your PDFs by simply clicking them. The validation results are provided in both summary and detailed manner consistent with Adobe Reader 7.0+.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-219" title="appearance" src="http://www.signfiles.com/resources/appearance.png" alt="" width="16" height="16" /> Configurable Signature Appearance</strong> &#8211; PDF Signer provides a fully configurable appearance for its digital signatures. The positioning of the signature appearance is configurable, plus on which pages of the document it should appear (first page, last page or all pages).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-217" title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /> Interoperability</strong> &#8211; Signatures produced with PDF Signer can be verified using standard Adobe Reader 7.0+</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-209" title="interoperability" src="http://www.signfiles.com/resources/interoperability.png" alt="" width="16" height="16" /> PKI Interoperability</strong> &#8211; PDF Signer is completely PKI neutral and will work with PKI components from any vendor (this includes CAs, certificates, CRLs, smartcards, etc.).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-207" title="timestamping" src="http://www.signfiles.com/resources/timestamping.png" alt="" width="16" height="16" /> Timestamping</strong> &#8211; Like signatures, timestamps are easier to verify when they&#8217;re associated with a timestamp authority&#8217;s trusted certificate. Including a timestamp helps to prove that the document wasn&#8217;t changed after you had signed it and it reduces the chances of an invalid signature.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-211" title="long_term" src="http://www.signfiles.com/resources/long_term.png" alt="" width="16" height="16" /> Long-term validation purposes</strong> &#8211; Using our software you can sign and timestamp PDF documents for long-term validation purposes. PDF Signer supports advanced digital signatures which include embedded <strong>RFC 3161 compliant</strong> secure timestamps. Such signatures can be verified even after the signer&#8217;s certificate expires or is revoked.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-215" title="sha2" src="http://www.signfiles.com/resources/sha2.png" alt="" width="16" height="16" /> RSA 2048</strong> &#8211; Our software may sign PDF documents using  <strong>RSA 2048 or higher</strong> key length according to ETSI TS 102 176-1 V2.0.0 (&#8220;ALGO Paper&#8221;).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /> PAdES standard</strong>  &#8211; PDF Signer is fully compatible with PAdES Part 2 (ETSI TS 102778-2).</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><strong><img title="invoice_signing" src="http://www.signfiles.com/resources/invoice_signing.png" alt="" width="16" height="16" /> </strong>Invoice signing</strong> &#8211; PDF Signer allows organizations to digitally sign and process large numbers of invoices. EU VAT Directive requires that: <em>“Invoices sent by electronic means shall be accepted by Member States provided that the authenticity of the origin and integrity of the contents are guaranteed”</em>. The only standard and interoperable way of doing this is to use digital signatures and in general EU member states require that a qualified electronic signature is used to confirm the identity of the originator.</p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong><img class="alignnone size-full wp-image-205" title="certify" src="http://www.signfiles.com/resources/certify.gif" alt="" width="13" height="16" /> Certify your documents </strong>- When you certify a PDF, you indicate that you approve of its contents.</p>
<p style="text-align: center;"><img class="alignnone size-full wp-image-1165" title="PDFSigner5.5" src="http://www.signfiles.com/resources/PDFSigner5.5.jpg" alt="" width="462" height="659" /></p>
<p><code><br />
</code></p>
<p style="text-align: justify;"><strong>Requirements:</strong></p>
<p style="text-align: justify;">- An X.509 digital certificate (obtain one from <a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">here</a>)</p>
<p style="text-align: justify;">- .NET Framework 2.0 available <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0856EACB-4362-4B0D-8EDD-AAB15C5E04F5&amp;displaylang=en" target="_blank">here</a></p>
<p style="text-align: justify;">- Windows XP or later</p>
<p><code><br />
</code></p>
<p><img class="alignnone size-full wp-image-124" title="arrow" src="http://www.signfiles.com/resources/arrow.gif" alt="" width="8" height="11" /> <span style="color: #800000;">Product price: <strong>19 EUR </strong></span><span style="color: #800000;">(old price <strong><span style="text-decoration: line-through;">45 EUR</span></strong>)</span></p>
<p><span style="color: #800000;"><br />
</span></p>
<p><span style="color: #800000;"><strong> </strong></span></p>
<p><strong><span style="color: #800000;">What you will also get if you purchase PDF Signer</span></strong></p>
<p><span style="color: #800000;">- An X.509 Personal Digital Certificate with <strong>one year validity</strong></span></p>
<p><span style="color: #800000;"><strong>- </strong>Full access to the time stamping server at no extra cost</span></p>
<p><span style="color: #800000;"><br />
</span></p>
<p><span style="color: #800000;"> </span></p>
<div style="text-align: justify;">
<ul>
<li><a href="http://www.signfiles.com/apps/PDFSignerDemo.msi"><strong>Download PDF Signer Demo 5.5</strong></a> (latest version: 5.5.6 updated on 09.08.2011)<span style="color: #800000;"><br />
</span></li>
</ul>
</div>
<h3 style="text-align: center;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input name="cmd" type="hidden" value="_s-xclick" />
<input name="hosted_button_id" type="hidden" value="AQ8B45MCXYRGE" />
<input alt="PayPal — The safer, easier way to pay online." name="submit" src="https://www.paypalobjects.com/en_US/i/btn/btn_buynowCC_LG_global.gif" type="image" />
<img src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" border="0" alt="" width="1" height="1" /><br />
</form>
</h3>
<p style="text-align: center;"><span style="color: #000000;">Buy online with PayPal</span></p>
<p style="text-align: center;"><strong><span style="color: #800000;"><a onclick="_gaq.push(['_link', this.href]); return false;" href="https://secure.avangate.com/order/checkout.php?PRODS=4533582&amp;QTY=1&amp;CART=2">Use a different payment method (Credit Card, Bank/Wire Transfer, etc.)</a><br />
</span></strong></p>
<p><code><br />
</code></p>
<p style="text-align: left;"><strong>Useful links:</strong></p>
<ul>
<li>
<div style="text-align: left;"><a href="https://ca.signfiles.com/PDFSign.aspx" target="_blank">Online PDF Signer</a></div>
</li>
<li>
<div style="text-align: left;"><a href="http://www.signfiles.com/pdf-sign-library/">PDFSignDll SDK</a> (for developers)</div>
</li>
<li>
<div style="text-align: left;"><a href="https://ca.signfiles.com/userEnroll.aspx" target="_blank">Obtain a free digital certificate</a></div>
</li>
<li>
<div style="text-align: left;"><a href="http://www.signfiles.com/timestamping/">Timestamping Authority (TSA)</a></div>
</li>
</ul>
<p style="text-align: left;">
<ul>
<li><a href="http://www.signfiles.com/manuals/ValidatingDigitalSignaturesInAdobe.pdf" target="_blank">Validating digital signatures in Adobe</a> <img title="pdf" src="http://www.signfiles.com/resources/pdf.png" alt="" width="16" height="16" /></li>
</ul>
<p><code><br />
</code></p>
<div id="fb-root"></div>
<p><script src="http://connect.facebook.net/en_US/all.js#appId=APP_ID&amp;xfbml=1"></script><fb:comments href="http://www.signfiles.com/pdf-signer/" num_posts="5" width=600"></fb:comments></p>
]]></content:encoded>
			<wfw:commentRss>http://www.signfiles.com/pdf-signer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

