<?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 Signing Archives - Netrust</title>
	<atom:link href="https://www.netrust.net/blog/category/digital-signing/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.netrust.net/blog/category/digital-signing/</link>
	<description>Netrust</description>
	<lastBuildDate>Thu, 26 Feb 2026 04:01:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://www.netrust.net/wp-content/uploads/2021/05/Netrust-favicon-01.png</url>
	<title>Digital Signing Archives - Netrust</title>
	<link>https://www.netrust.net/blog/category/digital-signing/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Explaining Encryption through real world examples</title>
		<link>https://www.netrust.net/blog/explaining-encryption-through-real-world-examples/</link>
		
		<dc:creator><![CDATA[Lai Yong Xing]]></dc:creator>
		<pubDate>Thu, 26 Feb 2026 02:00:18 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=12665</guid>

					<description><![CDATA[<p>Are you trying to implement or are you trying to understand Encryption from scratch? Or does your brain feel like scrambled eggs after trying to understand how S-boxes work in the AES algorithm with GCM mode? In this article, we aim to explain Encryption by using real life objects and examples to bridge the concept to reality. Let’s start with a</p>
<p>The post <a href="https://www.netrust.net/blog/explaining-encryption-through-real-world-examples/" data-wpel-link="internal">Explaining Encryption through real world examples</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Are you trying to implement or are you trying to understand Encryption from scratch? Or does your brain feel like scrambled eggs after trying to understand how S-boxes work in the AES algorithm with GCM mode? In this article, we aim to explain Encryption by using real life objects and examples to bridge the concept to reality.</p>
<p>Let’s start with a primer video, where we will use letter wax seals to demonstrate what a digital signature is.</p>
<p><iframe title="Explaining Digital Signatures Through Real World Examples" width="1140" height="641" src="https://www.youtube.com/embed/Bu3PF4Wxsjc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>Now that you know what encryption is, let’s fill in the remaining information you will need to know to work with it. Don’t worry if the rest of the article seems technical, you just need to know enough to select the most suitable components for your use case.</p>
<h2>Use Cases and Algorithms</h2>
<p>There are two types of encryption algorithms, symmetric and asymmetric. For ease of understanding, symmetric algorithms use the same key for encryption and decryption, whereas asymmetric algorithms use a key pair instead. A key pair (consisting of a “private key” and “public key”) can be imagined as a digital conjoined twin, tightly bound to each other at birth, with one half used for encryption and the other half for decryption.</p>
<p>They are suitable for different purposes. When considering encryption, it is recommended to start with a symmetric algorithm as the base. They are fast and can handle any amount of data.</p>
<p><img fetchpriority="high" decoding="async" class="alignnone size-full wp-image-12668" src="https://www.netrust.net/wp-content/uploads/2026/02/Symmtric-Key-Data.png" alt="" width="441" height="189" srcset="https://www.netrust.net/wp-content/uploads/2026/02/Symmtric-Key-Data.png 441w, https://www.netrust.net/wp-content/uploads/2026/02/Symmtric-Key-Data-300x129.png 300w" sizes="(max-width: 441px) 100vw, 441px" /></p>
<p>This approach is typically enough for most use cases where the intention is to encrypt data to transfer to the archive, or to another internal application. It is expected that the internal application will have the means to use the same key or a securely shared copy of it to decrypt the data.</p>
<p>For transfer to external parties, the same approach could technically work so long as the key can be securely and secretly shared with the external party. It would not do, for example, to send the key via email. Alternatively, asymmetric algorithms would serve well in this scenario.</p>
<p><strong><img decoding="async" class="alignnone size-full wp-image-12669" src="https://www.netrust.net/wp-content/uploads/2026/02/Encrytion-Decryption-Key-Data.png" alt="" width="489" height="446" srcset="https://www.netrust.net/wp-content/uploads/2026/02/Encrytion-Decryption-Key-Data.png 489w, https://www.netrust.net/wp-content/uploads/2026/02/Encrytion-Decryption-Key-Data-300x274.png 300w" sizes="(max-width: 489px) 100vw, 489px" /></strong></p>
<p>This approach covers the remaining use cases in which encrypted data needs to be sent out. You will need to get hold of the recipient’s public key or digital certificate if they have it. Yes, it is the same digital certificate used for digital signatures.</p>
<p>Now, which actual algorithm do we go with? Typical industry standard is to use the best open standard algorithm at the time, which is AES for symmetric and RSA/ECC for asymmetric at the point of writing. These algorithms have been thoroughly analysed by the community. Do avoid the trap of thinking of using an obscure or custom algorithm, they add risk without necessarily adding strength to the equation.</p>
<p>Also, ensure that some crypto mode is used together with the symmetric algorithm. The strongest available today unencumbered by patents, is GCM. If some of the legacy components in the ecosystem are unable to handle that, CBC is a good fallback. Do avoid ECB as that is effectively running without a mode.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-12670" src="https://www.netrust.net/wp-content/uploads/2026/02/ECB-Image.png" alt="" width="602" height="290" srcset="https://www.netrust.net/wp-content/uploads/2026/02/ECB-Image.png 602w, https://www.netrust.net/wp-content/uploads/2026/02/ECB-Image-300x145.png 300w" sizes="auto, (max-width: 602px) 100vw, 602px" /></p>
<p>The reason is best explained by this image from Wikipedia <sup>[1]</sup>. Modes add some jitter into the process so that each time the encryption process is run, different results are produced with the same source data. Yet it is still able to decrypt back to the original source data.</p>
<h2>Key Generation and Storage</h2>
<p>We have talked about the keys used in symmetric algorithms above. Needless to say, it should be securely generated using a secure random byte generator and access to it should be restricted except for the application doing the cryptographic processes.</p>
<p>The keys need to be rolled over periodically as well. This means old keys are archived (not deleted!) and new keys generated to use on future data encryption. As the encrypted data needs to be accessible in the future, the old keys need to be stored for as long as the data remains in the picture. In some use cases we have seen, this could be 7 years, or as long as 99 years.</p>
<p>For the best security it is recommended to generate and retain the key within a <a href="https://www.netrust.net/blog/what-is-a-hardware-security-module-hsm/" data-wpel-link="internal">Hardware Security Module (HSM)</a> as it provides both the generation and storage facilities in one hardware package. There are also means to securely backup and restore the keys in the event of disaster recovery or migration to other environments. If your application is on Cloud, there are HSM equivalents or Key Management Services (KMS) which serve a similar role on the major Cloud providers.</p>
<p>For asymmetric algorithms this is not an issue, as public keys or digital certificates are designed to be shared to the party that wishes to encrypt data for you.</p>
<h2>Implementation and Applications</h2>
<p>Theory is all fine and dandy, but the devil is in the (implementation) details. Cryptography is one of those things where one critical misstep could render the process meaningless. For example, if the encryption key is sent out via an insecure process, it compromises all past and future data encrypted using that particular key.</p>
<p>There are off the shelf applications that can handle the encryption process, but these typically only cover a specific use case or ecosystem. One example is email encryption (<a href="https://www.netrust.net/blog/secure-email-with-s-mime/" data-wpel-link="internal">S/MIME</a>) through Microsoft Outlook.</p>
<p>For other cases, especially if encryption is required for your application’s data, a custom solution should be expected. This may use an existing cryptographic API product or library, or may be made to measure entirely.</p>
<h2>Conclusion</h2>
<p>There is a lot more to know under the hood, but contrary to common belief, you do not need to know everything to work with data encryption. What we have laid out above should be sufficient to get you started, though it is strongly recommended to seek a consultation to determine the best solution for your requirements. We are also including answers to some frequently asked questions below that we have encountered before.</p>
<p><a href="https://www.linkedin.com/company/netrust-pte-ltd/" data-wpel-link="external" rel="external noopener noreferrer">Netrust</a> has been a trusted cybersecurity partner and solutions provider since 1997. We have decades of experience in end-to-end cryptographic processes, including encryption and decryption. Every bit of experience we have builds up to the megabytes of confidence you can place in us. <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">Contact us</a> today for a consultation on your encryption needs.</p>
<h2></h2>
<p>&nbsp;</p>
<h2>FAQs</h2>
<ul>
<li>Can I encrypt just a section of the data?</li>
</ul>
<p>Certainly. Off the shelf applications would not support this, though so the custom implementation would have to be able to cut, encrypt and piece the data blocks back together as required.</p>
<ul>
<li>I have already encrypted a file, but then I lost my key/token! What should I do?</li>
</ul>
<p>The first step is to determine how the key/token was lost. If there are reasonable grounds to believe it has been compromised, you will need to assume that all data encrypted with the lost key is compromised and respond in accordance with your country&#8217;s data privacy guidelines, such as the PDPA.</p>
<p>If the key is not compromised, you can look into restoring the key from backup. This should already be defined in the disaster recovery procedures before the system goes live. If the keys are not backed up or cannot be restored, then access to the data is effectively lost.</p>
<p>There is no convenient backdoor to restore access, this is exactly how cryptographic systems are intended to work.</p>
<ul>
<li>Can someone else see the data?</li>
</ul>
<p>No, encrypted data is effectively scrambled. The only way anyone can see the original data is if they know the correct algorithm, modes, and processes that the file is encrypted through, and have the correct key to run said decryption process.</p>
<ul>
<li>I am sending the data to an external party; how can they confirm that this data came from me?</li>
</ul>
<p>Encryption does not carry the sender’s identity. To achieve this, the data can be digitally signed first before it is encrypted and sent. The digital signature (Read up more on our article on <a href="https://www.netrust.net/blog/explaining-digital-signatures-through-real-world-objects/" data-wpel-link="internal">Explaining Digital Signatures through real world examples</a>) will carry the sender’s identity.</p>
<ul>
<li>Can digital signatures and encryption be used together?</li>
</ul>
<p>Certainly, they are not mutually exclusive.</p>
<ul>
<li>Can someone else tamper with the data?</li>
</ul>
<p>It is not possible to edit the data without corrupting the original. What that means is once edited, decryption can still be attempted, but the original data cannot be reconstructed. What is likely to emerge would be gibberish data.</p>
<p>&nbsp;</p>
<p>Reference table on the differences between Digital Signatures and Encryption.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-12671" src="https://www.netrust.net/wp-content/uploads/2026/02/Digital-Signatures-and-Encryption-1024x536.png" alt="" width="1024" height="536" srcset="https://www.netrust.net/wp-content/uploads/2026/02/Digital-Signatures-and-Encryption-1024x536.png 1024w, https://www.netrust.net/wp-content/uploads/2026/02/Digital-Signatures-and-Encryption-300x157.png 300w, https://www.netrust.net/wp-content/uploads/2026/02/Digital-Signatures-and-Encryption-768x402.png 768w, https://www.netrust.net/wp-content/uploads/2026/02/Digital-Signatures-and-Encryption.png 1350w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<pre>[1] Image source: https://en.wikipedia.org/wiki/Block_cipher_mode_of_operation#ECB</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p class="ai-optimize-26">Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>The post <a href="https://www.netrust.net/blog/explaining-encryption-through-real-world-examples/" data-wpel-link="internal">Explaining Encryption through real world examples</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Explaining Digital Signatures Through Real World Objects</title>
		<link>https://www.netrust.net/blog/explaining-digital-signatures-through-real-world-objects/</link>
		
		<dc:creator><![CDATA[Lai Yong Xing]]></dc:creator>
		<pubDate>Thu, 29 Jan 2026 03:00:20 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=12567</guid>

					<description><![CDATA[<p>Are you trying to work with or are you trying to understand Digital Signatures from scratch? Or have you attended meetings with vendors where jargon and acronyms like PKI, X509, RSA/ECDSA get thrown around like chaff and cause your brain to overheat? In this article, we aim to explain Digital Signatures by using real life objects and examples to bridge the</p>
<p>The post <a href="https://www.netrust.net/blog/explaining-digital-signatures-through-real-world-objects/" data-wpel-link="internal">Explaining Digital Signatures Through Real World Objects</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Are you trying to work with or are you trying to understand Digital Signatures from scratch? Or have you attended meetings with vendors where jargon and acronyms like PKI, X509, RSA/ECDSA get thrown around like chaff and cause your brain to overheat? In this article, we aim to explain Digital Signatures by using real life objects and examples to bridge the concept to reality.</p>
<p>Let’s start with a primer video, where we will use letter wax seals to demonstrate what a digital signature is.</p>
<p><iframe loading="lazy" title="Explaining Digital Signatures Through Real World Examples" width="1140" height="641" src="https://www.youtube.com/embed/Bu3PF4Wxsjc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></p>
<p>Now that you know what a digital signature is, let’s fill in the remaining information you will need to know to work with it.</p>
<h5>Use Cases</h5>
<p>In our experience, most use cases revolve around document agreements and thus PDF signing. In fact, digital signatures can be regarded as the next evolutionary step up from electronic signatures, which itself has evolved from handwritten signatures. Given the digital nature, it is more versatile and can protect not only documents, but also other use cases such as signing non-document data or protecting data for archival.</p>
<p>For document agreements, digital signatures signed using digital certificates from Netrust <sup>[1]</sup> enjoy Legal Presumption under the <a href="https://www.netrust.net/blog/understanding-the-legal-framework-of-electronic-signing-in-singapore/" data-wpel-link="internal">Electronic Transactions Act</a>. Simply speaking, documents with valid Netrust signatures will be accepted as evidence in the court of law without unnecessary scrutiny.</p>
<h5>Standards</h5>
<p>The process of creating a digital signature follows standards, the prevalent standard now being PAdES for PDF signatures. For non-PDF files, the CAdES standard can be applied. When engaging with the vendors, it would be best to put compliance with standards as one of the requirements. This also helps prevent vendor lock-in.</p>
<h5>Applications</h5>
<p>As the technology and processes are already mature, digital signatures can be easily created with off the shelf applications. For small amounts or ad hoc signatures, Adobe Reader is readily available. You will however, have to get your own <a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal">digital certificate</a> that proves your identity. If you have a Singpass account, you can make use of our <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal">nSignSG</a> service to utilise Sign with Singpass, which already comes with a digital certificate <sup>[2]</sup> with your identity as well.</p>
<p>For larger amounts of signatures or if you desire a systematic way of signing and verification, there are workflow solutions such as <a href="https://www.netrust.net/digital-signing/nsignhub/" data-wpel-link="internal">nSignHub</a> or backend applications like <a href="https://www.netrust.net/digital-signing/nsigncore/" data-wpel-link="internal">nSignCore</a> to fulfil the requirements. For these, it is best to seek a consultation to work out which solution is a better fit for your requirements.</p>
<h5>Signature Verification</h5>
<p>As a user, when you receive a digitally signed PDF file, it is important to verify the signature. To do so, utilise PDF applications such as Adobe Reader. When verified, said applications will display the results prominently. Do be wary of applications that display PDF content without verification. Typically, if no results are displayed, no verification is done. For more details, you may refer to <a href="https://www.netrust.net/blog/securing-pdfs-with-digital-signatures/" data-wpel-link="internal">this article,</a> which includes detailed examples.</p>
<h5>Data Archival</h5>
<p>Finally, the digitally signed PDF file needs to be stored securely until it is called upon or the agreement lapses. Conceptually, this is identical to storing signed document papers, except that the ‘digital ink’ doesn’t fade. Consult your organisation’s data retention policies for guidelines.</p>
<h5>Conclusion</h5>
<p>There is a lot more to know under the hood, but contrary to common belief, you do not need to know everything to work with digital signatures. What we have outlined above covers the basics you will need as a user or when interacting with vendors. If an application is required, it is prudent to involve technical experts to ensure the system and processes are watertight.</p>
<p><strong>To find out more about Digital Signatures or to try some hands-on activities, you can reach out to us to organize a session of <a href="https://www.netrust.net/digital-signing/101-workshop/" data-wpel-link="internal">Digital Signing 101</a> Workshop. No cost, no obligations! Just knowledge sharing.</strong></p>
<p>&nbsp;</p>
<p>We are also including the answers to some frequently asked questions below that we have encountered before. Check them out.</p>
<h6><span style="text-decoration: underline;">FAQs</span></h6>
<ul>
<li>Can I sign just a section of the file?</li>
</ul>
<p>This is not possible for PDF signing; digital signatures are applied to the whole document. You can simulate the intent by having certain signers sign at the end of sections instead of at the end of the document.</p>
<ul>
<li>I need to make changes after the first signature. How can I do it?</li>
</ul>
<p>This requires some preplanning. This scenario is typically only required when the next signer needs to put the current date on the form, as compared to the concept of really ‘editing’ the document, which should be finalised before any party signs the document.</p>
<p>First, you must ensure that the fields are not locked after the first signature. This typically means certain settings need to be done depending on which application is used to create the digital signature. Then, changes can still be made on the fields as required.</p>
<p>During this stage, any changes made are reflected and past signed versions can be previewed through Adobe Reader. Here are some examples of how the process will look.</p>
<p><span style="text-decoration: underline;"><strong>With first signature only: </strong></span></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-12573" src="https://www.netrust.net/wp-content/uploads/2026/01/with-first-signature-only.png" alt="" width="602" height="224" srcset="https://www.netrust.net/wp-content/uploads/2026/01/with-first-signature-only.png 602w, https://www.netrust.net/wp-content/uploads/2026/01/with-first-signature-only-300x112.png 300w" sizes="auto, (max-width: 602px) 100vw, 602px" /></p>
<p><span style="text-decoration: underline;"><strong>With changes applied:</strong></span></p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-12592 size-large" src="https://www.netrust.net/wp-content/uploads/2026/01/Digital-Signing-with-changes-applied-1024x284.png" alt="" width="1024" height="284" srcset="https://www.netrust.net/wp-content/uploads/2026/01/Digital-Signing-with-changes-applied-1024x284.png 1024w, https://www.netrust.net/wp-content/uploads/2026/01/Digital-Signing-with-changes-applied-300x83.png 300w, https://www.netrust.net/wp-content/uploads/2026/01/Digital-Signing-with-changes-applied-768x213.png 768w, https://www.netrust.net/wp-content/uploads/2026/01/Digital-Signing-with-changes-applied.png 1379w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p><span style="text-decoration: underline;"><strong>With second signature applied: </strong></span></p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-12571" src="https://www.netrust.net/wp-content/uploads/2026/01/with-second-signature-applied.png" alt="" width="602" height="268" srcset="https://www.netrust.net/wp-content/uploads/2026/01/with-second-signature-applied.png 602w, https://www.netrust.net/wp-content/uploads/2026/01/with-second-signature-applied-300x134.png 300w" sizes="auto, (max-width: 602px) 100vw, 602px" /></p>
<ul>
<li>How can I protect the changes that I have made?</li>
</ul>
<p>Apply another digital signature on it. Typically, a digital signature should be the last action taken on the file, and it should also lock all fields to prevent further changes afterwards.</p>
<ul>
<li>My company’s processes require the signer to sign on every page as an acknowledgement. Can this be done?</li>
</ul>
<p>Technically, yes. But it is not recommended as every digital signature covers the entire document and comes with its own size overhead. This will bloat up the file size unnecessarily.</p>
<p>It is typically recommended to advise the signer to review the document in its entirety before signing. Alternatively, an electronic signature can be placed on each page to represent the same acknowledgement.</p>
<ul>
<li>I have already signed a file, but then I lost my key/token! What should I do?</li>
</ul>
<p>Well, the good news is the signing process typically embeds your digital certificate (Without the key) into the digital signature, thus ensuring that anyone can verify the signature. So, this does not affect any of the files you have already signed.</p>
<p>However, the bad news is, you will not be able to sign any more files since the key/token is lost. You should also immediately contact the certificate authority to report that this is lost so that they can revoke the certificate to prevent misuse and reissue you a new digital certificate.</p>
<ul>
<li>How do I verify a digital signature?</li>
</ul>
<p>PDF applications like Adobe Reader can be used, it will automatically verify the signature(s) when opening the file. For applications, they can integrate with products which provide an API to verify digital signatures such as <a href="https://www.netrust.net/digital-signing/nsigncore/" data-wpel-link="internal">nSignCore</a>.</p>
<ul>
<li>The digital signature is valid. But how do I know I can trust the person/organisation who signed the file?</li>
</ul>
<p>First, you must be aware of where the document originates from. If the document came from an organisation, the identity in the signature should be from the organisation or a member of the organisation.</p>
<p>The certificate authority is required to verify the applicant’s identity, including whether they are an authorised staff member from the organisation, before issuing the digital certificate which is signed with a digital signature.</p>
<p>If in doubt, contact the person or organisation to clarify.</p>
<ul>
<li>Can someone else see the document content?</li>
</ul>
<p class="zw-line-content"><span class="zw-portion zw-text-portion" data-text-len="95">Yes, digital signatures does not hide the document content. You can explore encryption (Read up more on our article on <a href="https://www.netrust.net/blog/explaining-encryption-through-real-world-examples/" data-wpel-link="internal">Explaining Encryption through real world examples</a>) or utilise password protection measures to fulfil that requirement. </span></p>
<ul>
<li>Can digital signatures and encryption be used together?</li>
</ul>
<p>Certainly, they are not mutually exclusive.</p>
<ul>
<li>Can someone else tamper with the document content?</li>
</ul>
<p>It is not possible to edit the document data without breaking the digital signature.</p>
<ul>
<li>Can someone else reproduce my digital signature after tampering with the document content?</li>
</ul>
<p>It is not possible to do that unless they can access the key that comes with your digital certificate. Hence, it is important keep your key/token securely.</p>
<ul>
<li>Can I know what has been changed, or revert the document back to the original state?</li>
</ul>
<p>Digital signatures are designed to flag out tampering, but it is not possible to highlight or revert the changes. Therefore, it is still important to retain a copy of the digitally signed document so that a pristine copy is available when required.</p>
<p><span class="zw-portion zw-text-portion" data-text-len="77">Reference table on the differences between Digital Signatures and Encryption.</span><span class="EOP-readonly EOP"> </span></p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-12691" src="https://www.netrust.net/wp-content/uploads/2026/01/Reference-Table-between-Digital-Signatures-and-Encryption-1024x538.png" alt="" width="1024" height="538" srcset="https://www.netrust.net/wp-content/uploads/2026/01/Reference-Table-between-Digital-Signatures-and-Encryption-1024x538.png 1024w, https://www.netrust.net/wp-content/uploads/2026/01/Reference-Table-between-Digital-Signatures-and-Encryption-300x158.png 300w, https://www.netrust.net/wp-content/uploads/2026/01/Reference-Table-between-Digital-Signatures-and-Encryption-768x403.png 768w, https://www.netrust.net/wp-content/uploads/2026/01/Reference-Table-between-Digital-Signatures-and-Encryption.png 1203w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<pre>[1] Other than Netrust, signatures signed using Sign with Singpass also enjoy legal presumption. Information is accurate at time of publish.

[2] Certificate is issued from Govtech Certificate Authority upon first attempt to sign using Sign with Singpass.</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p class="ai-optimize-26">Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>The post <a href="https://www.netrust.net/blog/explaining-digital-signatures-through-real-world-objects/" data-wpel-link="internal">Explaining Digital Signatures Through Real World Objects</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Understanding the Importance of Digital Signatures in Modern Business Transactions</title>
		<link>https://www.netrust.net/blog/understanding-the-importance-of-digital-signatures-in-modern-business-transactions/</link>
		
		<dc:creator><![CDATA[Kean Liang Chong]]></dc:creator>
		<pubDate>Wed, 26 Feb 2025 01:30:52 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=11490</guid>

					<description><![CDATA[<p>Digital signatures are a fundamental part of modern transactions in today&#8217;s fast-paced world, where efficiency and security are everything. They streamline company processes, from signing contracts to approving financial documents, making them faster, more secure, and more transparent. So, what makes digital signatures so important, and how do they benefit the business? Let’s break it down. What is a Digital Signature?</p>
<p>The post <a href="https://www.netrust.net/blog/understanding-the-importance-of-digital-signatures-in-modern-business-transactions/" data-wpel-link="internal">Understanding the Importance of Digital Signatures in Modern Business Transactions</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>Digital signatures are a fundamental part of modern transactions in today&#8217;s fast-paced world, where efficiency and security are everything. They streamline company processes, from signing contracts to approving financial documents, making them faster, more secure, and more transparent. So, what makes digital signatures so important, and how do they benefit the business? Let’s break it down.<br />
<strong><u><br />
What is a Digital Signature?</u></strong><br />
Think about the common situation of affixing your signature to a physical contract. Digital signatures are the same; they show your consent and everything is done online. A digital signature does not use an actual handwritten signature but uses a complex encryption technique that can verify the identity of the signer and the authenticity and integrity of the document.</p>
<h6><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11495" src="https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging.jpg" alt="Digital Signing Document Siging Signature" width="500" height="334" srcset="https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging.jpg 500w, https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging-300x200.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></h6>
<p><strong>&#8211; Enhanced Security</strong><br />
Documents that are signed by digital signatures are easily detected if there is any alteration or amendment after the signing. This allows businesses to verify that their document or agreements received from others are legitimate and haven&#8217;t been altered</p>
<p><strong>&#8211; Legal Validity</strong><br />
Today many countries are starting to recognise digital signatures as they carry a greater weight than traditional signatures. Digital signatures provide a layer of security and prove the authenticity and integrity of a transaction allowing businesses to have confidence in what they are dealing with for the documents that with digital signatures in place.</p>
<p><strong>&#8211; Faster processes</strong><br />
Using digital signatures to sign a document, a signer can just simply sign the document with a few clicks. This improves the speed of processes like vendor agreement, onboarding employees and contract signing which allow your business to close deals faster and with less hassle.</p>
<p><strong>&#8211; Cost Savings</strong><br />
Since the digital signature allows you to sign a document digitally, this means there is no need to spend on paper, printing and postage. The company can save on office supplies and reduce the need for physical storage, which also cuts down on the expenses for retrieving and archiving documents.</p>
<p><strong>&#8211; Simplifies Remote Work and Global Transactions</strong><br />
The digital signature allows documents to be signed from everywhere virtually. Whether your customer or client is across town or halfway around the world. You can also finalize the deals without needing to be in the same room or even the same time zone.</p>
<h6><img loading="lazy" decoding="async" class="alignnone size-full wp-image-11496" src="https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging-Signature.jpg" alt="Digital Signing Document Siging Signature" width="500" height="264" srcset="https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging-Signature.jpg 500w, https://www.netrust.net/wp-content/uploads/2025/02/Digital-Signing-Document-Siging-Signature-300x158.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></h6>
<p>Some businesses increasingly using digital signatures to streamline workflows, improve security and improve customer experience as below:</p>
<p><strong>&#8211; Sales Contacts</strong><br />
In the world of sales, time is money. Delaying in contact signing means there is a chance to miss the opportunities or slow revenue. Sales teams can send contacts and proposals to clients. Clients can review the document, sign and return the document in a few minutes which helps sales teams secure the commitment and move on to the next opportunity</p>
<p><strong>&#8211; Healthcare Forms</strong><br />
Hospitals, clinics, and other healthcare facilities are bound by regulations that require patient consent and documentation for treatments, data privacy agreements, and procedures. Patients can digitally sign the consent forms securely before arriving at the clinic which reduces waiting times and also allows staff to focus more on patient care. Digital signatures play a crucial role in ensuring the authenticity and integrity of signed consent forms. By supporting compliance with industry regulations, digital signatures contribute to an efficient documentation process.</p>
<p><strong>&#8211; Employee Onboarding</strong><br />
HR departments spend most of the time onboarding new hires, and managing paperwork like offer letters, NDAs and various policy agreements. Digital signatures allow new employee to sign all required documents electronically even before their first day on the job. This helps speed up the onboarding process and HR can focus more on introducing new employees to the team and helping them transition smoothly rather than getting bogged down with paper-based tasks.</p>
<p>Digital signatures are transforming how businesses operate by making processes faster, more secure and cost-effective. It allows companies to streamline processes, enhance document security and ensure legal validity. With digital signatures in place, businesses can now close deals quickly, work efficiently across borders and reduce their environmental footprint. As more industries adopt digital solutions, digital signatures are becoming an essential tool for success in today’s world.</p>
<p>To find out more, contact us at <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal"><strong>https://www.netrust.net/contact-us/</strong></a> now.</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
</div><p>The post <a href="https://www.netrust.net/blog/understanding-the-importance-of-digital-signatures-in-modern-business-transactions/" data-wpel-link="internal">Understanding the Importance of Digital Signatures in Modern Business Transactions</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>nSignBasic Cloud Signing – Icing on the cake</title>
		<link>https://www.netrust.net/blog/nsignbasic-cloud-signing-icing-on-the-cake/</link>
		
		<dc:creator><![CDATA[Lai Yong Xing]]></dc:creator>
		<pubDate>Wed, 29 May 2024 01:30:05 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=10925</guid>

					<description><![CDATA[<p>nSignBasic Cloud Signing is a service where Netrust stores the signer’s private key and signs requested documents on the signer’s behalf when authorized. This approach takes the convenience factor up a notch while retaining the security benefits of a USB cryptographic token. With nSignBasic Cloud Signing, anyone can sign any document anywhere anytime. In today’s digital signature landscape, it is normal</p>
<p>The post <a href="https://www.netrust.net/blog/nsignbasic-cloud-signing-icing-on-the-cake/" data-wpel-link="internal">nSignBasic Cloud Signing – Icing on the cake</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>nSignBasic Cloud Signing is a service where <strong><a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a></strong> stores the signer’s private key and signs requested documents on the signer’s behalf when authorized. This approach takes the convenience factor up a notch while retaining the security benefits of a USB cryptographic token. With nSignBasic Cloud Signing, anyone can sign any document anywhere anytime.</p>
<p>In today’s digital signature landscape, it is normal for the signer to carry a USB cryptographic token containing the private keys before the signer can digitally sign on documents. In terms of security, this already takes the cake. That&#8217;s already quite nice, but what if we could make it even sweeter?</p>
<p>Are there other alternatives to tokens today? Sign with Singpass is one such avenue (You can experience Sign with Singpass anytime using our free <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>nSignSG</strong></a> service). It is secure, convenient, and backed by the Singapore Government. However, this service is only available to Singpass Mobile users and allows signing in a <a href="https://www.netrust.net/blog/to-thine-own-self-be-true-signing-professionally-using-nsignbasic/" data-wpel-link="internal"><strong>personal capacity</strong></a><sup>[1]</sup>. That’s just the way the cookie crumbles.</p>
<p>To complete the circle, enter nSignBasic Cloud Signing.</p>
<h6><strong><img loading="lazy" decoding="async" class="alignnone wp-image-10928 size-full" src="https://www.netrust.net/wp-content/uploads/2024/05/Private-Keys-User-Authorisation-Activation-USB-Cryptographic-Tokens-and-HSMs.jpg" alt="Private Keys User Authorisation Activation USB Cryptographic Tokens and HSMs Sign with Singpass, Cloud, Security " width="500" height="334" srcset="https://www.netrust.net/wp-content/uploads/2024/05/Private-Keys-User-Authorisation-Activation-USB-Cryptographic-Tokens-and-HSMs.jpg 500w, https://www.netrust.net/wp-content/uploads/2024/05/Private-Keys-User-Authorisation-Activation-USB-Cryptographic-Tokens-and-HSMs-300x200.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></strong></h6>
<p>nSignBasic Cloud Signing is a service where Netrust stores the signer’s private keys on behalf of the signer. The keys are stored securely in Hardware Security Modules (HSMs) and routine maintenance and technology refresh is handled by Netrust such that the signer has a seamless user experience while maintaining a high level of security and convenience.</p>
<p>To utilize the service, simply register for a certificate with Netrust and request for it to be provisioned into nSignBasic Cloud Signing. Next, set up strong authentication on the account. Finally use a compatible signing application such as <strong><a href="https://www.netrust.net/digital-signing/nsignhub/" data-wpel-link="internal">nSignHub</a></strong>, a workflow solution, to call upon the private keys for signing. <sup>[2]</sup></p>
<p>nSignBasic Cloud Signing is designed so that the signer’s keys will not be activated until the signer provides strong authentication, and even then, only the documents designated by the signer will be signed. This system can be utilized anywhere, anytime in the world without having to carry a cryptographic token to boot.</p>
<p>That’s not to say that the token is going the way of the dodo. It still serves some use cases well, for example when the signer does not have any network connectivity or is somehow restricted by the environment. The token is also useful when the signer wants to keep his/her private keys personally.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-10927" src="https://www.netrust.net/wp-content/uploads/2024/05/Icing-on-Top-of-the-Cake-Surface-Management-Cryptographic-Tokens-HSM.jpg" alt="Icing on Top of the Cake Surface Management Cryptographic Tokens HSM" width="500" height="334" srcset="https://www.netrust.net/wp-content/uploads/2024/05/Icing-on-Top-of-the-Cake-Surface-Management-Cryptographic-Tokens-HSM.jpg 500w, https://www.netrust.net/wp-content/uploads/2024/05/Icing-on-Top-of-the-Cake-Surface-Management-Cryptographic-Tokens-HSM-300x200.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></p>
<p>&nbsp;</p>
<p>USB cryptographic tokens and HSMs provide top-notch security for the signer’s private keys. Throw in a pinch of convenience with nSignBasic Cloud Signing, and that’s just the icing on top of the cake.</p>
<p>nSignBasic Cloud Signing is a new product offering that will be launched soon. Stay tuned for updates.</p>
<p>Get your digital identity with us now! Check out <strong><a href="https://www.netrust.net/nsignbasic/" data-wpel-link="internal">nSignBasic</a></strong> for more information. You can also <strong><a href="https://www.netrust.net/nsignbasic/#1644300782351-3-4" data-wpel-link="internal">buy it online</a></strong> immediately. For other enquiries such as a large number of certificates or getting certificates issued programmatically, feel free to contact our sales team at <strong><a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">https://www.netrust.net/contact-us/</a></strong>.</p>
<p>Do you just need to get a document signed with <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>Singpass</strong></a>? You can use <strong><a href="https://nsignsg.netrust.net/" data-wpel-link="external" rel="external noopener noreferrer">nSignSG</a></strong>, a free service from #NetrustGivesBack initiative to get it done fuss free.</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
<pre>[1] Information is accurate at the time of publication.

[2] Further usage details will be provided after the product is launched.


</pre>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/nsignbasic-cloud-signing-icing-on-the-cake/" data-wpel-link="internal">nSignBasic Cloud Signing – Icing on the cake</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Digital Signature &#038; Electronic Signature: Singapore Edition</title>
		<link>https://www.netrust.net/blog/digital-signature-electronic-signature-singapore-edition/</link>
		
		<dc:creator><![CDATA[Mark Lim]]></dc:creator>
		<pubDate>Thu, 04 Apr 2024 04:26:09 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=10673</guid>

					<description><![CDATA[<p>In the heart of Southeast Asia&#8217;s technological hub, Singapore stands as a beacon of innovation, and as transactions move towards the digital realm, understanding the nuances between digital and electronic signatures becomes imperative. In the rapidly evolving landscape of digital transactions, the distinctions between electronic signatures, digital signatures, and the groundbreaking &#8216;Sign with Singpass&#8217; have become pivotal in the Singaporean business</p>
<p>The post <a href="https://www.netrust.net/blog/digital-signature-electronic-signature-singapore-edition/" data-wpel-link="internal">Digital Signature &#038; Electronic Signature: Singapore Edition</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>In the heart of Southeast Asia&#8217;s technological hub, Singapore stands as a beacon of innovation, and as transactions move towards the digital realm, understanding the nuances between digital and electronic signatures becomes imperative. In the rapidly evolving landscape of digital transactions, the distinctions between electronic signatures, digital signatures, and the groundbreaking &#8216;Sign with Singpass&#8217; have become pivotal in the Singaporean business realm.</p>
<p><strong>Understanding Electronic Signatures:</strong></p>
<p>Electronic signatures, a cornerstone of modern business, have simplified document authentication. In Singapore, their prevalence has surged, offering a streamlined alternative to traditional ink signatures. Electronic signatures can be as simple as typed text, a scribble, or an uploaded image. When comparing their assurance level to that of a digital signature or &#8216;<strong><a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal">Sign with Singpass</a></strong>,&#8217; it is the lowest. Quick and legally binding, electronic signatures have become a go-to solution for a myriad of transactions.</p>
<p>&nbsp;</p>
<p><strong>Decoding Digital Signatures:</strong></p>
<p>While electronic signatures have gained widespread acceptance, digital signatures elevate the security quotient. Unveiling a more advanced layer of authentication, digital signatures employ cryptographic algorithms, ensuring the integrity and authenticity of the signed document. As businesses in Singapore navigate the digital landscape, the adoption of digital signatures has emerged as a hallmark of commitment to data integrity.</p>
<p>&nbsp;</p>
<p><strong>Revolutionizing with &#8216;Sign with Singpass&#8217;:</strong></p>
<p>Enter the game-changer &#8211; &#8216;<a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>Sign with Singpass</strong></a>.&#8217; As Singapore pioneers the integration of national identity authentication into the signing process, this innovation not only enhances security but also aligns with the Smart Nation initiative. Leveraging the Singpass credentials, individuals can now sign documents with unprecedented ease, combining the convenience of electronic signatures with the security of digital authentication.</p>
<p>&nbsp;</p>
<p><strong>Navigating the Differences:</strong></p>
<p>While all three types of signatures serve the purpose of ensuring document authenticity, the nuances lie in their methodologies. Electronic signatures focus on the act of intent, digital signatures add cryptographic security, and &#8216;Sign with Singpass&#8217; merges both, utilizing national identity for a robust, user-friendly experience.</p>
<p>&nbsp;</p>
<p><strong><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">nSign Digital Signing Suite</a>: <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal">nSignSG</a></strong></p>
<p><a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>nSignSG</strong></a> is one of the signing solutions from <strong><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">nSign Digital Signing Suite</a></strong>. It is a live signing platform which is available free for the members of the public to perform digital signing with Sign with Singpass.</p>
<p>4 simple steps to start signing using the Singpass Mobile App on <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>nSignSG</strong></a>.</p>
<ul>
<li>Acknowledge</li>
<li>Upload the Document</li>
<li>Sign using Singpass Mobile App</li>
<li>Complete &amp; Download File</li>
</ul>
<p>Head over to <a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><strong>nSignSG</strong></a> to try out the <strong><a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal">Sign with Singpass</a></strong> service with your documents and your Singpass Mobile App.</p>
<p><a href="https://www.netrust.net/blog/digital-signing-where-do-i-start/" data-wpel-link="internal"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-10765" src="https://www.netrust.net/wp-content/uploads/2024/03/QR-Image-1024x484.png" alt="" width="1024" height="484" srcset="https://www.netrust.net/wp-content/uploads/2024/03/QR-Image-1024x484.png 1024w, https://www.netrust.net/wp-content/uploads/2024/03/QR-Image-300x142.png 300w, https://www.netrust.net/wp-content/uploads/2024/03/QR-Image-768x363.png 768w, https://www.netrust.net/wp-content/uploads/2024/03/QR-Image.png 1100w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>For enquires or unique signing requirements e.g. Sign with Singpass integration and/or the <strong><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">nSign Digital Signing Suite</a></strong>, contact <strong><a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a></strong> at <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal"><strong>https://www.netrust.net/contact-us/</strong></a>.</p>
<p>&nbsp;</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/digital-signature-electronic-signature-singapore-edition/" data-wpel-link="internal">Digital Signature &#038; Electronic Signature: Singapore Edition</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Authenticating Signatures in Days of Yore</title>
		<link>https://www.netrust.net/blog/authenticating-signatures-in-days-of-yore/</link>
		
		<dc:creator><![CDATA[Isaac Zainal]]></dc:creator>
		<pubDate>Fri, 24 Nov 2023 01:30:45 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=9708</guid>

					<description><![CDATA[<p>Did you know that Digital Signatures was first implemented in 1988? It implemented the RSA cryptographic algorithm, which is still being developed and used today. Even so, not too long ago, the corporate world was still using rubber stamps and wet ink signatures to legalise documents. They would even share the authorisation process by sharing the physical stamp with their employees,</p>
<p>The post <a href="https://www.netrust.net/blog/authenticating-signatures-in-days-of-yore/" data-wpel-link="internal">Authenticating Signatures in Days of Yore</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>Did you know that Digital Signatures was first implemented in 1988? It implemented the RSA cryptographic algorithm, which is still being developed and used today. Even so, not too long ago, the corporate world was still using rubber stamps and wet ink signatures to legalise documents. They would even share the authorisation process by sharing the physical stamp with their employees, or authorise the use of the company logo or seal.</p>
<p>With the utilization of rubber stamps declining, companies began using electronic signatures. However this still only utilised an image of an authorised person’s signature. It is commonly presumed that the person who signed has personally verified with the use of the signature image.  So, how did they deal with authenticating signatures in the days of yore?</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-9716" src="https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1818633440.jpg" alt="digital signing" width="600" height="563" srcset="https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1818633440.jpg 600w, https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1818633440-300x282.jpg 300w" sizes="auto, (max-width: 600px) 100vw, 600px" /></p>
<p>Let us revisit the history of the technology chronologically.</p>
<ul>
<li><strong>1976:</strong> Whitfield Diffie and Martin Hellman first proposed the idea of a digital signature scheme, but no prototype was developed yet</li>
<li><strong>1977: </strong>Ronald Rivest, Adi Shamir and Len Adleman devised the RSA algorithm for digital certificates</li>
<li><strong>1988:</strong> Lotus Notes 1.0 was launched and used the RSA algorithm</li>
<li><strong>1998:</strong> The <a href="https://www.signix.com/blog/bid/93910/How-the-ESIGN-Act-changed-the-way-we-do-business" data-wpel-link="external" rel="external noopener noreferrer">Electronic Signatures Act</a> in Singapore  was established to provide a legal foundation for electronic transactions</li>
<li><strong>1999:</strong> The ability to embed digital signatures into documents is added to PDF format</li>
<li><strong>2000: </strong>The Electronic Signatures in Global and National Commerce Act (ESIGN) was enacted in the United States, establishing the legal framework for electronic signatures and records, enabling recognition and legitimacy in both domestic and international commerce.</li>
<li><strong>2008:</strong> The PDF file format becomes an open standard to the International Organization for Standardization (ISO) as ISO 32000. Includes digital signatures as an integral part of the format</li>
<li><strong>2010 onwards: </strong>Digital signatures continued to play a significant role in secure online communication, document authentication, and electronic transactions. The technology has evolved further to improve accessibility and ease of use. Some of the improvements are:
<ul>
<li>Digital signatures were widely adopted in various sectors, including government, finance, healthcare, and legal. They provided a means of ensuring the authenticity and integrity of digital documents and messages.</li>
<li>Digital signature algorithms evolved to include more secure and efficient cryptographic methods. RSA, DSA, and ECDSA (Elliptic Curve Digital Signature Algorithm) were commonly used algorithms</li>
<li>Mobile and Cloud Integration: With the proliferation of smartphones and cloud services, digital signatures have become more accessible. People could sign documents and contracts on mobile devices and store digital signatures in the cloud for easy retrieval.</li>
<li>User-Friendly Interfaces: User interfaces for digital signature solutions became more intuitive, allowing individuals and organizations to adopt them without requiring advanced technical knowledge.</li>
</ul>
</li>
</ul>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-9717" src="https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1121444747.jpg" alt="" width="800" height="431" srcset="https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1121444747.jpg 800w, https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1121444747-300x162.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/11/Shutterstock_1121444747-768x414.jpg 768w" sizes="auto, (max-width: 800px) 100vw, 800px" />Using a digital signature offers significant advantages and is widely adopted. Firstly, the identity of the signer undergoes verification, establishing a trust foundation in digital interactions. This process is strengthened by the sole possession of the private key linked to the digital certificate in use, restricting access exclusively to the authorized signer. Nonrepudiation, a crucial principle, ensures that neither party can deny involvement in sending or receiving a message, thanks to the protective measures of encryption and digital signatures. Additionally, the integrity of transmitted information is preserved, as any attempt at tampering renders the digital signature invalid, thereby safeguarding the authenticity of the data.</p>
<p>Today, it is evident that the COVID-19 pandemic has made a profound impact on the way we conduct business in the office, fundamentally transforming and even accelerating the process of digitization. As the pandemic forced employees to adapt to remote work out of necessity, one of the key aspects that quickly gained significance in this new landscape was the use of digital signatures in various work processes. This shift was not merely a matter of convenience but a vital adaptation to ensure the continuity of essential business operations. In this context, those who clung to the traditional practice of using images of wet ink signatures encountered numerous legality issues.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-9720" src="https://www.netrust.net/wp-content/uploads/2023/11/shutterstock_2162038223.jpg" alt="" width="1000" height="667" srcset="https://www.netrust.net/wp-content/uploads/2023/11/shutterstock_2162038223.jpg 1000w, https://www.netrust.net/wp-content/uploads/2023/11/shutterstock_2162038223-300x200.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/11/shutterstock_2162038223-768x512.jpg 768w" sizes="auto, (max-width: 1000px) 100vw, 1000px" /></p>
<p>Digital signatures, unlike their paper counterparts, offer several advantages in a remote work setting. They are secure, tamper-evident, and easily verifiable. They also provide a digital trail that records who signed a document and when enhancing transparency and audibility. Moreover, digital signatures are typically legally recognized in many jurisdictions, enabling organizations to maintain compliance and meet legal requirements even in a remote work environment. Although many organizations recognize the necessity to accelerate the adoption of digital signatures for document signing, implementing this change may prove challenging due to the persistence of traditional signing methods. Some remain hesitant to rapidly overhaul established practices.</p>
<p><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal"><img loading="lazy" decoding="async" class="alignnone size-large wp-image-8741" src="https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-1024x375.jpg" alt="" width="1024" height="375" srcset="https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-1024x375.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-300x110.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-768x281.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite.jpg 1426w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></a></p>
<p>Over the last few years, <a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a> has successfully addressed the increasing need for enhanced <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">digital signing solutions</a> in response to the surge in remote work demands. To assist users in this transition, we&#8217;ve provided easily accessible video tutorials available on our website, check out the <a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal">tutorial here</a>.  Additionally, we&#8217;ve organized comprehensive online seminars via Zoom, designed to educate entire organizations on the seamless integration of digital signing methods into their day-to-day business operations.</p>
<p>To find out more or to embark on digital signing for your organization, reach out to us today &gt;&gt;&gt; <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">https://www.netrust.net/contact-us/</a></p>
<p>&nbsp;</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/authenticating-signatures-in-days-of-yore/" data-wpel-link="internal">Authenticating Signatures in Days of Yore</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Tips and Tricks on using nSignHub</title>
		<link>https://www.netrust.net/blog/tips-and-tricks-on-using-nsignhub/</link>
		
		<dc:creator><![CDATA[Tay Yu Jie]]></dc:creator>
		<pubDate>Wed, 06 Sep 2023 01:30:16 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=9317</guid>

					<description><![CDATA[<p>In this blog, I will share three expert tips and tricks that will enhance your experience and efficiency while using nSignHub. From time-saving shortcuts to advanced features that maximize security, we&#8217;ve got you covered. Whether you&#8217;re a beginner just getting started with the platform or an experienced user looking to unlock its full potential, you can navigate nSignHub confidently and achieve</p>
<p>The post <a href="https://www.netrust.net/blog/tips-and-tricks-on-using-nsignhub/" data-wpel-link="internal">Tips and Tricks on using nSignHub</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>In this blog, I will share three expert tips and tricks that will enhance your experience and efficiency while using <a href="https://www.netrust.net/digital-signing/nsignhub/" data-wpel-link="internal">nSignHub</a>. From time-saving shortcuts to advanced features that maximize security, we&#8217;ve got you covered. Whether you&#8217;re a beginner just getting started with the platform or an experienced user looking to unlock its full potential, you can navigate nSignHub confidently and achieve optimal results.</p>
<p><strong>Single Sign-On (SSO)</strong></p>
<p>Did you know that you can also leverage popular single sign-on (SSO) options such as Google and Microsoft to quickly log in to nSignHub? This feature eliminates the need to remember and manage multiple login credentials, streamlining your access to the platform.</p>
<p>All you need is a Google or Microsoft account with the same email address registered on nSignHub.</p>
<p>To access nSignHub using your Google or Microsoft account, simply click on the &#8220;More Login Options&#8221; button and choose either &#8220;Google&#8221; or &#8220;Office 365.&#8221; A pop-up will appear, allowing you to select the desired account if you have multiple accounts associated. After selecting the account, you will be seamlessly redirected to the main page of nSignHub.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-9322" src="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub1-1024x559.png" alt="" width="1024" height="559" srcset="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub1-1024x559.png 1024w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub1-300x164.png 300w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub1-768x419.png 768w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub1.png 1052w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>&nbsp;</p>
<p><strong>Enhance Document Security with Email OTP Authentication for Access and Signing</strong></p>
<p>Did you know that the document owner can set the necessary security options for the signer during the preparation of the workflow? The document owner can choose to authenticate the signer using email OTP to grant access to the document. This provides an added level of security to ensure that the document will be accessible only upon providing the correct OTP.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-9321" src="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub2-1024x658.png" alt="" width="1024" height="658" srcset="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub2-1024x658.png 1024w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub2-300x193.png 300w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub2-768x494.png 768w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub2.png 1422w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>The document owner can also choose to authenticate the signer using email OTP when the signer attempts to sign the document.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-9320" src="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub3-1024x605.png" alt="" width="1024" height="605" srcset="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub3-1024x605.png 1024w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub3-300x177.png 300w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub3-768x453.png 768w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub3.png 1426w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p><strong>Note: </strong>If you are unable to find this option, you may contact our customer service team to enable this option.</p>
<p><strong>Delegate Settings</strong></p>
<p>Imagine enjoying a relaxing holiday when, unexpectedly, you find yourself in an urgent situation that requires you to digitally sign a document. The catch is that you don&#8217;t have any means of accessing the internet, leaving you without a way to fulfill this pressing task.</p>
<p>Did you know that within your enterprise, you have the option to delegate the signing of documents to a trusted individual for a specific duration? Additionally, you can assign a trusted person to review documents before they reach you, granting them the authority to reject any documents that should not be forwarded for your signature.</p>
<p><strong>To add your delegate:</strong></p>
<ol>
<li>Click your profile drop down menu (available at the top right corner).</li>
<li>Click the &#8220;My Settings&#8221; option.</li>
<li>Click the &#8220;Delegated Signing&#8221; option from the left menu.</li>
</ol>
<p><strong>If you want to delegate the signing of documents to a trusted individual:</strong></p>
<ol>
<li>Tick the &#8220;Allow someone else to sign on your behalf&#8221; check box to enable it.</li>
<li>Click &#8220;+&#8221; from the grid header. The &#8220;Add Delegate&#8221; dialog will appear.</li>
<li>Specify the contact to whom you want to delegate your signing authority. The contact can be specified by using their Name or Email ID.</li>
<li>Specify the exclusive period by using the &#8220;From&#8221; and &#8220;To&#8221; fields during which this configuration is effective.</li>
<li>The Delegated Signing will be ineffective beyond the specified period.</li>
<li>Click the &#8220;OK&#8221; button.</li>
<li>The delegate will be added to delegated settings list.</li>
<li>Click on the &#8220;Save&#8221; button from the &#8220;Delegate Settings&#8221; screen.</li>
</ol>
<p><img loading="lazy" decoding="async" class="alignnone size-large wp-image-9325" src="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub4-1024x571.png" alt="" width="1024" height="571" srcset="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub4-1024x571.png 1024w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub4-300x167.png 300w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub4-768x428.png 768w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub4.png 1346w" sizes="auto, (max-width: 1024px) 100vw, 1024px" />.</p>
<p><strong>If you want to delegate reviewing of documents to a trusted individual:</strong></p>
<ol>
<li>Tick the &#8220;Allow users to work as gatekeepers and review documents on your behalf&#8221; check box to enable it.</li>
<li>Specify the contact to whom you want to assign as your gatekeeper. The contact can be specified by using their Name or Email ID.</li>
<li>Click the &#8220;Save&#8221; button from the &#8220;Delegate Settings&#8221; screen.</li>
</ol>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-9324" src="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub5.png" alt="" width="816" height="326" srcset="https://www.netrust.net/wp-content/uploads/2023/08/nSignHub5.png 816w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub5-300x120.png 300w, https://www.netrust.net/wp-content/uploads/2023/08/nSignHub5-768x307.png 768w" sizes="auto, (max-width: 816px) 100vw, 816px" /></p>
<p>Hopefully, these little tips and tricks will allow you to improve your<a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal"> digital signing experience</a> in nSignHub!</p>
<p>nSignHub now supports Sign with Singpass, and it is currently available in every price plan at no extra charge! You can reach out to us at <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">https://www.netrust.net/contact-us/</a> to find out more about Sign with Singpass activation.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/tips-and-tricks-on-using-nsignhub/" data-wpel-link="internal">Tips and Tricks on using nSignHub</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>eForm Filling with Digital Signatures</title>
		<link>https://www.netrust.net/blog/eform-filling-with-digital-signatures/</link>
		
		<dc:creator><![CDATA[Kean Liang Chong]]></dc:creator>
		<pubDate>Wed, 23 Aug 2023 01:30:20 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=8952</guid>

					<description><![CDATA[<p>eForm filling with Digital Signatures has become a powerful solution to the workflows and enhances document security. The combination of eForm and digital signatures changes the way we handle the paperwork eliminating the need for the traditional paper-based process. In this blog, we will be exploring the benefits of the eForm filling with digital signatures and how it optimizes the operations</p>
<p>The post <a href="https://www.netrust.net/blog/eform-filling-with-digital-signatures/" data-wpel-link="internal">eForm Filling with Digital Signatures</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>eForm filling with Digital Signatures has become a powerful solution to the workflows and enhances document security. The combination of eForm and digital signatures changes the way we handle the paperwork eliminating the need for the traditional paper-based process. In this blog, we will be exploring the benefits of the eForm filling with digital signatures and how it optimizes the operations of organizations and individuals as well as ensuring document integrity.</p>
<p><strong>Understand of eForm Filling</strong> &#8211; By using eForm filling, users can easily input information with the select options from the fields that have been provided and submit their forms digitally.</p>
<p>Modern browsers allow storing of personal information within the browser, so that users can fill up eForms without entering the same information repeatedly.</p>
<p>In Singapore, the Myinfo feature of Singpass enables business applications to allow users to fill up eForm by using the Singpass app.</p>
<p>These modern approaches offer a range of advantages over the traditional method, including increased efficiency, reduce paper waste and improved accuracy.</p>
<p>Using traditional paper forms, information on the form has to be manually entered into a system before the form can be processed. This time consuming and also prone to errors. With eForms, all information that is submitted can be used by the system without additional processing.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-8965" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_485932660.jpg" alt="" width="500" height="334" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_485932660.jpg 500w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_485932660-300x200.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></p>
<p><strong>Digital Signatures</strong> <strong>in eForm </strong>– A digital signature is a cryptographic representation of a person’s identity that ensures the integrity of the signed content. Digital Signature plays an important role in eForm filling by adding an extra layer of security and authenticity to the electronic document. The eForm with the digital signature (secure electronic signature) is given legal presumption (<a href="https://sso.agc.gov.sg/Act/ETA2010?ValidDate=20210319" data-wpel-link="external" rel="external noopener noreferrer">Electronic Transactions Act</a>)  and recipients can verify the origin and integrity of the document.</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-8967" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2142622693.jpg" alt="" width="500" height="375" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2142622693.jpg 500w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2142622693-300x225.jpg 300w" sizes="auto, (max-width: 500px) 100vw, 500px" /></p>
<p><strong>Advantages of eForm Filling with Digital Signature</strong></p>
<ul>
<li>Faster Processing: reduces the time and effort required to process forms, leading to enhanced productivity and faster turnaround times</li>
<li>Improved Security: the secure nature of digital signatures mitigates the risks associated with document tampering or unauthorized alterations, ensuring the integrity and validity of the information provided</li>
<li>Data Accuracy: eForm enables automated validation and error checking, which help to improve data accuracy as well as minimize human errors.</li>
<li>Compliance and Legal Validity: helps organizations comply with regulatory requirements and provides legal validity to electronic documents.</li>
</ul>
<p><strong>Use Cases and Practical Application</strong></p>
<ul>
<li>Healthcare: allow the patient to perform registration, consent forms and any medical history</li>
<li>Human Resources: employee onboarding, evaluations and request forms</li>
<li>Government: License renewals, online tax filing and permit application</li>
<li>Legal: Agreement, legal forms, and digitised contracts for secure electronic signatures</li>
</ul>
<p>eForm filling with digital signature enables organizations and individuals to streamline processes, security enhancement and digital transformation. By embracing this technology, organizations can optimize their operations, improve data accuracy, and provide a seamless user experience.</p>
<p>To find out more, reach out to us at <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">https://www.netrust.net/contact-us/</a> now.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><span style="text-decoration: underline;"><strong>Check out the following blogs on <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">Digital Signing</a>: </strong></span></p>
<ul>
<li><a href="https://www.netrust.net/blog/how-to-choose-the-right-digital-signing-solution-in-singapore/" data-wpel-link="internal">How to Choose the Right Digital Signing Solution in Singapore</a></li>
<li><a href="https://www.netrust.net/blog/exploring-different-types-of-digital-signatures-and-their-uses/" data-wpel-link="internal">Exploring Different Types of Digital Signatures and Their Uses</a></li>
<li><a href="https://www.netrust.net/blog/unveiling-document-signing-solutions-a-thorough-guide-for-singapore-businesses/" data-wpel-link="internal">Unveiling Document Signing Solutions: A Thorough Guide for Singapore Businesses</a></li>
<li><a href="https://www.netrust.net/blog/a-beginners-guide-to-understanding-digital-signatures-in-singapore/" data-wpel-link="internal">A Beginner’s Guide to Understanding Digital Signatures in Singapore</a></li>
</ul>
<p>&nbsp;</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/eform-filling-with-digital-signatures/" data-wpel-link="internal">eForm Filling with Digital Signatures</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>How to Choose the Right Digital Signing Solution in Singapore</title>
		<link>https://www.netrust.net/blog/how-to-choose-the-right-digital-signing-solution-in-singapore/</link>
		
		<dc:creator><![CDATA[Susan Ler]]></dc:creator>
		<pubDate>Wed, 19 Jul 2023 01:30:56 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=8731</guid>

					<description><![CDATA[<p>Transitioning from physical signing to digital signing offers numerous benefits in terms of efficiency, convenience, and cost savings. Understanding your organisation’s needs is crucial when choosing a digital signing solution. &#160; Gain a clear understanding of your organisation&#8217;s digital signing requirements, such as the number of documents that need signing, the desired level of security, and mobile accessibility. Consider the roles</p>
<p>The post <a href="https://www.netrust.net/blog/how-to-choose-the-right-digital-signing-solution-in-singapore/" data-wpel-link="internal">How to Choose the Right Digital Signing Solution in Singapore</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>Transitioning from physical signing to digital signing offers numerous benefits in terms of efficiency, convenience, and cost savings. Understanding your organisation’s needs is crucial when choosing a digital signing solution.</p>
<p>&nbsp;</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone wp-image-8734 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-300x263.jpg" alt="" width="300" height="263" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-300x263.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-1024x896.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-768x672.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-1536x1344.jpg 1536w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2091045919-2048x1792.jpg 2048w" sizes="auto, (max-width: 300px) 100vw, 300px" /></strong></p>
<p>Gain a clear understanding of your organisation&#8217;s digital signing requirements, such as the number of documents that need signing, the desired level of security, and mobile accessibility.</p>
<p>Consider the roles of signatories involved, including the number of people who will be signing documents. If you have multiple signatories with different roles, you may need a solution that supports serial or parallel signing workflows and allows for the customization of signing rules.</p>
<p>Assess the security needs of the documents you sign. Determine if your business requires advanced encryption, secure storage of digital certificates, or compliance with specific security standards, particularly if you handle sensitive or confidential information.</p>
<p>&nbsp;</p>
<p><strong><img loading="lazy" decoding="async" class="alignnone wp-image-8735 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-300x200.jpg" alt="" width="300" height="200" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-300x200.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-1024x683.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-768x512.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-1536x1024.jpg 1536w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_1751774234-2048x1365.jpg 2048w" sizes="auto, (max-width: 300px) 100vw, 300px" /></strong></p>
<p>Determine whether your business requires mobile accessibility for digital signing. If your signatories frequently work remotely or need to sign documents on the go, consider a solution that offers mobile applications or responsive web interfaces for convenient access.</p>
<p>By thoroughly evaluating these factors, you can select a solution that meets your specific requirements and enhances the efficiency of your signing processes.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8736 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-300x212.jpg" alt="" width="300" height="212" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-300x212.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-1024x724.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-768x543.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-1536x1086.jpg 1536w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_678550327-2048x1448.jpg 2048w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>&nbsp;</p>
<p><a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a> being an IMDA-accredited public CA is a trusted 3<sup>rd</sup> party provider of <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">digital signing solutions</a>. Here are the steps you can take to choose the right digital signing solution provided:</p>
<ol>
<li>Research us: Conduct thorough research on our company by exploring our website. If you are reading this blog post, you have already taken the first step. Explore our range of digital signing solutions to find the one that best suits your specific requirements.</li>
<li>Evaluate Security and Compliance: Being an IMDA-accredited public CA, Netrust issues certificates that are highly trusted and hold legal presumption in Singapore&#8217;s court of law under the Electronic Transactions Act.</li>
<li>Authentication Methods: Validating digitally signed documents is made easy by using widely used document readers such as Adobe Acrobat Reader for PDF documents or Microsoft Word for Word documents. These readers maintain lists of trusted Certificate Authorities (CAs), including Netrust. CAs must meet specific criteria set by the document reader manufacturers to be added to the trusted CA list. Examples of CA trust programs are the Adobe Approved Trust List and the Microsoft Trusted Root Program. Digital certificates issued by Netrust align with global standards and are trusted worldwide.</li>
<li>Document Tracking &amp; Audit Trail: When using e-signature workflow systems, important information such as the timestamp of the e-signature request, the IP address of the user, and the browser used during the signing process is recorded as audit trails. These audit trails serve as evidence to validate the e-signatures.</li>
<li>Customer Support: Our Netrust staff are specialised in the field of PKI services and can advise you on your needs as your digital signing partner. The customer and technical support teams of Netrust are located in Singapore, ensuring prompt assistance and support for your needs.</li>
</ol>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal"><img loading="lazy" decoding="async" class="alignnone wp-image-8741" src="https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-300x110.jpg" alt="" width="700" height="256" srcset="https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-300x110.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-1024x375.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite-768x281.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/nSign-Digital-Signing-Suite.jpg 1426w" sizes="auto, (max-width: 700px) 100vw, 700px" /></a></p>
<p>At <a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a>, we offer multiple digital signing solutions to cater to your organisation’s needs. Refer below to learn each solution’s features and benefits.</p>
<p><a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal"><u>nSignSG</u></a></p>
<p>Experience the convenience of a web-based platform that allows you to generate digital signatures on PDF documents utilizing Singpass, completely free of charge. With no registration or setup required, it&#8217;s easy to get started and begin signing documents seamlessly.</p>
<p><a href="https://www.netrust.net/digital-signing/nsignhub/" data-wpel-link="internal"><u>nSignHub</u></a></p>
<p>Our comprehensive electronic workflow solution provides a feature-rich platform for sending, signing, tracking, and managing signing processes. The data is securely geo-fenced within Singapore, ensuring data protection and compliance.</p>
<p>The solution supports both electronic signatures and digital signatures, including the convenient Sign with Singpass feature at no additional cost. As an added layer of security, electronic signatures are automatically wrapped with a digital witness certificate, providing enhanced protection without any extra charges.</p>
<p>This all-in-one cloud-based platform is ideal for users and companies seeking seamless document signing and management capabilities. It supports multiple identities and signers, as well as various signature types within a single document, making it highly versatile and adaptable to your specific needs.</p>
<p><a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal"><u>nSignBasic</u></a></p>
<p>Document signing certificates, also known as digital certificates or digital IDs, enable you to add a digital signature to a document, providing proof of the sender&#8217;s identity. These certificates come with several benefits, including low-cost and unlimited signing capabilities.</p>
<p>They are automatically trusted by Adobe programs through the Adobe Approved Trust List (AATL) and Microsoft programs. The nSignBasic Individual certificates qualify as Secure Electronic Signatures (SES) in Singapore, ensuring their legal validity.</p>
<p>These certificates can be issued to individuals or organisations, with the option to include additional information such as a professional ID. They are particularly suitable for users and companies seeking to create legally recognized, publicly trusted digital signatures in Adobe PDF documents. The certificates are optimized for single identity and signer usage, ensuring ease of use and reliability.</p>
<p><a href="https://www.netrust.net/digital-signing/nsigncore/" data-wpel-link="internal"><u>nSignCore</u></a></p>
<p>Empower your business applications to conduct digital signing effortlessly through easy-to-integrate REST APIs. These APIs are highly configurable, allowing seamless integration with your existing applications or the option to use them as a standalone application. Our APIs support various file types and transaction data, ensuring flexibility and versatility. You can implement them on web, mobile, or desktop platforms based on your organisation&#8217;s preferences.</p>
<p><a href="https://www.netrust.net/digital-signing/nsignqr/" data-wpel-link="internal"><u>nSignQR</u></a></p>
<p>Safeguard the integrity of your physical documents offline using specially generated QR codes. These QR codes can be scanned using any standard QR code reader or a custom-built mobile application. The presentation of documents with nSignQR codes does not require any special handling, making it a convenient and user-friendly solution.</p>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8738 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-300x200.jpg" alt="" width="300" height="200" srcset="https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-300x200.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-1024x683.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-768x512.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-1536x1024.jpg 1536w, https://www.netrust.net/wp-content/uploads/2023/07/shutterstock_2035196327-1-2048x1366.jpg 2048w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>In conclusion, selecting the right digital signing solution for your business in Singapore is a crucial decision. It involves understanding your organisation&#8217;s specific requirements and evaluating the different solutions available.</p>
<p><a href="https://www.netrust.net/" data-wpel-link="internal">Netrust</a> offers the <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">nSign Digital Signing Suite</a> which includes various digital signing solutions to cater to different needs. By thoroughly assessing your business&#8217;s needs and considering the factors mentioned, you can make an informed decision and choose the digital signing solution that best fits your requirements.</p>
<p>If you are still uncertain about which digital signing solution to choose, we invite you to request a demo or trial. You can book a no-obligation 30-minute discussion with us where we can provide guidance and advice on the best digital signing solution that aligns with your specific needs. Reach out to us at <a href="https://www.netrust.net/contact-us/" data-wpel-link="internal">https://www.netrust.net/contact-us/</a> now.</p>
<p>Making the transition from physical signing to digital signing can bring numerous benefits in terms of efficiency, convenience, and cost savings. By partnering with a trusted provider like Netrust and selecting the right digital signing solution, you can enhance your organisation&#8217;s signing processes and streamline your document management workflows.</p>
<p>&nbsp;</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" data-wpel-link="external" rel="external noopener noreferrer"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
<p>&nbsp;</p>
</div><p>The post <a href="https://www.netrust.net/blog/how-to-choose-the-right-digital-signing-solution-in-singapore/" data-wpel-link="internal">How to Choose the Right Digital Signing Solution in Singapore</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Exploring Different Types of Digital Signatures and Their Uses</title>
		<link>https://www.netrust.net/blog/exploring-different-types-of-digital-signatures-and-their-uses/</link>
		
		<dc:creator><![CDATA[Aaron Fu]]></dc:creator>
		<pubDate>Wed, 21 Jun 2023 01:30:23 +0000</pubDate>
				<category><![CDATA[Cyber Security]]></category>
		<category><![CDATA[Digital Signing]]></category>
		<guid isPermaLink="false">https://www.netrust.net/?p=8534</guid>

					<description><![CDATA[<p>This blog is co-authored by Aaron Fu and Kimchav Sov. The term “digital signature” is often confused and has commonly been described as an e-signature that resembles a hand-drawing signature but applied in digital documents. Indeed, digital signatures provide a highly secure way to implement electronic signatures and play a crucial role in maintaining information security. They provide a way to</p>
<p>The post <a href="https://www.netrust.net/blog/exploring-different-types-of-digital-signatures-and-their-uses/" data-wpel-link="internal">Exploring Different Types of Digital Signatures and Their Uses</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div class="wpb-content-wrapper"><p><em>This blog is co-authored by </em><a href="https://www.netrust.net/blog/author/aaron-fu/" data-wpel-link="internal"><em>Aaron Fu</em></a><em> and </em><a href="https://www.netrust.net/blog/author/kimchav-sov/" data-wpel-link="internal"><em>Kimchav Sov</em></a><em>.</em></p>
<h6><div class="vc_row wpb_row vc_row-fluid position-relative has-canvas"></div><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner "><div class="wpb_wrapper"></div></div></div></a>
	<div class="wpb_text_column wpb_content_element" >
		<div class="wpb_wrapper">
			
		</div>
	</div>
</h6>
<p>The term “digital signature” is often confused and has commonly been described as an e-signature that resembles a hand-drawing signature but applied in digital documents. Indeed, <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">digital signatures</a> provide a highly secure way to implement electronic signatures and play a crucial role in maintaining information security. They provide a way to validate the authenticity, validity and integrity of digital documents. <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">Digital signatures</a> are used in a wide range of applications, including email, contracts, official documents, codes and financial transactions. This blog post will look at many forms of digital signatures and their use cases.</p>
<h2>What is a digital signature?</h2>
<p>A digital signature is a mathematical code that is attached to an electronic document to verify its authenticity. It is created using a private key that is unique to the signer and can be used to verify that the document was signed by the person who claims to have signed it. Unlike ordinary electronic signatures, which are simply an electronic representation of a handwritten signature (e.g. scanned image of a handwritten signature), digital signatures are based on public-key cryptography, which makes them much more secure.</p>
<p>Digital signatures work by using a combination of public and private keys. The private key is used by the signer to encrypt the document, while the public key is used by the recipient to decrypt it. The public key is freely available to anyone who needs it, while the private key is kept secret by the signer.</p>
<h2>What are the Different Types of Digital Signatures and Uses</h2>
<h3>Cryptographic digital signature</h3>
<h3><strong><img loading="lazy" decoding="async" class="alignnone wp-image-8550 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-298x300.jpg" alt="What Are Digital Signatures | Cryptographic digital signature" width="298" height="300" srcset="https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-298x300.jpg 298w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-1016x1024.jpg 1016w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-150x150.jpg 150w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-768x774.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887-170x170.jpg 170w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1847138887.jpg 1203w" sizes="auto, (max-width: 298px) 100vw, 298px" /></strong></h3>
<p>Cryptographic digital signature is a type of digital signature that uses cryptography to authenticate the validity and integrity of a digital document. They are based on asymmetric encryption algorithms, which use private and public keys. The document is signed using the private key and is verified with the public key. Cryptographic digital signatures offer high levels of security and are widely accepted. However, cryptographic digital signatures do not have an inherent mechanism for identity verification that the certificate-based digital signatures offer. They are often used in a variety of applications such as email encryption, code signing, legal document, etc.</p>
<h3 id="Certificate-based digital signature">Certificate-based digital signature</h3>
<p><strong><img loading="lazy" decoding="async" id="Certificate-based digital signature" class="alignnone wp-image-8548 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_641958253-300x275.jpg" alt="What Are Digital Signatures | Certificate-based digital signature" width="300" height="275" srcset="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_641958253-300x275.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_641958253.jpg 500w" sizes="auto, (max-width: 300px) 100vw, 300px" /></strong></p>
<p>Certificate-based digital signature is a type of digital signature that uses a digital certificate to verify the identity of the signer. The digital certificate is issued by a trusted third party, known as a certificate authority (CA). These certificates contain information about the signer&#8217;s identity and are used to verify the authenticity of the digital signature. Certificate-based digital signatures offer an added level of trust and have a strict Know Your Customer (KYC) process enforced by a CA adhering to regulatory compliance before the issuing of a certificate. They are often used in industries where regulatory compliance and legal requirements are crucial, such as in signing legal documents and contracts.</p>
<h3>QR code signature</h3>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8557 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1513743866-300x236.jpg" alt="What Are Digital Signatures | QR code signature" width="300" height="236" srcset="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1513743866-300x236.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1513743866-1024x805.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1513743866-768x603.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1513743866.jpg 1223w" sizes="auto, (max-width: 300px) 100vw, 300px" /></p>
<p>QR code signature is a type of digital signature that uses a QR code to represent the signature. A unique QR code embedded with a digital signature is generated for each document, containing the necessary information to verify the document. Users scan the QR code using a QR scanner or compatible application to verify the authenticity and integrity of the signature. QR code signatures are used in a variety of applications such as documents, certificates, product authentication statements, and logistics.</p>
<h3>Biometric digital signature</h3>
<p><strong><img loading="lazy" decoding="async" class="alignnone wp-image-8547 size-medium" src="https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1964038735-300x247.jpg" alt="What Are Digital Signatures | Biometric digital signature" width="300" height="247" srcset="https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1964038735-300x247.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1964038735-1024x843.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1964038735-768x632.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/06/Shutterstock_1964038735.jpg 1222w" sizes="auto, (max-width: 300px) 100vw, 300px" /></strong></p>
<p>Biometric digital signature is a type of digital signature that uses unique physical or behavioural characteristics of an individual such as a fingerprint, facial scan or even handwritten signature to verify the identity of the signer. Biometric signatures offer a high level of security as they are difficult to forge. They are often used in applications where identity verification is critical, such as banking and government documents.</p>
<h2>What makes a digital signature secure?</h2>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8551 size-large" src="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-1024x512.jpg" alt="What Are Digital Signatures | What makes a digital signature secure?" width="1024" height="512" srcset="https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-1024x512.jpg 1024w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-300x150.jpg 300w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-768x384.jpg 768w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-1536x768.jpg 1536w, https://www.netrust.net/wp-content/uploads/2023/06/shutterstock_1835952595-2048x1024.jpg 2048w" sizes="auto, (max-width: 1024px) 100vw, 1024px" /></p>
<p>When a document is signed using a digital signature, the signature is embedded into the document itself. This means that if the document is altered in any way, the signature will no longer be valid. This provides a high level of security and ensures that the document cannot be tampered with or forged.</p>
<p>Digital signatures rely on a well-established system called Public Key Infrastructure (PKI) to establish trust and ensure the authenticity of the signatures. In PKI, a certificate authority (CA) is responsible for issuing digital certificates that contain a public key and identifying information about the signer. These digital certificates are used to establish trust between signers and recipients, ensuring that the digital signature is authentic and that the signer is who they claim to be.</p>
<h3>What makes a digital signature legally enforceable?</h3>
<p><img loading="lazy" decoding="async" class="alignnone wp-image-8445 size-full" src="https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2270490495-1.jpg" sizes="auto, (max-width: 500px) 100vw, 500px" srcset="https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2270490495-1.jpg 500w, https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2270490495-1-300x200.jpg 300w" alt="What Are Digital Signatures | What makes a digital signature legally enforceable in Singapore?" width="500" height="334" /></p>
<p>In Singapore, digital signatures are governed by the Electronic Transactions Act (ETA) and the Electronic Transactions (Certification Authority) Regulations (ETCA). These laws provide a legal framework for the use of digital signatures and ensure that they are legally binding and enforceable.</p>
<p>Secure Electronic Signatures (SES) are a specific type of digital signature that is defined in the ETA and provides a legal presumption of authenticity and integrity. This means that if a SES is challenged in court, the court will presume that the signature is authentic and has not been altered unless there is evidence to the contrary. This legal presumption can make it easier for businesses to use electronic signatures, as they can rely on the presumption of authenticity and integrity provided by the ETA.</p>
<p>To qualify as a Secure Electronic Signature, the signature must be created using a method that is uniquely linked to the signatory, such as a digital certificate issued by a recognized CA. In Singapore, CAs are recognized and accredited by the Infocomm Media Development Authority (IMDA), controller of CAs in Singapore. The IMDA is the regulatory body responsible for ensuring that CAs comply with the ETCA, which sets out the requirements for the operation and management of CAs in Singapore.</p>
<p>Of the different types of digital signatures explored earlier, only <a href="https://www.netrust.net/blog/exploring-different-types-of-digital-signatures-and-their-uses/#Certificate-based%20digital%20signature" data-wpel-link="internal">certificate-based digital signatures</a> qualify as Secure Electronic Signatures.</p>
<h3>Who are the recognized CAs in Singapore?</h3>
<p><a href="https://www.netrust.net/about-us/" data-wpel-link="internal"><strong>Netrust is Asia’s 1st Public Certificate Authority (CA) and Singapore’s Only Commercial IMDA-accredited CA</strong></a>. Netrust offers a range of digital certificates that are compliant with the ETA and can be used to create Secure Electronic Signatures that are legally binding and admissible as evidence in court.</p>
<p>Netrust is also a member of the <a href="https://helpx.adobe.com/sg/acrobat/kb/approved-trust-list2.html" target="_blank" rel="noopener external noreferrer" data-wpel-link="external">Adobe Approved Trust List (AATL)</a> and <a href="https://learn.microsoft.com/en-us/security/trusted-root/participants-list" target="_blank" rel="noopener external noreferrer" data-wpel-link="external">Microsoft Trusted Root Certificate Program</a>. As such, digital signatures generated by <strong><a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal">nSignBasic</a></strong> – Netrust Document Signing Certificates, are automatically trusted by Adobe and Microsoft programs. The AATL is a global program that includes a list of trusted digital certificate providers that are recognized by Adobe as meeting certain standards for security and reliability.</p>
<p>By choosing an accredited CA like Netrust, businesses in Singapore can ensure that their digital signatures are reliable and trustworthy and that they comply with the requirements of the ETA and ETCA. This can help to protect businesses from fraud and other types of financial crimes, while also improving their efficiency and productivity in their day-to-day operations.</p>
<h3>How can digital signatures help me?</h3>
<p><strong><img loading="lazy" decoding="async" class="alignnone wp-image-8446 size-full" src="https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2035173053-1.jpg" sizes="auto, (max-width: 500px) 100vw, 500px" srcset="https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2035173053-1.jpg 500w, https://www.netrust.net/wp-content/uploads/2023/04/shutterstock_2035173053-1-300x200.jpg 300w" alt="What Are Digital Signatures | How can digital signatures help me?" width="500" height="334" /></strong></p>
<p>In addition to their security benefits, digital signatures can also help businesses to improve their efficiency and productivity. They eliminate the need for paper-based signatures, which can be time-consuming and expensive. They also provide a fast and efficient way to sign and authenticate documents, which can help to streamline business processes and reduce delays.</p>
<p>For example, digital signatures can be used in the banking and finance industry to sign loan agreements and other financial documents. They can also be used in the legal industry to sign contracts and other legal documents. In the healthcare industry, digital signatures can be used to sign medical records and other important documents.</p>
<h2>How can I start using digital signatures?</h2>
<p>To use digital signatures in Singapore, businesses must first obtain a digital certificate (such as <strong><a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal">nSignBasic</a></strong> – Netrust Document Signing Certificates) from a CA like Netrust. Once a business has obtained a digital certificate, they can use it to sign documents using digital signatures. This can be done easily using freely available document readers such as Adobe Reader, or electronic signing workflow solutions such as <strong><a href="https://www.netrust.net/nsignhub/" data-wpel-link="internal">nSignHub</a></strong>.</p>
<p><a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal"><img loading="lazy" decoding="async" class="aligncenter wp-image-8553" src="https://www.netrust.net/wp-content/uploads/2023/06/nSign-5-in-1-1009x1024.png" alt="What Are Digital Signatures | Digital Signing Suite" width="500" height="507" srcset="https://www.netrust.net/wp-content/uploads/2023/06/nSign-5-in-1-1009x1024.png 1009w, https://www.netrust.net/wp-content/uploads/2023/06/nSign-5-in-1-296x300.png 296w, https://www.netrust.net/wp-content/uploads/2023/06/nSign-5-in-1-768x779.png 768w, https://www.netrust.net/wp-content/uploads/2023/06/nSign-5-in-1.png 1296w" sizes="auto, (max-width: 500px) 100vw, 500px" /></a></p>
<p>Here at <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">Netrust</a>, we offer a wide range of digital signature solutions to address the needs of business and also day-to-day operations:</p>
<ul>
<li><a href="https://www.netrust.net/digital-signing/nsignsg/" data-wpel-link="internal">nSignSG</a>: A web-based platform that lets you create digital signatures on PDF documents using Singpass</li>
<li><a href="https://www.netrust.net/digital-signing/nsignhub/" data-wpel-link="internal">nSignHub</a>: A full-fledged electronic workflow solution used to send, sign, track and manage signing processes</li>
<li><a href="https://www.netrust.net/digital-signing/nsignbasic/" data-wpel-link="internal">nSignBasic</a>: Document signing certificates (sometimes known as digital certificates or digital IDs) issued by Netrust allow you to add a digital signature to a document to prove the identity of the sender.</li>
<li><a href="https://www.netrust.net/digital-signing/nsigncore/" data-wpel-link="internal">nSignCore</a>: Enable your business applications to perform digital signing via simple-to-integrate REST APIs</li>
<li><a href="https://www.netrust.net/digital-signing/nsignqr/" data-wpel-link="internal">nSignQR</a>: Protect the integrity of your physical documents offline with specially generated QR codes</li>
</ul>
<p>In conclusion, digital signatures are an important tool for businesses in Singapore. They provide a high level of security and reliability, which can help to protect businesses from fraud. They also provide a fast and efficient way to sign and authenticate documents, which can improve efficiency and productivity. To learn more about how Netrust can help you harness the full potential of electronic signing, visit our <a href="https://www.netrust.net/digital-signing/" data-wpel-link="internal">website</a> today and request a personalized consultation.</p>
<p>Follow us on <a href="https://www.linkedin.com/company/netrust-pte-ltd" rel="external noopener noreferrer" data-wpel-link="external"><strong>LinkedIn</strong></a> for the latest happenings/updates.</p>
</div><p>The post <a href="https://www.netrust.net/blog/exploring-different-types-of-digital-signatures-and-their-uses/" data-wpel-link="internal">Exploring Different Types of Digital Signatures and Their Uses</a> appeared first on <a href="https://www.netrust.net" data-wpel-link="internal">Netrust</a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
