Home » SaaS

https://www.linkedin.com/pulse/why-zorrosign-moved-microservices-you-should-too-shamsh-hadi/

At ZorroSign we recently made a major change to our platform architecture!

We have always been built on blockchain—and have always delivered the most private, most secure digital signatures—but we wanted to scale our platform much more aggressively, and that vison required a big change in how we develop and deploy our technology. Specifically, we moved from a centralized, monolithic approach to using microservices and containers.

Let me explain why we choose this new engineering approach and how your company might benefit from a similar move.

What Are Microservices? What Are Containers?

“A microservices architecture splits your application into multiple services that perform fine-grained functions and are part of your application as a whole,” explains IBM. “Each of your microservices will have a different logical function for your application.”

Explained another way, “a microservices framework creates a massively scalable and distributed system, which avoids the bottlenecks of a central database,” says Avi Networks (now part of VMware). “Microservices break an application into independent, loosely-coupled, individually deployable services… allowing for each service to scale or update using the deployment of service proxies without disrupting other services in the application and enabling the rapid, frequent and reliable delivery of large, complex applications.”

There are two types of microservices:  Stateless (which do not save data, so any data is lost when the microservice’s container restarts), and Stateful (which do save data and so write to a database).

And where do you put those microservices? In containers.

“Containers are packages of your software that include everything that it needs to run, including code, dependencies, libraries, binaries, and more,” continues IBM. “Docker and Kubernetes are the most popular frameworks to orchestrate multiple containers in enterprise environments”

“Containers are a lightweight alternative to VMs for providing isolated operating environments for your workloads,” says Edward Kisller for JFrog. “Containers avoid the infrastructure overhead of a full-blown OS and provide only those resources (i.e., installations, dependencies, and code) that your applications actually need.” In other words, containers do not use all the CPU or RAM but instead share the operating system kernel for faster boots and less memory consumption.

“A container is a useful resource allocation and sharing technology. It’s something dev-ops people get excited about,” writes Ev Kontsevoy for Teleport. “A microservice is a software design pattern. It’s something developers get excited about.”

Why Develop with Microservices? What Are the Benefits?

“Microservices architectures make applications easier to scale and faster to develop,” notes Amazon Web Services. “Enabling innovation and accelerating time-to-market for new features.”

Such were ZorroSign’s high-level goals:  To improve scalability, resilience, and productivity.

“Moving to microservices enabled a polyglot tech stack,” said Priyal Walpita, chief technology officer at ZorroSign. “Which means our engineers could contribute to our development efforts using the technology stacks that they know best, plus we boosted performance and facilitated a continuous delivery pipeline for easier and faster deployments.”

“Applications were traditionally built as monolithic pieces of software,” continues Avi Networks. “Monolithic applications have long life cycles, are updated infrequently and changes usually affect the entire application. Adding new features requires reconfiguring and updating the entire stack — from communications to security. This costly and cumbersome process delays time-to-market and updates in application development.”

In contrast to monolithic apps, microservices/container architectures bring benefits such as greater:

  • Agility — Microservices foster the organization of small, independent teams that take ownership of their services. “Best examples of microservices agility are sites like Amazon, eBay, Uber and Netflix, which are active 24×7,” notes AnAr Solutions. “The performance of these sites is a benchmark for other sites and applications. The response time, ability to handle multiple requests and process in minimum time is commendable.”
  • Productivity — “The microservice architecture tackles the speed issue of applications and its productivity by dividing it into small parts. In this way, these applications are developed and maintained at a very fast speed,” writes Terralogic. “Different teams work independently without waiting for the other team to finish their chunks of work. In this way, separate microservices are easier to locate and modify. Quality assurance of this microservice architecture is very fast as the programs which are developed early are tested instead of waiting for all the programs to be completed.”
  • Resilience — With microservices, an application will still function if part of it goes down because microservices allow for spinning up a replacement, granting the entire system higher resilience. “Three well-known microservices resiliency techniques improve fault tolerance and allow applications to smoothly handle failures,” explains Dr. Alan F. Castillo for Cloud Computing Technologies: Retry patterns, circuit breaker patterns, and timeout design patterns. “Employing these patterns is a very effective resiliency strategy for microservices applications. It doesn’t matter how you apply these patterns; what matters is that you have systems that can properly deal with failures.”
  • Continuous integration/continuous delivery (CI/CD) — Microservice facilitate CI/CD for applications and modernize the technology stack. “There are some goals of a strong CI/CD progression to serve in the microservices design, for example, every team of coders independently develop and install their changes or edits owned by them individualistically so that it did not affect or disrupt the work of other teams,” reports DevOps Enabler. “CI/CD best practices include the goal of automating the building process, testing the products, and then releasing the software. Developers must be able to track the performance metrics of DevOps throughout the software delivery lifecycle and warn people so that they can quickly recover if something goes wrong during deployment or release cycle.”
  • Scalability — Meeting demand is easier when microservices only have to scale the necessary components, which requires fewer resources. “Since an application is composed of multiple micro services which share no external dependencies, scaling a particular micro service instance in the flow is greatly simplified,” writes Atul Saini for Fiorano Software. “If a particular microservice in a flow becomes a bottleneck due to slow execution, that microservice can be run on more powerful hardware for increased performance if required, or one can run multiple instances of the microservice on different machines to process data elements in parallel.”
  • Security — “Migrating to microservices creates an opportunity for a much better security model,” explains Kontsevo. “As every microservice is a specialized process, it is a good idea to only allow it to access resources it needs. This way a vulnerability in just one microservice will not expose the rest of your system to an attacker.”

