cert-tools


Namecert-tools JSON
Version 3.0.2 PyPI version JSON
download
home_pagehttps://github.com/blockchain-certificates/cert-tools
Summarycreates blockchain certificates
upload_time2023-10-31 13:36:27
maintainer
docs_urlNone
authorBlockcerts
requires_python
licenseMIT
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            [![Build Status](https://travis-ci.org/blockchain-certificates/cert-tools.svg?branch=master)](https://travis-ci.org/blockchain-certificates/cert-tools)

# V3 is available
Blockcerts V3 is now based off W3C Verifiable Credentials specification and does not follow Open Badges V2 nomenclature anymore. To understand the differences between v2 and v3, please refer to the [docs](./docs/V3.md).
You may also have a look at the [JSONLD and JSON-SCHEMA documents](https://github.com/blockchain-certificates/cert-schema/tree/master/cert_schema/3.0)

# cert-tools
Command line tools for designing certificate templates, instantiating a certificate batch, and import/export tasks

See example of certificate template and batch creation in sample_data.

For more information on working with legacy V2, please see the docs [here](./docs/V3.md#running-cert-tools-for-v2).

## Install

1. Ensure you have an python environment. [Recommendations](https://github.com/blockchain-certificates/cert-issuer/blob/master/docs/virtualenv.md)

2. Git clone the repository and change to the directory

  ```bash
  git clone https://github.com/blockchain-certificates/cert-tools.git && cd cert-tools
  ```

3. Run the setup script

  ```bash
  pip install .
  ```

## Scripts

The cert-tools setup script installs 2 scripts, which are described below:


### create_certificate_template.py

#### Run

```bash
create-certificate-template -c conf.ini
```

#### Configuration

The `conf.ini` fields are described below. Optional arguments are in brackets.

At this moment this will give a very simple V3 blockcerts that you will likely need to customize further.

```
create-certificate-template --help

usage: create_v3_certificate_template.py [-h] 
                                         [-c MY_CONFIG] 
                                         [--data_dir DATA_DIR] 
                                         [--issuer_url ISSUER_URL] --issuer_id ISSUER_ID [--template_dir TEMPLATE_DIR] 
                                         [--template_file_name TEMPLATE_FILE_NAME]
                                         [--additional_global_fields ADDITIONAL_GLOBAL_FIELDS] 
                                         [--additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS]


Args that start with '--' (eg. --data_dir) can also be set in a config file (./cert-tools/conf.ini or specified via -c). Config file syntax allows: key=value, flag=true, stuff=[a,b,c] (for details, see syntax at https://goo.gl/R74nmi). If an arg is specified in more than one place, then commandline values override config file values which override defaults.


Argument details:
  -h, --help            show this help message and exit
  -c MY_CONFIG, --my-config MY_CONFIG
                        config file path (default: None)
  --data_dir DATA_DIR   where data files are located (default: None)
  --issuer_url ISSUER_URL
                        issuer URL (default: None)
  --issuer_id ISSUER_ID
                        issuer profile (default: None)
  --template_dir TEMPLATE_DIR
                        the template output directory (default: None)
  --template_file_name TEMPLATE_FILE_NAME
                        the template file name (default: None)
  --additional_global_fields ADDITIONAL_GLOBAL_FIELDS
                        additional global fields (default: None)
  --additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS
                        additional per-recipient fields (default: None)


```

#### About

Creates a certificate template populated with the setting you provide in the conf.ini file. This will not contain recipient-specific data; such fields will be populated with merge tags.


### instantiate_certificate_batch.py

#### Run

```
instantiate-certificate-batch -c conf.ini
```


#### About

Populates the certificate template (created by the previous script) with recipient data from a csv file. It generates a certificate per recipient based on the values in the csv file.

The csv file location is configurable via the conf.ini file.

The csv file must always contain:

- name
- pubkey
- identity

#### Configuration

The `conf.ini` fields are described below. Optional arguments are in brackets


```
instantiate-certificate-batch --help

usage: instantiate_v2_certificate_batch.py [-h] 
                                           [-c MY_CONFIG]
                                           [--data_dir DATA_DIR]
                                           [--issuer_certs_url ISSUER_CERTS_URL]
                                           [--template_dir TEMPLATE_DIR]
                                           [--template_file_name TEMPLATE_FILE_NAME]
                                           [--hash_emails]
                                           [--additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS]
                                           [--unsigned_certificates_dir UNSIGNED_CERTIFICATES_DIR]
                                           [--roster ROSTER]

Args that start with '--' (eg. --data_dir) can also be set in a config file (./cert-tools/conf.ini or specified via -c). Config file syntax allows: key=value, flag=true, stuff=[a,b,c] (for details, see syntax at https://goo.gl/R74nmi). If an arg is specified in more than one place, then commandline values override config file values which override defaults.

Argument details:
  -h, --help            show this help message and exit
  -c MY_CONFIG, --my-config MY_CONFIG
                        config file path (default: None)
  --data_dir DATA_DIR   where data files are located (default: None)
  --issuer_certs_url ISSUER_CERTS_URL
                        issuer certificates URL (default: None)
  --template_dir TEMPLATE_DIR
                        the template output directory (default: None)
  --template_file_name TEMPLATE_FILE_NAME
                        the template file name (default: None)
  --hash_emails         whether to hash emails in the certificate (default:
                        False)
  --additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS
                        additional per-recipient fields (default: None)
  --unsigned_certificates_dir UNSIGNED_CERTIFICATES_DIR
                        output directory for unsigned certificates (default:
                        None)
  --roster ROSTER       roster file name (default: None)

```

### Adding custom fields

You can specify additional global fields (fields that apply for every certificate in the batch) and additional per-recipient fields (fields that you will specify per-recipient).

#### Important: defining your custom fields in a JSON-LD context
When adding either global or per-recipient custom fields, you must define each of your new terms in a [JSON-LD context](https://json-ld.org/spec/latest/json-ld/). You can either point to an existing JSON-LD context, or embed them directly in the context of the certificate. For an example of the latter, see the [JSON-LD specification section 3.1](https://json-ld.org/spec/latest/json-ld/#the-context). In this case, the `@context` value would be an array listing the existing context links, and your new definition.

Examples of both options are below:
```
{
  "@context": [
        "https://www.w3.org/2018/credentials/v1",
        "https://w3id.org/blockcerts/v3",
        "https://your-custom-context/v1",                                <-- option 1: point to custom JSON-LD context
        {                                                                <-- option 2: directly embed in certificate
             "xyz_custom_field": "http://path/to/xyz_custom_field",
              ... // and all other custom fields
        }
    ]
}
```

#### Custom global fields

You can specify custom global fields in the conf.ini file with the `additional_global_fields` entry

For each additional global field, you must indicate:

- the jsonpath to the field
- the global value to use

Example:

conf.ini:
```
additional_global_fields = {"fields": [{"path": "$.certificate.subtitle","value": "custom subtitle"}]}
```

or, expanded for readability:
```
    additional_global_fields = {
        "fields": 
            [
                {
                    "path": "$.certificate.subtitle",
                    "value": "custom subtitle"
                }
            ]
    }

```

#### Custom per-recipient fields

See above note on (current) manual step of defining custom JSON-LD context.

Per-recipient fields are specified in a combination of the conf.ini file, with the `additional_per_recipient_fields` entry, and the .csv file containing per-recipient data. Per-recipient fields are used in both template creation and certificate instantiaion. During the template creation process, we apply placeholder merge tags as values. This helps you preview your template before running `instantiate_certificate_batch.py`. 

For each additional per-recipient field, you must indicate the following in the `additional_per_recipient_fields` config field:

- the jsonpath to the field
- the merge_tag placeholder to use
- the csv column where the value (per recipient) can be found. This is used by instantiate_certificate_batch

Example:

conf.ini version:
```
    additional_per_recipient_fields = {"fields": [{"path": "$.xyz_custom_field","value": "*|THIS WILL CONTAIN XYZ CUSTOM VALUES|*","csv_column": "xyz_custom_field"}]}
```

above expanded for readability:
```
TODO
```


### create_revocation_addresses.py (currently unused)

#### Run (optional)
```
create-revocation-addresses -k tpubD6NzV...H66KUZEBkf
```

#### About

Generates Bitcoin addresses using an HD extended public (or private) key to be used as the issuer's revocation addresses for the certificates. This would be useful only if the issuer requires to be able to revoke specific certificates later on. It creates a list of addresses that could then be easily merged with the roster file, e.g. using unix's paste command.

To create 20 revocation address for a testnet extended public key for the first batch of 2016 certificates run:

```
echo "revkey" > rev_addresses.txt

create-revocation-addresses -n 20 -p "2016/1" -k tpubD6NzV...H66KUZEBkf >> rev_addresses.txt
```

To merge to roster (in unix) run:

```
paste -d , roster.txt rev_addresses.txt > roster_with_rev.txt
```

## Example

See sample_data for example configuration and output. `conf-mainnet.ini` was used to create a batch of 2 unsigned certificates on the Bitcoin blockchain. 

The steps were:
- Create the template
    - Update the config file to contain the correct data to populate the certificates
    - Place the needed images in `images/` and point to them in the config file
    - Run `create_certificate_template.py`, which resulted in the certificate template `/certificate_templates/test.json`
- Instantiate the batch
    - Add the recipient roster (in this case `rosters/roster_testnet.csv`) with the recipient's Bitcoin addresses.
    - Run 'instantiate_certificate_batch.py', which resulted in the files in `unsigned_certificates`

Then the unsigned certificates were copied to cert-issuer for signing and issuing on the blockchain.

## Contact

Contact us at [the Blockcerts community forum](http://community.blockcerts.org/).



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/blockchain-certificates/cert-tools",
    "name": "cert-tools",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Blockcerts",
    "author_email": "info@blockcerts.org",
    "download_url": "https://files.pythonhosted.org/packages/36/7c/541a2f451a6949fe27550f7e319b9df2f04a6dfad057fc5ebd75b1797b81/cert-tools-3.0.2.tar.gz",
    "platform": null,
    "description": "[![Build Status](https://travis-ci.org/blockchain-certificates/cert-tools.svg?branch=master)](https://travis-ci.org/blockchain-certificates/cert-tools)\n\n# V3 is available\nBlockcerts V3 is now based off W3C Verifiable Credentials specification and does not follow Open Badges V2 nomenclature anymore. To understand the differences between v2 and v3, please refer to the [docs](./docs/V3.md).\nYou may also have a look at the [JSONLD and JSON-SCHEMA documents](https://github.com/blockchain-certificates/cert-schema/tree/master/cert_schema/3.0)\n\n# cert-tools\nCommand line tools for designing certificate templates, instantiating a certificate batch, and import/export tasks\n\nSee example of certificate template and batch creation in sample_data.\n\nFor more information on working with legacy V2, please see the docs [here](./docs/V3.md#running-cert-tools-for-v2).\n\n## Install\n\n1. Ensure you have an python environment. [Recommendations](https://github.com/blockchain-certificates/cert-issuer/blob/master/docs/virtualenv.md)\n\n2. Git clone the repository and change to the directory\n\n  ```bash\n  git clone https://github.com/blockchain-certificates/cert-tools.git && cd cert-tools\n  ```\n\n3. Run the setup script\n\n  ```bash\n  pip install .\n  ```\n\n## Scripts\n\nThe cert-tools setup script installs 2 scripts, which are described below:\n\n\n### create_certificate_template.py\n\n#### Run\n\n```bash\ncreate-certificate-template -c conf.ini\n```\n\n#### Configuration\n\nThe `conf.ini` fields are described below. Optional arguments are in brackets.\n\nAt this moment this will give a very simple V3 blockcerts that you will likely need to customize further.\n\n```\ncreate-certificate-template --help\n\nusage: create_v3_certificate_template.py [-h] \n                                         [-c MY_CONFIG] \n                                         [--data_dir DATA_DIR] \n                                         [--issuer_url ISSUER_URL] --issuer_id ISSUER_ID [--template_dir TEMPLATE_DIR] \n                                         [--template_file_name TEMPLATE_FILE_NAME]\n                                         [--additional_global_fields ADDITIONAL_GLOBAL_FIELDS] \n                                         [--additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS]\n\n\nArgs that start with '--' (eg. --data_dir) can also be set in a config file (./cert-tools/conf.ini or specified via -c). Config file syntax allows: key=value, flag=true, stuff=[a,b,c] (for details, see syntax at https://goo.gl/R74nmi). If an arg is specified in more than one place, then commandline values override config file values which override defaults.\n\n\nArgument details:\n  -h, --help            show this help message and exit\n  -c MY_CONFIG, --my-config MY_CONFIG\n                        config file path (default: None)\n  --data_dir DATA_DIR   where data files are located (default: None)\n  --issuer_url ISSUER_URL\n                        issuer URL (default: None)\n  --issuer_id ISSUER_ID\n                        issuer profile (default: None)\n  --template_dir TEMPLATE_DIR\n                        the template output directory (default: None)\n  --template_file_name TEMPLATE_FILE_NAME\n                        the template file name (default: None)\n  --additional_global_fields ADDITIONAL_GLOBAL_FIELDS\n                        additional global fields (default: None)\n  --additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS\n                        additional per-recipient fields (default: None)\n\n\n```\n\n#### About\n\nCreates a certificate template populated with the setting you provide in the conf.ini file. This will not contain recipient-specific data; such fields will be populated with merge tags.\n\n\n### instantiate_certificate_batch.py\n\n#### Run\n\n```\ninstantiate-certificate-batch -c conf.ini\n```\n\n\n#### About\n\nPopulates the certificate template (created by the previous script) with recipient data from a csv file. It generates a certificate per recipient based on the values in the csv file.\n\nThe csv file location is configurable via the conf.ini file.\n\nThe csv file must always contain:\n\n- name\n- pubkey\n- identity\n\n#### Configuration\n\nThe `conf.ini` fields are described below. Optional arguments are in brackets\n\n\n```\ninstantiate-certificate-batch --help\n\nusage: instantiate_v2_certificate_batch.py [-h] \n                                           [-c MY_CONFIG]\n                                           [--data_dir DATA_DIR]\n                                           [--issuer_certs_url ISSUER_CERTS_URL]\n                                           [--template_dir TEMPLATE_DIR]\n                                           [--template_file_name TEMPLATE_FILE_NAME]\n                                           [--hash_emails]\n                                           [--additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS]\n                                           [--unsigned_certificates_dir UNSIGNED_CERTIFICATES_DIR]\n                                           [--roster ROSTER]\n\nArgs that start with '--' (eg. --data_dir) can also be set in a config file (./cert-tools/conf.ini or specified via -c). Config file syntax allows: key=value, flag=true, stuff=[a,b,c] (for details, see syntax at https://goo.gl/R74nmi). If an arg is specified in more than one place, then commandline values override config file values which override defaults.\n\nArgument details:\n  -h, --help            show this help message and exit\n  -c MY_CONFIG, --my-config MY_CONFIG\n                        config file path (default: None)\n  --data_dir DATA_DIR   where data files are located (default: None)\n  --issuer_certs_url ISSUER_CERTS_URL\n                        issuer certificates URL (default: None)\n  --template_dir TEMPLATE_DIR\n                        the template output directory (default: None)\n  --template_file_name TEMPLATE_FILE_NAME\n                        the template file name (default: None)\n  --hash_emails         whether to hash emails in the certificate (default:\n                        False)\n  --additional_per_recipient_fields ADDITIONAL_PER_RECIPIENT_FIELDS\n                        additional per-recipient fields (default: None)\n  --unsigned_certificates_dir UNSIGNED_CERTIFICATES_DIR\n                        output directory for unsigned certificates (default:\n                        None)\n  --roster ROSTER       roster file name (default: None)\n\n```\n\n### Adding custom fields\n\nYou can specify additional global fields (fields that apply for every certificate in the batch) and additional per-recipient fields (fields that you will specify per-recipient).\n\n#### Important: defining your custom fields in a JSON-LD context\nWhen adding either global or per-recipient custom fields, you must define each of your new terms in a [JSON-LD context](https://json-ld.org/spec/latest/json-ld/). You can either point to an existing JSON-LD context, or embed them directly in the context of the certificate. For an example of the latter, see the [JSON-LD specification section 3.1](https://json-ld.org/spec/latest/json-ld/#the-context). In this case, the `@context` value would be an array listing the existing context links, and your new definition.\n\nExamples of both options are below:\n```\n{\n  \"@context\": [\n        \"https://www.w3.org/2018/credentials/v1\",\n        \"https://w3id.org/blockcerts/v3\",\n        \"https://your-custom-context/v1\",                                <-- option 1: point to custom JSON-LD context\n        {                                                                <-- option 2: directly embed in certificate\n             \"xyz_custom_field\": \"http://path/to/xyz_custom_field\",\n              ... // and all other custom fields\n        }\n    ]\n}\n```\n\n#### Custom global fields\n\nYou can specify custom global fields in the conf.ini file with the `additional_global_fields` entry\n\nFor each additional global field, you must indicate:\n\n- the jsonpath to the field\n- the global value to use\n\nExample:\n\nconf.ini:\n```\nadditional_global_fields = {\"fields\": [{\"path\": \"$.certificate.subtitle\",\"value\": \"custom subtitle\"}]}\n```\n\nor, expanded for readability:\n```\n    additional_global_fields = {\n        \"fields\": \n            [\n                {\n                    \"path\": \"$.certificate.subtitle\",\n                    \"value\": \"custom subtitle\"\n                }\n            ]\n    }\n\n```\n\n#### Custom per-recipient fields\n\nSee above note on (current) manual step of defining custom JSON-LD context.\n\nPer-recipient fields are specified in a combination of the conf.ini file, with the `additional_per_recipient_fields` entry, and the .csv file containing per-recipient data. Per-recipient fields are used in both template creation and certificate instantiaion. During the template creation process, we apply placeholder merge tags as values. This helps you preview your template before running `instantiate_certificate_batch.py`. \n\nFor each additional per-recipient field, you must indicate the following in the `additional_per_recipient_fields` config field:\n\n- the jsonpath to the field\n- the merge_tag placeholder to use\n- the csv column where the value (per recipient) can be found. This is used by instantiate_certificate_batch\n\nExample:\n\nconf.ini version:\n```\n    additional_per_recipient_fields = {\"fields\": [{\"path\": \"$.xyz_custom_field\",\"value\": \"*|THIS WILL CONTAIN XYZ CUSTOM VALUES|*\",\"csv_column\": \"xyz_custom_field\"}]}\n```\n\nabove expanded for readability:\n```\nTODO\n```\n\n\n### create_revocation_addresses.py (currently unused)\n\n#### Run (optional)\n```\ncreate-revocation-addresses -k tpubD6NzV...H66KUZEBkf\n```\n\n#### About\n\nGenerates Bitcoin addresses using an HD extended public (or private) key to be used as the issuer's revocation addresses for the certificates. This would be useful only if the issuer requires to be able to revoke specific certificates later on. It creates a list of addresses that could then be easily merged with the roster file, e.g. using unix's paste command.\n\nTo create 20 revocation address for a testnet extended public key for the first batch of 2016 certificates run:\n\n```\necho \"revkey\" > rev_addresses.txt\n\ncreate-revocation-addresses -n 20 -p \"2016/1\" -k tpubD6NzV...H66KUZEBkf >> rev_addresses.txt\n```\n\nTo merge to roster (in unix) run:\n\n```\npaste -d , roster.txt rev_addresses.txt > roster_with_rev.txt\n```\n\n## Example\n\nSee sample_data for example configuration and output. `conf-mainnet.ini` was used to create a batch of 2 unsigned certificates on the Bitcoin blockchain. \n\nThe steps were:\n- Create the template\n    - Update the config file to contain the correct data to populate the certificates\n    - Place the needed images in `images/` and point to them in the config file\n    - Run `create_certificate_template.py`, which resulted in the certificate template `/certificate_templates/test.json`\n- Instantiate the batch\n    - Add the recipient roster (in this case `rosters/roster_testnet.csv`) with the recipient's Bitcoin addresses.\n    - Run 'instantiate_certificate_batch.py', which resulted in the files in `unsigned_certificates`\n\nThen the unsigned certificates were copied to cert-issuer for signing and issuing on the blockchain.\n\n## Contact\n\nContact us at [the Blockcerts community forum](http://community.blockcerts.org/).\n\n\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "creates blockchain certificates",
    "version": "3.0.2",
    "project_urls": {
        "Homepage": "https://github.com/blockchain-certificates/cert-tools"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "725312e672fcd35be79a26f341ae552b06c3c291c6ce365ffcfd552b08304f8f",
                "md5": "316ddd0d9c14f7ba38c8b83939f588e0",
                "sha256": "41e6c90800ed3d6b42f4e80fcdfbae737bda7f35817c5c1026df58e5a1d956ac"
            },
            "downloads": -1,
            "filename": "cert_tools-3.0.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "316ddd0d9c14f7ba38c8b83939f588e0",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 24096,
            "upload_time": "2023-10-31T13:36:25",
            "upload_time_iso_8601": "2023-10-31T13:36:25.981262Z",
            "url": "https://files.pythonhosted.org/packages/72/53/12e672fcd35be79a26f341ae552b06c3c291c6ce365ffcfd552b08304f8f/cert_tools-3.0.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "367c541a2f451a6949fe27550f7e319b9df2f04a6dfad057fc5ebd75b1797b81",
                "md5": "74009eeac3b0affd5f3f94d9cd682264",
                "sha256": "5b586f3be38bf4fb6493251b10a1f9c27c83567640ad668521cfb629d920a6ee"
            },
            "downloads": -1,
            "filename": "cert-tools-3.0.2.tar.gz",
            "has_sig": false,
            "md5_digest": "74009eeac3b0affd5f3f94d9cd682264",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 17936,
            "upload_time": "2023-10-31T13:36:27",
            "upload_time_iso_8601": "2023-10-31T13:36:27.798132Z",
            "url": "https://files.pythonhosted.org/packages/36/7c/541a2f451a6949fe27550f7e319b9df2f04a6dfad057fc5ebd75b1797b81/cert-tools-3.0.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-31 13:36:27",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "blockchain-certificates",
    "github_project": "cert-tools",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "requirements": [],
    "tox": true,
    "lcname": "cert-tools"
}
        
Elapsed time: 0.12985s