Fast Pair provision script

This Python script generates a hexadecimal file required for the Google Fast Pair integration in the nRF Connect SDK.

Note

When you use Google Fast Pair with the nRF Connect SDK, the script is automatically called by the build system. There is no need to generate and program the hexadecimal file manually. See Provisioning the device for details.

Overview

The generated hexadecimal file contains the following data obtained during the Fast Pair Provider model registration:

  • Model ID

  • Anti-Spoofing Private Key

See Fast Pair Model Registration in the Google Fast Pair Service documentation for details.

Requirements

The script source files are located in the scripts/nrf_provision/fast_pair directory.

The script uses the IntelHex Python library to generate the hexadecimal file.

To install the script’s requirements, run the following command in its directory:

python3 -m pip install -r requirements.txt

Using the script

Run the script commands in the scripts/nrf_provision/fast_pair directory to start using the script. To list the script arguments, run the following command:

python3 fp_provision_cli.py -h

The following help information describes the available script arguments:

Fast Pair Provisioning Tool

optional arguments:
  -h, --help            show this help message and exit
  -o OUT_FILE, --out_file OUT_FILE
                        Name of the output file
  -a ADDRESS, --address ADDRESS
                        Address of provisioning partition start (in hex)
  -m MODEL_ID, --model_id MODEL_ID
                        Model ID (in format 0xXXXXXX)
  -k ANTI_SPOOFING_KEY, --anti_spoofing_key ANTI_SPOOFING_KEY
                        Anti Spoofing Key (base64 encoded)

The following commands show an example of a script call that uses short names of arguments:

python3 fp_provision_cli.py -o=provision.hex -a=0x50000 -m="0xFFFFFF" -k="AbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbA="

The following commands show an example of a script call that uses full names of arguments:

python3 fp_provision_cli.py --out_file=provision.hex --address=0x50000 --model_id="0xFFFFFF" --anti_spoofing_key="AbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbA="

Make sure to replace the following parameter values:

  • 0xFFFFFF - Add your Model ID.

  • AbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbAbA= - Add your Anti Spoofing Key.

  • 0x50000 - Add the address of the bt_fast_pair partition defined by the Partition Manager.

Implementation details

The script converts the Model ID and Anti-Spoofing Private Key to bytes and places them under the predefined offsets in the generated hexadecimal file. The ID and the key are required by the Google Fast Pair Service and are provided as command line arguments (see Using the script). The magic data with predefined value is placed right before the mentioned provisioning data. The SHA-256 hash is calculated using the magic data and the provisioning data, and then placed right after the provisioning data to ensure data integrity.

The generated data must be placed on a dedicated bt_fast_pair partition defined by the Partition Manager. The Google Fast Pair Service (GFPS) knows both the offset sizes and lengths of the individual data fields in the provisioning data. The service accesses the data by reading flash content. The service calculates the hash on its own and checks whether it matches the hash stored on the partition.

Dependencies

The script uses the IntelHex Python library.