Not everything is easier with microservices, of course. Three commonly acknowledged challenges of deploying microservices typically include: First, the “complexity from managing microservices written in different languages,” as we’ve done at ZorroSign. Second, the “cost implications of network resource usage from remote calls across multiple services” and third, “investigating root causes or auditing systems becomes challenging when dealing with log management across distributed services, as log aggregators would be required,” suggests BMC.

But complexity, costs, and support all increase when any application grows, so facing those challenges with a microservices architecture is little different than facing the complexity, costs, and support challenges of a larger monolithic app.

Why ZorroSign Choose Microservices—and Why You Should, Too

Our CTO and I have been assessing microservices for several years, and committed to an overhaul of our DevOps a year ago. We spent the first half of 2022 building the next iteration of ZorroSign’s blockchain platform with microservices and containers.

“Beyond the development advantages, microservices allow us to more easily manage complex ZorroSign back-end services and improve our entire system’s resiliency,” said Walpita. “It’s far easier finding and fixing bugs, allowing our development team to focus on single, isolated functionality, and then deploying asynchronously to other development efforts, whenever new functionality is tested and ready.”

From my perspective, I was intrigued to learn how microservices improved our defense-in-depth capabilities, as security can be configured much more granularly and configured at each microservice level. With ZorroSign’s commitment to privacy and security, microservices were another important upgrade to keep our platform ahead of the competition.

“Our team develops in C#, Go, Java, and Python,” adds Walpita. “Being able to deploy all those program languages in a single application, united across AWS cloud tools, Docker, and Kubernetes, gives ZorroSign the flexibility our engineers desire and the scalability our customers demand.”

Finally, I asked Priyal what advice he might give other organizations thinking of deploying microservices. He said: “Make sure your product and development team are mature enough to adopt the complexity of a microservice architecture. At some point, a growing app’s need for scalability, higher resilience, and improved performance may make microservices the best path forward. But ensuring your DevOps are ready to integrate and manage all the pieces of a polyglot tech stack is the key to success.”

I encourage you to consider microservices for your apps, and welcome the chance to talk more about this exciting architecture for new technologies!

Blockchain-based digital signatures for greater privacy and security

With more and more businesses, governments, and individuals employing blockchain technology for commerce and operations, ZorroSign stands as key addition to your technology stack. 

Whether you’re decentralizing data with web3, securing cloud or software-as-a-service (SaaS) architectures, committing to digital transformation, or elevating sustainability, our multi-chain blockchain solution is the perfect addition to your IT offerings—learn how!

If You’re Decentralizing with Web3

The idea of escaping a centralized authority managing protocols, transactions, and access was built into the World Wide Web from its earliest days

  • Web 1.0 was the initial iteration of the World Wide Web in the late 1980’s and early 1990’s.  “Web 1.0 is the term used for the earliest version of the Internet as it emerged from its origins with Defense Advanced Research Projects Agency (DARPA),” writes Kuntal Chakraborty for Techopedia. “Experts refer to it as the ‘read-only’ web—a web that was not interactive in any significant sense.”
  • From those early static web pages, a platform model of computing soon evolved that would become Web 2.0 or the ‘social web.’  Here, interaction with growing web applications and platforms drove e-commerce and the expansion of the Internet, allowing large providers to aggregate and control much of the shared data.  This is the Internet we know today.
  • The dream of Web 3.0, however, is to break the centralization of information and democratize the Internet more to the vision of its earliest founders.  “Web3, ” claims Chris Dixon from Andreesen Horowitz in a recent article in The Economist, “combines the decentralized, community-governed ethos of web1 with the advanced, modern functionality of web2.”

