What is Web Cryptography API?

by Excellium SA

What is Web Cryptography API?

by Excellium SA

by Excellium SA

Before getting down to today’s topic, Web Cryptography API, note that all the photos below are available here1https://github.com/ExcelliumSA/WebCryptographyAPI-Study/tree/main/post in better quality.

Anyone developing a web application with a front-end may need to perform cryptographic operations like hashing, encryption, signatures on the client-side (JavaScript code). The habits lead to import and use popular external libraries like crypto-js21. https://www.npmjs.com/package/crypto-js  in order to be portable across all targeted browsers:

crypto import from a browser

crypto-js

 

The library has been working well for years, so why should I stop using it?

No troll allowed here

The goal of this blog post is not to say that Web Cryptography API is the best API or that you must replace your existing JS cryptographic API with Web Cryptography API.

The goal is just to present to you what Web Cryptography API is and what it offers.

What is the Web Cryptography API?

From the RFC32. https://w3c.github.io/webcrypto/ , it is a:

JavaScript API for performing basic cryptographic operations in web applications, such as hashing, signature generation and verification, and encryption and decryption. Additionally, it describes an API for applications to generate and/or manage the keying material necessary to perform these operations.”

To summarize, it brings native capabilities to browsers to perform different types of cryptographic operations using an API:

  • Generate cryptographically random values.
  • Encrypt and decrypt content using symmetric or asymmetric encryption algorithms.
  • Sign and verify the signature using symmetric or asymmetric algorithms.
  • Derive key and bits from base keys or source of bits.
  • Generate hash of content.

In addition, it supports operations regarding the key management :

  • Generate symmetric or asymmetric keys for different kinds of usage.
  • Export/import key using secure/insecure methods.

The API does not handle the following aspects43. https://w3c.github.io/webcrypto/#scope-out-of-scope (some points in the list below were directly taken from the RFC):

  • Key (secure) persistence in browser storage systems.
  • The provisioning of keys in particular types of key storage, such as secure elements or smart cards.
  • Communication and discovery of cryptographic modules.
  • The RFC places no normative requirement on how implementations handle key material once all object references to it are removed.

 

Why Web Cryptography API is not the Holy Grail?

The API provides low-level cryptographic operations, so, it requires to know “what you are doing” when using the different features. Indeed, the API does not protect you against incorrect usage55. https://cwe.mitre.org/data/definitions/329.html of the cryptographic algorithms supported.

In addition, like crypto-js, the API supports deprecated algorithms like MD5, SHA1, ECB mode of operation of AES, CBC mode of operation of AES, etc, thus, no warning will be raised if you decide to use one of them whatever your usage is legit or not.

In the same way, the Web Cryptography API will not warn you or raise an error if you create/use a key with broader key usages than the real one needed for the cryptographic operations performed.

To finish, like crypto-js, the Web Cryptography API lets you alone if you need to securely store a key or communicate with cryptographic modules from JavaScript code in the browser.

 

Why should I consider the Web Cryptography API?

Cryptography is a very complex and error-prone domain. Even if you stick to the standard, you can create a vulnerable code. Besides incorrect usage of a cryptographic library, one of the pitfalls is the quality of the implementation of the supported algorithms. Indeed, this type of issue is “invisible” for most of the users of a cryptographic library (including for the author of this blog post) in the way that it requires specific skills to identify that, the implementation of a cryptographic algorithm is unsafe.

For example, how you ensure, in an accurate way, that the cryptography library that you are using:

  • Implement correctly the algorithm that you want to use.
  • Provide battle tested implementation.
  • Patch, in an effective way, any security weakness identified.
  • Maintain, over time, the different implementations of the algorithms supported.
  • Is implemented by people having the required skills/experience.

Here comes the Web Cryptography API, by using it, you delegate the validations above to the provider of the browser, i.e. Google (Chrome), Mozilla (Firefox), Microsoft (Edge), Apple (Safari) for the main browsers. The section of the RFC named “Underlying Cryptographic Implementation66. https://w3c.github.io/webcrypto/#concepts-underlying-implementation defines the following statement:

This specification assumes, but does not require, that conforming user agents do not and will not be directly implementing cryptographic operations within the user agent itself. Historically, many user agents have deferred cryptographic operations, such as those used within TLS, to existing APIs that are available as part of the underlying operating system or to third-party modules that are managed independently of the user agent.”

The RFC recommended to browser providers not to implement cryptographic functions themselves but instead leverage industry-recognized modules. It is true that here we are in “delegationception” because you trust the browser that delegates the handling of cryptographic operations to another third party.

In addition, using Web Cryptography API brings the following benefits:

The end of white rabbit syndrome87. https://en.wikipedia.org/wiki/White_Rabbit

