Skip to content

Public Key Pinning

SSL Pinning

SSL Pinning is the process of associating a host with their expected X509 certificate or a public key. Once a host's certificate or public key is known or identified, the certificate or public key is associated or 'pinned' to the host. This offers protection against certificate forgery.

You have to take the following decisions in the pinning process:

  • What must be pinned: Either pin the certificate or pin the public key. Volt MX supports both Certificate pinning and Public Key pinning.
  • Which certificate/public key to pin against in the chain: The certificate/public key that you choose for pinning impacts the level of security that can be achieved, and this security level decreases as you navigate up the certificate chain from leaf to root certificate. You must pin either the leaf in chain or the intermediate CA. Typically, you should choose the organizational CA as the intermediate CA for pinning.

Public Key Pinning

Volt MX has previously rolled out the Certificate Pinning feature. The drawback of Certificate Pinning is that when the server rotates its certificate on a regular basis, you would need to update the application regularly as well.

The Public Key Pinning feature addresses the downside of certificate pinning. By using key pinning, you can avoid frequent application updates as the pubic key can remain same for longer periods.

So if you want to minimize your maintenance efforts and still want a secure communication through your application, then leveraging the HTTP Public Key Pinning feature is the best solution.

Note: For Android, you can alternatively achieve Public Key Pinning by using Android Network Security Configuration for API level 24 and later. To learn more about the differences between the Volt MX Public Key Pinning and Android Network Security Configuration features, click here.

Enable Public Key Pinning

To enable the Public Key Pinning feature for a Volt MX Iris Application, follow these steps:

  1. In your Volt MX Iris project, from the Project Explorer, click Project Setings. The Project Settings window appears.

  2. Click the Native tab. A horizontal list of sub-tabs appears under Native.

  3. Follow these steps for the required platform:
    • For Android: Go to Android > Mobile/Tablet. From the Network Trust Config drop-down list, select Allow Pinned.
      If the Allow Pinned option is not available in Iris, you can manually specify the networktrustconfig property in the androidbuild.properties file.
    • For Windows Phone: Go to Windows Phone > Common. From the Network Trust Config drop-down list, select Allow Pinned.
    • For Windows Tablet: Go to Windows Tablet > Application UI. From the Network Trust Config drop-down list, select Allow Pinned.
    • For iOS: In infoplist_configuration.json file, add the entry { "VoltMXHTTPPublicKeyPinning" = true }. For more information on how to configure custom key value pairs in iOS platform, click here.

In addition, you must provide the //public_keys.json file. This file contains all the information on the domain versus the pins configuration (the JSON format is explained in the next section).

Path of public_keys.json file in different Platforms and Channels

In iOS

  • For iPhone: //resources/mobile/native/iphone/certs/public_keys.json
  • For iPad: //resources/tablet/native/ipad/certs/public_keys.json

In Android

  • For mobile: //resources/mobile/native/android/assets/certs/
  • For tablet: //resources/tablet/native/androidtab/assets/certs/

In Windows

  • For mobile: //resources/mobile/native/winphone8/assets/certs/

  • For tablet: //resources/tablet/native/windows8/assets/certs/

Note: Make sure the file name containing SSL Pinning Public Keys is in the exact public_keys.json case.

Format of the JSON File for the Public Keys (certs/public_keys.json)

{
    "domain-expression1": [
        "sha256-pin1",
        "backup-sha256-pin2",
        // ...
    ],

    "domain-expression2": [
        "sha256-pin3",
        "backup-sha256-pin4",
        // ...
    ],
    // ...
}

Domain Name (Expression) Rules

The rules for the domain names/expressions in the public_keys.json file are as follows:

  • Wildcard patterns are permitted in hostnames (domain name expressions). The wildcard pattern rules are as follows:
    • * is only permitted in the left-most domain name label and must be the only character in the hostname label.
      For instance, *.voltmx.com is permitted. But, *a.voltmx.com, a*.voltmx.com, a*b.voltmx.com, and a.*.voltmx.com are not permitted.
    • * cannot match across domain name labels.
      For example, *.voltmx.com matches manage.hclvoltmx.com, but it does not match sub.manage.hclvoltmx.com.
  • If the hostname is pinned directly as well as via wildcard pattern, both direct and wildcard pins are used for pin validation.
    For example, if *.voltmx.com is pinned with pin1 and manage.hclvoltmx.com is pinned with pin2 to check *.manage.hclvoltmx.com: both pin1 and pin2 are used.

Example

{
    "*.voltmx.com": [
        "rSV28bZT885DlLB9/wTzyMuYG+VdA0OlRjjzC72rxno=",
        "JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA="
    ],

    "manage.hclvoltmx.com": [
        "HA8d0iApa5nQhToDQIcwYQmDYi1rd07MLck8Px4+31B=",
        "JSMzqOOrtyOT1kmau6zKhgT676hGgczD5VMdRMyJZFA="
    ],

    "*.amazon.in": [
        "VkvE/TdvozXh8Frp01wrxI0nh63JIE7FKRt2EQ+Phew="
    ]
}

Remarks

  • The Public Key Pinning feature is supported on iOS, Android, and Windows 10 tablet and Windows 10 mobile.

  • The Public Key Pinning feature is applicable for voltmx.net APIs, and is not applicable for the voltmx.ui.Browser widget.

  • It is recommended to specify at least one backup pin along with the valid leaf certificate pin. You must not choose the backup pin from the current certificate chain of the host, that is being pinned. You should always choose a pin that is not yet deployed on the server as a backup pin.

  • Public Key Pinning does not work in case of self-signed certificates.

  • For Android, while using Public Key Pinning, you must set the minimum SDK version as 17 or later.

  • The public_keys.json file specifies a white list of domains and their pins. Consequently, the voltmx.net network calls made to any other domain that is not listed in the public_keys.json file will fail.