“The rise of technologies such as distributed ledgers and storage on blockchain will allow for data decentralization and create a transparent and secure environment, overtaking Web 2.0’s centralization, surveillance and exploitative advertising,” writes Charles Silver in a recent Forbes article.  “Indeed, one of the most significant implications of decentralization and blockchain technology is in the area of data ownership and compensation… Web 3.0 will bring us a fairer internet by enabling the individual to be a sovereign.”

Blockchains are distributed ledger technology (DLT) leveraging cryptography—user authentication, data encryption and verification—to secure information records (blocks) distributed across peer-to-peer (P2P) networks. DLTs replicate, share, and synchronize digital data geographically spread across multiple sites (nodes), with no central data storage or administrator. They can run publicly (open) or privately (permissioned).

Perhaps most importantly, blockchains can support smart contracts—where terms, conditions, and permissions written into the digital code that require an exact sequence of events to take place to trigger the agreement of the terms mentioned in the blockchain contract. This hardwiring of contract details greatly increases speed (via automation), trust (where accuracy and backup are built into the transaction), and autonomy (as no third parties are required to mediate or control the exchange) of transactions.

As such, centralized solutions such as blockchains have immense potential to transform business contracts, real estate deals, digital rights, supply chain security and provenance, estate planning, and many other legal transactions.

And here is where ZorroSign shines! 

User Experience

We have built our digital platform from the ground up using blockchain technology.  Launched with Hyperledger Fabric, our multi-chain platform now supports the public Provenance Blockchain as well, giving our users an entirely new world of decentralized digital transactions.

Our web3 technology platform also provides identity-as-a-service (IDaaS) capabilities through a patented Z-Forensics token plus fraud prevention, user authentication, and document verification.  Web3 features such as artificial intelligence (AI) and machine learning (ML) allow us to automate form completion for digital documents, and can improve regulatory compliance across global standards for legally enforceable digital signatures.

Paired with Provenance Blockchain—which reduces the need for third-party intermediation, drastically reducing costs and freeing up capital in financial transactions—ZorroSign’s platform promotes greater transparency and liquidity for organizations, and allows for new kinds of financial engineering and business opportunities.

If You’re Securing SaaS or Cloud Solutions

More than 90% of all cyber attacks begin with phishing but blockchain architecture, originally built for zero-trust environments, can deliver a compelling alternative to centralized databases and a strong protection against cyber attacks. How?

  • In phishing attacks that seek to steal data, blockchain presents a data architecture where no single endpoint node controls the data set. Even if an individual endpoint is hacked through phishing or other social engineering, the data set is distributed across many nodes. This decentralization of data and access means even successful phishing attacks that penetrate a blockchain endpoint only gain a small piece of system access.
  • In cyber attacks that seek to inject malware such as ransomware, the distributed nature of blockchain defeats those seeking to breach a system then holistically ransom the data files stored therein. Again, a single endpoint node might be breached, but the larger data set cannot be controlled by any one endpoint (or central authority) and so attackers cannot capture the full data set for encryption, ransom, and shutting down the network.
  • Recovery is quicker with blockchain, too. With blockchain, each endpoint node has a unique encryption key to access and write to the distributed ledger. If any one of those endpoints is successfully hacked (compromising their access key), the blockchain can simply remove distributed ledger access for that compromised key, issue the endpoint a new key, and allow that endpoint to quickly regain distributed ledger access (effectively as a new endpoint). This speedy recovery process effectively maroons any ransomware on the endpoint it attacked—ending its access and threat—while allowing the endpoint to re-engage the larger data set with a new key and without needing to pay any ransom to the attackers for restored access.

ZorroSign technology leverages the biometric capabilities of hardware endpoints to verify user identities—for example, PC and mobile device fingerprint scans, iris scans, and face recognition to ensure users are who they claim to be.

ZorroSign is proud to be the first to adopt password-less login amongst our digital signature competitors.