From a patching point of view, if a critical issue is identified in the implementation of an algorithm, you will not need any more to identify, in urgency, which of your web apps are using the vulnerable versions of the cryptographic library and then perform multiple updates and redeployments. The patching will be ensured via the auto-update feature of each browser. Most of them now have such a feature to keep them up to date.

To be honest a second, let us agree that entity like Google/Mozilla/Microsoft/Apple are better at cryptography/patch management than your company (mine included). Therefore, even if we are in two-stages delegation as described in the previous section, security level will be better than if you need to patch all your applications yourselves.

Browser support level

In June 2021, it was the following.94. https://caniuse.com/cryptography

web cryptography browser

Web Cryptography API capabilities

This section provides an overview of the capabilities brought, currently, by the Web Cryptography API (June 2021).

The source was the Mozilla documentation108. https://developer.mozilla.org/en-US/docs/Web/API/Web_Crypto_API combined with the RFC119. https://w3c.github.io/webcrypto/#algorithm-overview as well as validation using the labs presented (see further1210. https://github.com/ExcelliumSA/WebCryptographyAPI-Study).

Algorithms and operations supported:

Cryptographic operation Supported algorithm Protocol*
Generate cryptographically random values HTTP

HTTPS

Generation of a symmetric key for encryption/decryption AES-CBC

AES-CTR

AES-GCM

HTTPS
Generation of a secret for symmetric signature/validation HMAC
Generation of an asymmetric key pair for encryption/decryption RSA-OAEP
Generation of an asymmetric key pair for signature/validation RSASSA-PKCS1-v1_5

RSA-PSS

ECDSA

Symmetric encryption/decryption AES-CBC

AES-CTR

AES-GCM

Asymmetric encryption/decryption RSA-OAEP
Symmetric signature and validation HMAC
Asymmetric signature and validation RSASSA-PKCS1-v1_5

RSA-PSS

ECDSA

Hashing SHA1

SHA-256

SHA-384

SHA-512

Key derivation / bit derivation ECDH

HKDF

PBKDF2

Key wrapping  – From Mozilla documentation:

Exports the key in an external, portable format, and then encrypts the exported key.

AES-CBC

AES-CTR

AES-GCM

AES-KW

RSA-OAEP

* If you are using an insecure protocol for operation requiring HTTPS (named secure context), the following error will be raised (the subtle attribute member of the crypto object is not defined):

Message ERROR Cryptography

Key export format:

Avoid hidden trouble with the API

Below is a set of key points to avoid traps of the Web Cryptography API:

  1. Do not use deprecated algorithms / Ensure to correctly use an algorithm1614. https://www.keylength.com/en/3/ 1715. https://bettercrypto.org/#theory:
    1. If you have any doubt about an algorithm or its correct usage then ask to a friend or colleague with skills in the cryptographic field.
    2. Doubting and asking questions is a healthy attitude when it comes to choosing or correctly using a cryptographic algorithm as well as most things in life.
  2. Do not use the function getRandomValues() to generate a key, use the dedicated generateKey()
  3. During the generation of a key, only set key usage consistently for the usage of the key via the parameter named keyUsages of the generateKey() function1816. https://developer.mozilla.org/en-US/docs/Web/API/SubtleCrypto/generateKey#parameters .
  4. If the key you generated is not intended to be exported, for example, because it will be only used for a temporary operation then mark it as non-extractable via the parameter named Extractable of the generateKey(). In case of doubt set this parameter to false.
    1. Affecting the value false to the parameter extractable indicates that the key cannot be exported.
  5. Never assume that the storage systems (Local Storage, Session Storage, Indexed DB, etc.) provided by the browser are secure from a system access point view (they are at least secure from a web origin and JavaScript access point of view).
  6. To export a key always use the wrapKey() function except if you know exactly what you are doing using the exportKey() function.

Why should I not consider the browser storage systems as secure?

