PortaSigma users take 4 days less than its competitors to collect customer signatures

PortaSigma users are companies that need to collect signatures from their customers on a recurring basis. Traditionally, there were three methods to perform this operation:

Method 1: Moving to customer’s office

1. An authorized person in the company, looked for a gap in its calendar

2. Prepared two printed copies of the document

3. Took them in hand to the customer

4. In the office, both signed the documents

5. The authorized person, came back with the document copy

6. The authorized stored his copy in the corresponding file

Method 2: Sending the documents

1. The authorized person, prepared two copies of the document

2. Signed both copies

3. Prepared the envelop, and sent the documents to the customer’s office

4. The customer signed both copies

5. Stored its own copy

5  Prepared a new envelop and sent the original copy to the authorized

6. Who stored the copy in the corresponding file

Method 3: Receiving the customer

1. The authorized person dated the customer for the signature

2. Prepared two copies of the document

2. The customer went to the authorized office

3. Both copies were signed by both parts

4. The customer took his copy of the document

5. El autorizado de la empresa archivaba su copia

Since using PortaSigma, their routine is the following:

1. They upload a document to PortaSigma

2. Define the name, e-mail and identifier of the customer

3. Send the signature request, and in a few seconds, the customer has the possibility to sign form its PC or mobile phone

4. The customer signs the document

Thanks to this, these companies could spend more time to its core business.

Moreover, thanks to digital storage, these companies need less rooms to storage their physical files. As a reference, a traditional file fits 400 documents.

But maybe the must important benefit is the improovement of the service level to the customers.

With the cost reduction, and the service level improovement, PortaSigma users are obtaining a competitive advantage with their competitors, who keep applying handwritten signatures to their documents.

The following table shows the average of time invested in each of the described methods:






Waiting for the meeting 3 3 0
Sign and send the request from PortaSigma 0,1
Preparing two printed copies 0,1 0,1 0,1 0
Preparing and sending the envelop 0,1 0
Waiting for the delivery 3
Moving to customer’s office 0,5
Receiving the customer 0,5
Signature act 0,2 0,1 0,1
Preparing envelop and turning back 0,1
Signing request with PortaSigma 0,1
Returning to the office 0,5
Storing in fil 0,1 0,1 0,2
Total invested time (days) 4,4 3,5 3,9 0,2
Global satisfaction of the agents

Join now PortaSigma, and begin taking profit of these advantages from now on.

Posted in Digital Signature Software, Sin categoría | Leave a comment

Massive digital signature in PortaSigma

PortaSigma continues to improve its performance, meeting the demands of our customers. Latest improvement has been the massive digital signature feature.

There are professionals in certain sectors, who need to attend the request to sign many documents. For them, we designed this system that allows quick review, and to sign a batch of documents with just one click.

On screen we can check all the documents pending for signature, and the signature process progress.

Moreover, with this upgrade we’ve included support to ICP Brazil certificates.

If you still don’t have a PortaSigma account, create one now, and tell your partners that you are ready to sign your documents without unnecessary movement.

For additional information:

Román de Blas / rdeblas@isigma.es / +34 93.519.13.75

Posted in Digital Signature Software | Leave a comment

Four institutions sign agreement to integrate Digital Electronic Signature program in Panama

The Public Registry signed an agreement with four government institutions to become part of the national Digital Electronic Signature.

Luis Barrios, Public Registry’ Director, said the program will be implemented in the judiciary, the National Land Authority (Anati), the College of Notaries Public and Procurement Directorate.

He added that these four entities are part of a pilot plan to integrate it to all government institutions and civil society.

Barría said that befre ending 2011, the four institutions should already have implemented this digital system. “With this new program we’ll remove the signature on paper, ” he said.

He also noted that the digital signature is safer to which we are accustomed. The pilot scheme had a cost of four million dollars.

Posted in Digital Signature Software, Digital signature success stories | Tagged | Leave a comment

Controlling the User Experience when SSL Root Certificates are not Recognised by Browsers

So, Browsers Scare your Users by Saying your SSL Certificates Suck, hmmm?

Yup, we all know SSL is the way to go when protecting your site’s traffic from the bad guys, and it is not that difficult to set up. But what happens when the browsers don’t have pre-installed CA root certificates for the issuer of your SSL certificates? They tend to present very scary messages. Some versions of Internet Explorer heartily recommend users to get away from your site as quickly as possible, lest they be eaten by evil monsters (well, not exactly, but it has a similar effect).

Scare tactics may work well for browser manufacturers, so that certificate issuers are willing to make their certificates recognised and pre-installed in these browsers (or OS) releases. This process might involve some payment to the browser’s manufacturer… (warning: this is my personal unproven claim… call me suspicious if you wish).

In any case, once the user clicks on a link to your secure SSL-protected HTTPS site, funnily enough, the browser’s alarm messages may make it appear as a more insecure choice than using HTTP. What the …?