And ZorroSign multi-factor authentication (MFA) provides maximum security, as before a user can sign a document, our platform can validate multiple dimensions of authentication based upon your transaction security needs: What you know (i.e., your ZorroSign login password ), what you have (e.g., your laptop or mobile device), who you are (e.g., biometrics such as fingerprints or eye iris on the device securing who can access it), etc.

ZorroSign has further elevated our security through our patented fraud detection technology we call the Z-Forensics token, our unique digital solution that can:

  • Prove that the individual who is performing the action to sign the document is who they claim to be (verification); 
  • Apply a digital equivalent of a wet-ink signature to the document (legal intent); and, 
  • Prove the authenticity of the printed copy or digital version of an electronically signed document, its content, attachments, and the signatures on it (authenticity).

Unlike any other digital signature solution, ZorroSign seals all your documents with our Z-Forensics token—capturing the complete audit trail and accompanying attachments and signature workflow. The token is encrypted and contains all the details about the transaction: Time stamps, user authentication, documents and attachments.

And like your SaaS solutions, ZorroSign’s SaaS model can be deployed in various cloud configurations, making it seamless to integrate into your existing platform as a public, private, hybrid, or on-premise cloud:

  • Our standard deployment is on Amazon Web Services (AWS) public cloud computing network
  • In our private cloud configuration, all your data and the ZorroSign application run in a private and secure cloud network dedicated to your organization
  • In a hybrid cloud configuration, your data can be stored on either ZorroSign data centers or in the private cloud, while the ZorroSign platform and applications run on their standard public cloud configurations
  • On-premise deployments require your department to manage and maintain your own data centers, but gain the benefits of unlimited API calls and total control over identity access management (IAM), data privacy and security, and data integrity processes

If You’re Committed to Digital Transformation

For years, organizations have steadily moved more and more of their operations to digital data and delivery. Such advances save time and effort, automate key processes, and drive greater efficiency and effectiveness. With digital transformation, customers or constituents can receive services faster and gain self-service options, and employees get more time to work on the most important projects.

“Digital transformation is no longer an option, but an imperative,” notes the Harvard Business Review. “Recent research from Accenture has found that in the three years prior to 2018, firms who led their industry in enterprise technology adoption grew two times faster than laggards. Today, they are growing five times faster. The risk is no longer merely getting left behind, but being eliminated altogether.”

For organizations leveraging digital data, apps and SaaS, IoT, or any of the multitude of other digital solutions, adding ZorroSign can be an important consideration.

To transact business, commerce, government, or individual trade in such a digital ecosystem also requires legally enforceable digital signatures to prove agreement and intent. Our multi-chain blockchain platform delivers such digital signatures and ensures the digital chain-of-custody necessary to successfully defend digital signatures in a court of law.

And by digitizing paper-based workflows, ZorroSign’s digital signature and document management platform can decrease costs, reduce errors, and increase productivity across digital operations . . . a massive benefit for any organization committed to digital transformation!

If You’re Focused on Sustainable Business

Digital operations also eliminate paper so “going green” with paperless operations may readily align to your IT organization’s corporate social responsibility goals or vision. 

At ZorroSign, we help IT organizations deliver paperless operations. We all understand that switching from doing business using paper to digital records is not only a smart business decision, but it is also good for the environment. Each time you use ZorroSign to digitally transact agreements, contracts, and other documents—instead of printing, faxing, scanning, shipping documents overnight to collect signatures—you save trees and water, plus reduce carbon emissions.

Further, ZorroSign is dedicated to advancing sustainability while advancing new technologies, promoting a paperless life and leading sustainability programs that support environmental conservation. The company’s Save-a-Tree, Plant-a-Tree program, for example, plants a tree on behalf of customers every time they save 8,000 pages of copy paper. As one tree produces roughly 8,000 pages of copy paper, this amounts to a double incentive: Reducing the destruction of trees via reduced paper use, plus increasing the number of trees as a reward for reducing paper use.

For all these reasons and more, if you are using blockchain technologies—or planning to in 2023—consider ZorroSign as a strong complement to your technology stack!  You can start with a free 14-day trial to see what we can deliver or contact us to learn more!

Global ZorroSign
(Originally published on LinkedIn by Shamsh Hadi, CEO and Co-Founder of ZorroSign)