Generate SPKI Pin Hash

To generate the SPKI Pin Hash from the certificate, follow one of these procedures:

Generate by using the VoltMXSSLPinningTool.jar Tool

Follow these steps to use the VoltMXSSLPinningTool.jar file and generate SPKI hashes:

  1. Download the zipped VoltMXSSLPinningTool.zip file to your local system, and then unzip it.

    Note: You must run the VoltMXSSLPinningTool.jar file with Java 8 or later.

  2. Run the following command to generate SPKI Pins Hashes for the entire certificate chain from leaf to root:
    java -jar VoltMXSSLPinningTool.jar --cert_format DER --ssl_host HOST_NAME --ssl_port PORT
    here, HOST_NAME: The host name of your server.
    PORT: HTTPS port on which your server is listening. It defaults to 443, if --ssl_port option is not specified.
    This command prints the SPKI hashes on the console and saves them to a file.

You can get additional information on the supported command line arguments by using this command: java -jar VoltMXSSLPinningTool.jar –help

Retrieve Certificate and Generate SPKI Pin Hash from the Certificate

Follow these steps to retrieve the certificate by using either the openssl command or by using any web browser.

  • Use the following openssl command to get the leaf certificate for a site.
    openssl s_client -servername -showcerts -connect < HOST_NAME >: /dev/null|openssl x509 -outform PEM >mycertfile.pem
    where, HOST_NAME: The host name of your server.
    PORT: HTTPS port on which your server is listening. The port number is usually 443, unless configured differently.

Note: This command may return a different certificate when the server supports Server Name Indication (SNI).
So while using with servers that support SNI, you must ensure that the openssl version is 1.1.1a or 1.0.2q or later, which has SNI extension enabled by default, or alternatively, use Browser to fetch certificates.

Note: You can verify the Open SSL version by using the following command: openssl version

  • Alternatively, you can retrieve the certificates by using browser by opening any HTTPS URL of the required domain in your web browser and export the certificate (leaf or any intermediate) by inspecting the certificates fetched from the HTTPS connection. Note that the certificate-exporting procedure may vary from browser to browser and from version to version of the same browser. You can consult the respective browser usage guides for the relevant procedure.
  • Use the following command to generate the SPKI Pin hash from the certificate:
    openssl x509 -in mycertfile.pem -pubkey -noout | openssl pkey -pubin -outform der | openssl dgst -sha256 -binary | openssl enc -base64

Android Network Security Configuration

As a security improvement , apps that target Android 7.0 (API level 24 and later) and later will no longer trust user-installed certificates on devices with Android 7.0 and later.

From Android 7.0 devices and later, Android has offered a way to customize app behavior for all secure HTTPS communications that originate out of the application (including the WebView/Browser widget network calls) without touching the application code. This is achieved by using a Network Security Configuration that is defined as an xml resource (network_security_config.xml file) in the application.

This xml file helps you to customize the following features in the application:

  • Certificate Pinning: Helps you to specify which certificates are to be trusted for all secure connections that originate out of the application. Typical examples of certificates pinned include self-signed certificates or a restricted set of organizational and public CAs.
  • Public Key Pinning: Lets an application limit which server keys are to be trusted for secure connections.

  • Debug-only Overrides: Helps you to do a different trust configuration for only debug builds.

  • Clear Text Traffic Opt-out: Helps the application to restrict any HTTP communication or clear text traffic that originates out of the application.

Note: For the apps that target Android 9 PIE or later (API level 28 or later), all HTTP communications are disabled by default.

For more information on the usage of the Android Network Security Configuration feature, refer the following links:

Add Android Network Security Configuration

If you want to add support for the Network Security Configuration feature to your existing Volt MX Andorid project, follow these steps:

Note: This feature works only for devices with Android API level 24 and later.

  1. In Volt MX Iris, go to Project Settings > Native >Android >Tags >Application Tag Attributes.
  2. Add the following application tag entry in the app’s Manifest file:
    android:networkSecurityConfig="@xml/network_security_config"

  3. Add the network_security_config.xml file in the following path, as appropriate:

    • For mobile: \/\/resources/mobile/native/android/xml/network_security_config.xml
    • For tablet: \/\/resources/tablet/native/android/xml/network_security_config.xml

Volt MX Public Key Pinning vs. Android Network Security Configuration

The following table illustrates the differences between Volt MX HTTP Public Key Pinning and Android Network Security Config.

Difference AspectVoltMX Public Key PinningAndroid Network Security Configuration
Support Scopevoltmx.net.* JS APIsEntire application including voltmx.net.* , FFI network calls, and WebViews (including Volt MX Browser widget)
Hosts AllowedNetwork calls to non-pinned hosts fail by default, which is in line with the certificate pinning feature and the pinned hosts are allowed after the pin is successfully validatedNetwork calls to non-pinned hosts are also allowed
Can Certificate Pinning and Public Key Pinning be applied at the same time?Mutually ExclusiveBoth can be configured simultaneously
Precedence when both features are configuredRespected after Android Network Security Configuration (if already configured) rules are appliedTakes first precedence.
Pin Generation MechanismSPKI (Subject Public Key Info)SPKI (Subject Public Key Info)
Supported Andorid Versions17 and later (Android 4.2.x)24 and later (Android 7)
Supported Volt MX VersionsV8 SP4 onwardsApplicable in any Volt MX version