It looks like you don’t have control over the user’s experience… or do you?

We at Isigma have devised a mechanism that does give you some control over what your users see, and at least skip the browser’s message and replace it by your own page. It involves some Javascript Ajax. We have written it with jQuery but you can use any equivalent Ajax library of choice.

How can I Replace the Browser’s Unrecognised SSL Certificate Message?

Our solution consists of having a plain HTTP welcome page that checks behind the scenes whether the browser can open the HTTPS page, and if so does an automated redirect to the secure page. If the redirect doesn’t happen, it shows a message informing the user that in order to access your site she should install the root certificates, and instructing her how to do so.

For that purpose we created a jQuery-based javascript function ssl_check_and_redirect that honors its name. You give it an https URL, and if the browser can open it with Ajax, it redirects you automatically.

    function ssl_check_and_redirect(url) {
        $.ajax({
            url: url,
            dataType: "script",
            success: function(){
                window.location.replace(url);
            }
        });
    }

The datatype of “script” is a useful trick to avoid browsers’ same-origin policy restrictions when performing Ajax calls.

Unfortunately, if you try to use an error callback for the case where the SSL certificate is not recognised (I know that’s what you’re thinking, because it’s what I thought), you’ll find out that it is never called. To detect that case, you may want to use a workaround based on some sort of timeout instead.

Calling this function upon page load with jQuery is as simple as:

    $(function() {
        ssl_check_and_redirect("https://app.portasigma.com/");
    });

A simplified full welcome page (accessible via plain HTTP, no SSL) could look like:

<!DOCTYPE html>
<html>
<head>
    <script src="http://code.jquery.com/jquery-1.4.4.js"></script>
    <script>
    function ssl_check_and_redirect(url) {
        $.ajax({
            url: url,
            dataType: "script",
            success: function(){
                window.location.replace(url);
            }
        });
    }

    $(function() {
        ssl_check_and_redirect("https://app.portasigma.com/");
    });
    </script>
</head>
<body>
    <div id="log">
        <p>Performing a check before accessing our secure site</p>
        <p>If after a few seconds the secure page doesn't show up, you will
           have to install our SSL root certificate etc... (your friendly personal
           message to avoid browser scare)</p>
    </div>
</html>

Possible Improvements

This solution could be improved by using a three-page structure:

  • Welcome page that tells performs checks and redirects the user to the SSL page if OK. It has a timeout that, in case the SSL redirect doesn’t happen, takes the user to the warning page
  • Warning page, informing that the user should install the root certificates…
  • The good HTTPS page, the original page where you want your users to go

We leave this improved version as an exercise to the reader.

Posted in Digital certificate practices | 2 Comments

Moving to digital signature in Paraguay

Paraguay’s government published oficially the law project, that gives legal validity to electronic signatures, digital, data messages and electronic case files.

President Fernando Lugo had objected  entirely the project, but both houses of Congress were ratified in their approval, which is why the executive had no choice but to enact.

The government must regulate the project 90 days after publication, on December 24th.

The electronic signature is the integrated set of electronic data, linked and logically associated with other electronic data, used by the signatory as their means of identification.

The digital signature is an electronic signature certified by an accredited provider while the message data is any information generated, sent, received through electronic means (mail, telegram, telex, telefax, etc.)..

Posted in Digital signature success stories | Tagged | Leave a comment

ECB urges financial institutions to incorporate electronic signatures for its operations

The Central Bank of Ecuador, will incorporate its services, electronic signature technology. It can increase the level of confidence in electronic transactions and information exchange, so it also urged financial institutions to use this technological tool to secure the electronic transactions of their customers, and reduce the risks of theft and fraud in the banking system.

This technology guarantees the authenticity of who generates a data message, digitally signed document integrity, and also there is no possibility for a signatory to deny its action.

The electronic signature is data in electronic form attached to a data message, that identify the signature holder in relation to the data message and indicate that the signatory approves and recognizes the information contained therein. It has the same legal validity as a handwritten signature.

This signature is generated using a digital certificate, with which the certifying authority assures the link between the user’s identity, its public key and the private one.

El  Banco Central del Ecuador, incorporará a sus servicios el uso  de  la  tecnología  de  firma  electrónica, la misma permite aumentar   el  nivel  de  confianza  en  la  realización  de  transacciones electrónicas  y  en  el  intercambio de información, por lo también instó a las Instituciones Financieras a usar  esta herramienta tecnológica  con  el  fin de asegurar las transacciones electrónicas de sus clientes y reducir los riesgos de robo y fraude en el sistema bancario.

Dicha tecnología ofrece  garantías  de  autenticidad  de  quien  genera un mensaje de datos, integridad  de  documentos firmados electrónicamente, confidencialidad y además no existe la posibilidad para que el firmante niegue su acción.