Last year, I shared how ZorroSign’s early roots in Dubai, UAE, helped us grow into an international company. I want to update that theme today and talk about ZorroSign’s role as a global company providing global solutions that improve data democratization, privacy, and security.

As CEO and co-founder of ZorroSign, I have dedicated my career to advancing technology while simultaneously advancing sustainability:  Ensuring the new technologies we bring to market elevate information privacy, data security, and data democratization while not coming at the expense of future generations.

At ZorroSign, we saw very early a market need to push past web2 solutions for digital signatures and digital transactions—escaping centralized information architectures that consolidate data with a provider (and expose that data to the risks of single-point-of-failure cyber-attacks) while simultaneously pulling data ownership away from users (to be housed and monetized by the web2 provider). Alternatively, ZorroSign empowers our users by deploying web3 solutions that decentralize data and ensure users will always own their documents and transaction metadata—even after their subscriptions with us end.

Dubai Start, Dubai Strong

As a long-time resident of Dubai, I was greatly inspired by the Digital City Vision—Smart Dubai of H.H. Sheikh Mohammed bin Rashid Al Maktoum. ZorroSign’s technology very purposefully supports Dubai’s paperless initiatives for Digital Dubai and helps to advance Dubai’s leadership in digital operations, specifically focused on:

  • Security—providing superior digital privacy and security by leveraging a private, permissioned blockchain technology
  • Digital Signatures—a platform that is easy-to-use and legally compliant to global standards
  • Chain of Custody—delivering immutable records of every step of every digital transaction: Authenticating users, securing data, and verifying documents for legal enforceability
  • Advancing UAE’s 10 Principles for the Next 50 Years—specifically helping Dubai to build the best and most dynamic economy in the world; defining new UAE development with digital, technical, and scientific excellence; and promoting a value system based on openness and tolerance

Initially, our company served government departments in UAE but soon grew into an international business—helping people to build, sign, store, and track mission-critical documents on the blockchain in Sri Lanka, India, and the United States.

Last year, ZorroSign was named Blockchain SaaS Innovator of the Year at the UAE Business Awards 2021, then at the turn of the year, Unlock News Desk showcased a story on UAE Based ZorroSign introducing six new features to our blockchain platform.

This spring, Tech Channel wrote a great article on ZorroSign making waves in digital signature space using blockchain technology, and TahawulTech.com interviewed me on how ZorroSign helps tackle identity theft on our now multi-chain blockchain platform.

And most recently, ZorroSign was highlighted in a Zawya article for UAE businesses and a TECHx article on ZorroSign’s mission to provide businesses across the Middle East with seamless integration of document management and secure digital signature solutions.

I am incredibly proud of our continued success in my home town, and while ZorroSign expands our global presence, the UAE and other Gulf Cooperation Council countries will be a strategic market for us.

Success in South Asia

From the start, ZorroSign has had close ties with the south Asia countries of India and Sri Lanka. While operations started in Dubai, our development center of excellence has always been in Colombo!

Our blockchain architecture was conceived, coded, and cultivated entirely in Sri Lanka with a vision to provide global customers with the ability to securely transform paper-based workflows to digital operations. I could not be prouder of our Sri Lanka team, and though they are struggling through that beautiful country’s difficult political and economic crisis, they have proven again and again the resilience and tenacity of their engineering genius.

Recently, APAC Business Headlines recognized the ZorroSign team as the “Most Innovative Blockchain Company from Sri Lanka” for 2022! The award validates the hard work of our center of excellence team, and further proves blockchain’s prominence on the global stage.

This recognition followed our 2021 success where the International Business Awards® named ZorroSign a Gold Stevie® Award Winner for Blockchain Solutions. The Stevie’s are the world’s premier business awards program, where in 2021 more than 3,700 nominations from organizations across 63 nations and territories—of all sizes and in virtually every industry—were submitted for recognition. We were delighted to be awarded a gold Stevie for our blockchain solution and to be recognized as a Company of the Year, and Most Innovative Tech Company of the Year. Most flattering, the judges were quick to note that ZorroSign is “one of the few companies that are able to use blockchain technology to solve a real business problem” . . . a strong endorsement of our digital signature technology, built on blockchain, and paired with identity-as-a-service (IDaaS) and patented fraud detection, to authenticate users and verify documents across digital transactions.

Tackling North American Markets

As a U.S. citizen who has lived in Canada, China, and the UAE at various times over the past forty years, my goal was always to return home and bring ZorroSign’s blockchain solutions to North American users.