Once generated, a key (a CryptoKey object1920. https://developer.mozilla.org/en-US/docs/Web/API/CryptoKey behind the scenes) only exposes metadata information to the JavaScript environment like the type, algorithms, key usages, etc.

It is a requirement from the RFC that the content of the key is not accessible to the JavaScript environment2021. https://w3c.github.io/webcrypto/#concepts-key-storage – See below, in yellow, the exposed content of a CryptoKey at runtime:

exposed content of a CryptoKey at runtime

The only way to access to the key content from the JavaScript environment is to export it via the exportKey() or wrapKey() function.

A common and quick reflex can be to use the exportKey() function and store the exported content of the key in the IndexedDB browser storage systems like suggested by the RFC in section named “Key Storage”.2121. https://w3c.github.io/webcrypto/#concepts-key-storage

A question comes to mind; does the browser protect the content stored in the IndexedDB storage when data is at rest?

Let’s verify…

1. Store an exported key2222. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/docs/js/commons.js#L179 in an IndexedDB using Firefox:

Storage of an exported key in an IndexedDB using Firefox

2. Check the file system level, if it is possible to access the content of the key by reading the SQLite database used to store IndexedDB data:

Checking of the file system level

 

We can access the stored content. 🙁

Same operation using Chrome, notes that it uses LevelDB2323. https://en.wikipedia.org/wiki/LevelDB format instead of SQLite for the storage:

Storage of an exported key in an IndexedDB using Chrome

We can access the stored content too 🙁.

Same test for Edge (Edge also uses the LevelDB format):

Storage of an exported key in an IndexedDB using Edge

Same result 🙁.

In conclusion, consider the browser storage systems as unsafe from a file system point of view. Indeed, as demonstrated above, if the insecure function exportKey() is used to export the key and the value is stored in the browser storage systems, then, the browser does not provide itself with a layer of protection against direct access to the exported key value via the browser system files.

Built-in protection against local Denial of Service

Browsers implement protection preventing usage of cryptographic functions in a way that can cause instability or browser crashes. Below are some examples of limitations that are implemented.

Here is an example of a limitation implemented in the function getRandomValues() – The request length cannot be superior to 65536 bytes:

example of limitation implemented in the function getRandomValues()

Another example of limitation implemented. Here, in the encrypt() function when used with an asymmetric key pair. In this example, the input data to encrypt is too large:

example of limitation implemented

However, for the example above, depending on the way in which the cryptographic function is called, it may bypass the protection above and trigger another one or not…

When this test2424. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/docs/js/operations.js#L140 is called, then, it triggers the sandbox protection on Chrome and Edge, at no moment the browser becomes unstable:

Unstable browser

On Firefox, the browser becomes unstable and must be killed using the task manager. See this video2525. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/demo-instability.mp4 for a complete demonstration of the behaviour.

It is not always required to make a choice…

It can be tempting to replace any crypto library currently in a project with the Web Cryptography API. The author thinks that is not a recommended way due to the following reason discovered during its study: The Web Cryptography API provides low-level cryptographic features, so, its usage requires skills in the crypto domain to not bring vulnerability via a bad usage of any features/algorithms.

Most of the popular cryptographic libraries, like crypto-js, provide high-level cryptographic features in order to make the important decision, regarding good usage of crypto primitives, behind the scenes for the user and prevent him to misuse for example AES algorithm, pseudo-random number generator, etc.

In addition, popular cryptographic libraries, like crypto-js, has already started using Web Cryptography API under the hood when it is available:

Web Cryptography API

The following PowerShell script2626. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/stats.ps1 takes the first-page result of a search for “crypto” packages against the NPM registry and try to find any reference to the Web Cryptography API in the code base of the source Git repository:

PowerShell script

Execution of the script gave the following results:

Result of PowerShell script

Therefore, no need to leave your favourite cryptographic library if it supports Web Cryptography API when it is available. 😊

The lab

In order to experiment with all elements mentioned in this post, a lab was created2717. https://excelliumsa.github.io/WebCryptographyAPI-Study/.

The lab has the following user interface and provides a playground to discover/explore/test the different features provided by the Web Cryptography API:

User interface of a Web Cryptography API lab

The lab features were tested on the last version (in June 2021) of Chrome, Firefox and Edge. All features were fully documented to allow easy access.

All cryptographic operations were centralized in a JS script named “operations.js” to facilitate the reading/understanding of the code as well as the modification to explore custom test cases2818. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/docs/js/operations.js .

All study notes gathered were provided2919. https://github.com/ExcelliumSA/WebCryptographyAPI-Study/blob/main/study-note.pdf to provide all information/hypotheses/assumptions that were used/made to create this blog post.

Conclusion

This post explored the new capabilities as well as the pitfalls brought by the Web Cryptography API.

The study provided the following courses:

  1. It provides low-level crypto features, therefore, it requires skills in the crypto domain to use them wisely without introducing vulnerabilities.
  2. It provides a common layer of crypto capabilities, at browser levels, allowing existing cryptographic libraries to leverage it in order to provide a collection of high-level and safe crypto features usable by developers. Safe in the way in which, high-level crypto features make the important decisions, regarding good usage of crypto primitives, behind the scenes for the developer to prevent him/her to misuse
  3. Some part of the RFC remains imprecise, causing a browser provider to make its own path in some areas like for example the selection of the third-party cryptographic components handling cryptographic operations, or the support of key management systems. This can lead to vulnerabilities and technical incompatibilities in some browsers based on these decisions.

As a takeaway, the authors will keep this decision tree in mind:

Decision tree

 

Did you like this article? Find great other articles in our blog section.

Credits

Top