La  firma  electrónica,  son  datos  en  forma electrónica adjuntados en un mensaje de datos, que identifican al titular de la firma en relación con el mensaje  de  datos, e indican que el titular de la firma aprueba y reconoce la  información  ahí contenida.  Tiene la misma validez legal que una firma autógrafa.

Dicha firma se la generará a través de un  certificado  digital  mediante  el  cual la autoridad  de  certificación  asegura la vinculación entre la identidad del usuario, su clave pública, y privada.

Posted in Digital signature success stories | Tagged | Leave a comment

Digital Signature at universities: Universitat Ramon Llull (URL)

¡Clica aquí para leer entrada en español!

Universitat Ramon Llull (URL) will drastically reduce paper storage, and the execution time of its administrative tasks, through the use of digital signature.

This university consists of ten federated institutions. Each and every one of its centers, may supplement their applications with electronic signature process for its users.

Thanks to this, the signing of minutes, publication of letters, contracts with suppliers, documentary control, may be carried out telematically, without requiring paper printouts, or people travellng.

To achieve this, Universitat Ramon Llull has decided to implement PortaSigma. A centralized instance of our tool will provide each center’s computer applications, the necessary services for its users to sign and validate documents using their digital certificates.

To access PortaSigma, applications make use of the web services available through the API.

Universities are certainly environments that meet a series of features that make them suitable for the deployment of digital signatures. Among others:

  • Arrangements with banks, for the distribution of cryptographic smartcards, and digital certificates, for students and teachers
  • Handle large amount of documentation, which often require a handwritten signature of participants in the process

Being a cross-application tool, PortaSigma can also help improve the administrative processes in many other industries. Banking, Insurance, employment, Veterianaries and universities, are just the tip of the iceberg of the universe using this tool. From iSigma, we’ll do our best to further improve many processes and industries with digital signature.

Román de Blas / rdeblas@isigma.es

Posted in Digital signature success stories | 1 Comment

PortaSigma, more international and easy

¡Clica aquí para leer la entrada en castellano!

PortaSigma keeps growing for you.  This time we present two new developments that might interest you:

First of all, we’ve modified the signatorie’s identification system to a new applet, which gets the following improvements:

  • We have minimized the weight of this component, so that the download occurs so quickly that it is nearly not time consuming
  • We have optimized the certificate’s filter system, so now we present them in a much comprehensible way for the user

With these changes, the recipients of your signing requests can access and operate in PortaSigma faster and more intuitively.

Secondly, following our international focus, we have adapted PortaSigma to the requirements of certificates from the following countries: Colombia, Estonia and Finland.

This is only the first step in our goal of covering the largest number of providers of certification services worldwide. Future versions will incorporate also certificates from other countries.

For now, as a new, can benefit from the advantages of PortaSigma, users of the following certificates:

  • Certicamara, Colombia
  • Identifier from SK (Certification Centre, legal name AS Sertifitseerimiskeskus), Estonia
  • Population Register Center, Certificate Services, Finlandia

We keep on making signature easier. If you have still not tried PortaSigma, do it now!

Román de Blas / rdeblas@isigma.es

Posted in Digital Signature Software | Tagged , | Leave a comment

2011 will “kick off” digital signature in Panama

In January 2011, the Public Registry will begin the pilot of the electronic or digital signature, to save money and paper in all government procedures that take place thereafter.

Luis Barria, president of the institution, said that by implementing this new electronic system, the Public Registry will become the rating agency of all writing issued by lawyers.

Also implement digital signature in public tenders requiring the use of digital portal PanamaCompra.

Barria said this project was created in the Public Registry, the Department of Digital Signatures.

In the 2011 budget were approved B / 4 million to begin this project, Barria said.

“The Public Registry will provide funds with all equipment and consultancy for the judiciary, PanamaCompra, the Comptroller General of the Republic, the Ministry of Economy and Finance and for all notaries in the country,” Barria said.

It is expected than in mid-2012, it is used in all entities.

Posted in Digital signature success stories | Tagged | Leave a comment

New ClickSign features

As promised, we keep improoving ClickSign, with the features many of you asked us for.

Our new vesion includes an advanced visible signature setup Tab, to associate our digital signature, to the image we want, and set it at any position in the document. This way, when digitally signing, we will be able to add our handwritten signature to the PDF document.

Another new feature , is that when signing a document which contains void digital signature fields, ClickSign locates them and adds our digital signature there.

Finally, we have created a link to PortaSigma, so that the document can be shared, and other signature requests sent. Each request will run advise to the signant, and a link to go in to sign the document in PortaSigma.

Moreover, with the first installation, now we generate a 1 month ClickSign Pro evaluation license, so that all the features of the product can be tested.

¡Download our new version here!

Posted in Digital Signature Software | Leave a comment