In August 2020, we opened our global operations hub in Phoenix, Arizona—ushering in a new phase of business growth. We quickly established local partnerships with Arizona State University, Grand Canyon State University, the Arizona Commerce Authority, Arizona Technology Council, City of Phoenix, Global Chamber®, the Greater Phoenix Economic Council, and many other incredible organizations!

And we’ve engaged government agencies, financial services providers, IT businesses (and departments), legal services firms, real estate companies, and several other verticals to prove the value of a paperless life and the most private, secure, compliant digital transactions hosted on blockchain. Early adopters of our web3 solutions are excited to embrace ZorroSign’s robust platform to advance their digital operations and gain a competitive advantage in a market place still dominated by legacy, web2 technologies.

Global Privacy and Security Compliance

Our unique combination of blockchain architecture, web3 technologies, artificial intelligence/machine learning, and patented fraud prevention grants ZorroSign compliance across many international standards for privacy and security.

The list continues to grow as we expand our markets, but already includes:

  • Canada’s Personal Information Protection and Electronic Documents Act (PIPEDA)
  • Canada’s Uniform Electronic Commerce Act (UECA)
  • The European Union’s Data Protection Regulation (GDPR) for data privacy and security
  • EU’s electronic IDentification, Authentication and trust Services (eIDAS) regulation
  • India’s Information Technology Act 2000 (IT Act of India)
  • International Standard on Assurance Engagements (ISAE) No. 3402, Type II audited
  • International Organization for Standardization (ISO) 27001 certified
  • PDF Advanced Electronic Signatures (PAdES) is a set of restrictions and extensions to PDF and ISO 32000-1
  • The UAE’s Federal Law No. 1 of 2006 regarding Electronic Transactions and E-Commerce granting electronic signatures legal force and effect
  • The American Institute of Certified Public Accountants (AICPA) SOC 2 Type I audit
  • USA’s California Consumer Privacy Act (CCPA)
  • USA’s Department of Commerce’s National Institute of Standards and Technology (NIST) encryption standards
  • USA’s Digital Millennium Copyright Act (DMCA)
  • USA’s Electronic Signatures in Global and National Commerce Act (E-Sign Act)
  • USA’s FDA Title 21 of the Code of Federal Regulations; Electronic Records; Electronic Signatures
  • USA’s Health Insurance Portability and Accountability Act (HIPAA)
  • USA’s Uniform Electronic Transactions Act (UETA)

I am proud of all ZorroSign has achieved for our international customers and incredibly excited about some big announcements later this summer! ZorroSign is truly a global company delivering global solutions, and we are not resting on our laurels—the best is yet to come.

Contact us to learn more . . . or start your free trial to put our digital signature software to the test!

June 30th, 2022 marks the 22nd anniversary of the U.S. Electronic Signatures in Global and National Commerce Act (ESIGN Act)—a critical piece of legislation that ensures “a signature, contract, or other record relating to such [commercial] transaction may not be denied legal effect, validity, or enforceability solely because it is in electronic form.”

In 2010, both Houses of Congress passed a resolution recognizing June 30th thereafter as National ESIGN Day!

If you’re a fast-growing business or organization that still uses pen and paper to sign your mission-critical documents or uses a different digital signature solution, here are three reasons why you should start using ZorroSign on this day we commemorate the global adoption of digital signatures . . .

Elevated Privacy and Security

ZorroSign was built from the ground up on Hyperledger Fabric—one of the most trusted private blockchains—to deliver digital signatures with the superior privacy and security of blockchain. “Hyperledger Fabric is a permissioned blockchain where each component and actor has an identity, and policies define access control and governance,” explains Hyperledger’s Security Model. “Each of these actors has a digital identity encapsulated in an X.509 digital certificate issued by a Certificate Authority (CA). These identities matter because they determine the exact permissions over resources and access to information that actors have in a blockchain network.”

As a distributed ledger technology, ZorroSign stores information in a secure and accurate manner using cryptography, where “once the information is stored, it becomes an immutable database and is governed by the rules of the network.”

Further, ZorroSign incorporates Identity-as-a-Service (IDaaS) to authenticate users across multiple dimensions, such as what you know (your login password), what you have (your laptop or mobile device), and who you are (biometrics such as fingerprints or eye iris on the device securing who can access it), etc.

All that being said, with the amount of cybercrime that is present today, it is vital that you have peace of mind that your information and critical documents are private and secure, and ZorroSign provides that solution for you and your business.

Helps Reduce Errors and Omissions (E&O)

Make your critical document form-fill completion process smarter, faster and more accurate using ZorroSign’s automated engine, Z-Fill.

Built with artificial intelligence (AI) and machine learning (ML) to speed form completion and increase accuracy, ZorroSign’s Z-Fill feature helps your customers fill forms with ease by anticipating entries, reducing errors by matching profile information to form-fill options, and learning from historical form-fills to anticipate more and more entries over time.

Plus all of your documents can be stored on ZorroSign’s Z-Vault for regulatory compliance and the immutability of signed documents, metadata, and workflow records. Z-Vault enables you to store, structure, organize and search documents in folders and subfolders natively, with the peace of mind that comes from superior blockchain privacy and security.

Available in Multiple Cloud Configurations

On top of providing the security and compliance features that your company and customers need, ZorroSign’s software-as-a-service (SaaS) model can be deployed in various cloud configurations, making it seamless to integrate into your existing platform.

Our multi-chain blockchain platform can be deployed in a public, private, hybrid, or on-premise cloud:

  • Our standard deployment is on Amazon Web Services (AWS) public cloud computing network
  • In our private cloud configuration, all your data and the ZorroSign application run in a private and secure cloud network dedicated to your organization
  • In a hybrid cloud configuration, your data can be stored on either ZorroSign data centers or in the private cloud, while the ZorroSign platform and applications run on their standard public cloud configurations
  • On-premise deployments require your department to manage and maintain your own data centers, but gain the benefits of unlimited API calls and total control over identity access management (IAM), data privacy and security, and data integrity processes

If you’re ready to try ZorroSign’s multi-chain blockchain platform for yourself on National ESIGN Day, start your Free Trial today!

ZorroSign is proud to launch consumption-based pricing for our software subscriptions! 

As software-as-a-service (SaaS) evolves and specializes, we are seeing the unsophisticated per-seat pricing model wane as users demand more control over their usage and corresponding costs. SaaS-providers who meet that need are better aligned with their customers and can deliver both stronger performance and instill greater loyalty by only charging for those services and resources their customers use.

“A consumption-based pricing model is a service provision and payment scheme in which the customer pays according to the resources used,” notes a recent TechTarget article. “This model is essentially the same as the utility computing payment structure and those of other utilities, such as water and electricity.”

Consumption-based pricing for SaaS solutions means escaping from rigid per user/per month pricing schemes and offering customers a more tailored experience with their software subscriptions.

“Your customers shouldn’t feel forced to pay month-to-month for services they’re not actually using on a regular basis,” notes Brent Barnhart in a usage-based pricing article. “Usage-based pricing is often presented as a sort of win-win for customers and companies alike. That is, your users enjoy some much-needed flexibility in terms of their budgets while also holding themselves accountable for how much they end up using your product.”

With ZorroSign, for example, Individual subscriptions can be priced by set numbers of documents or unlimited document sets, while Business subscriptions are custom priced by number of needed users, signers, and document sets. And our Enterprise subscriptions are priced granularly by users and documents used so users are not paying for unused licenses or consumption.

Other digital signature platforms still cling to per user/per month pricing which leaves many of their customers unsatisfied with paying higher subscription fees than they actually need. ZorroSign is offering an alterative approach that brings clear benefits to customer finances and scalability.

Zuora, leading subscription economy evangelist, summarizes the immediate benefits of consumption-based pricing as:

  • “Customer satisfaction. When customers can self-serve, they’re more likely to feel they’re receiving value for the price.
  • “Go-to-market agility. Flexible combinations of recurrent and consumption pricing allow companies to experiment, testing in-market and readjusting quickly.
  • “Reduced revenue leakage. Efficient pricing models mean there’s less money left on the table as you optimize product usage—and revenue generated—from each customer.”

“We not only want to deliver the highest technology standards for privacy, security, and compliance,” says Shamsh Hadi, CEO and co-founder of ZorroSign. “We also want to deliver unmatched value to our customers—and that starts with a pricing model aligned to their needs for digital signatures, IDaaS, and digital document workflows.”

To see our new pricing and calculate how much an individual or business subscription might cost your organization, visit www.zorrosign.com/pricing/ or contact us today.