Skip to main content

The high level software development kit (SDK) to participate in the decentralised SingleSource identity eco-system in Python.

Project description

SingleSource Python SDK

The high level software development kit (SDK) to participate in the decentralised SingleSource identity eco-system in Python.

Overview

High level helpers available for:

  • Identity Request Service (idrs) - Support for generating ephemeral encryption key pairs (X25519 ECDH), messaging service topics and serialisation/deserialisation of these.
  • Attestations (attestations) - Making (foreign) claim sets and making attestations on them.

Installation

To install use pip:

$ pip install pysinglesource

Or clone the repo:

$ git clone git@bitbucket.org:mysinglesource/pysinglesource.git
$ python setup.py install

Set up and activate for Python 3:

virtualenv ${HOME}/.virtualenvs/pysinglesource \
           --system-site-packages --python=/usr/bin/python3
source ${HOME}/.virtualenvs/pysinglesource/bin/activate

Install required packages:

pip install -e .

For installing the additional development, testing or documentation dependencies, add a qualifier with one or more of these commands:

pip install -e .[dev]       # Development dependencies
pip install -e .[test]      # Testing dependencies
pip install -e .[dev,test]  # All dependencies together

Usage

Identity Request Service Handler

When using the ID Request Service to create well-formed (selective disclosure) requests, usually also a messaging service is used in conjunction. Due to the sensitive nature, responses usually need to be end-to-end encrypted, as the messaging service is not under the user's control.

For this purpose an 'ephemeral handler' is available. It will generate an ephemeral encryption key pair as well as a suitable messaging service topic. The ephemeral handler can be serialised and deserialised at ease to be persisted using strings (e.g. in any used DB system).

Notes:

  • The handler is supposed to be unguessable and for single-use and a particular purpose on the messaging service only. After completion, a new handler is to be used.
  • The serialised data is confidential and needs to be protected. It MUST NOT leak out, or the communication can be retrospectively decrypted by anybody who has intercepted the message and this serialised handler.

A receiving side would continuously poll on the messaging service (e.g. every 2 seconds) using the handler's topic, checking for a submitted response. The message returned then would contain encrypted content, for which the ephemeral (private) key is required to access it. Therefore, it makes sense to store the messaging service topic under an indexed field, and the serialised handler value in the same record.

from singlesource import EphemeralHandler

handler = EphemeralHandler()

# Get the messaging topic for the Identity Request Service.
topic = handler.messaging_topic
# Get the serialised handler for storage (with the topic) in a DB.
serialised_data = handler.serialise()

# After receiving a response message with encrypted content, use the
# serialised handler to re-build it.
handler = EphemeralHandler(serialised_data)
# Get the encryption JWK object for use with encrypted message data.
jwk = handler.jwk

Contributing

TBD

Example

TBD

Licence

Copyright 2018-2019 by SingleSource Limited, Auckland, New Zealand

This work is licensed under the Apache 2.0 open source licence. Terms and conditions apply.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pysinglesource-0.1.3.tar.gz (14.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pysinglesource-0.1.3-py2.py3-none-any.whl (24.3 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pysinglesource-0.1.3.tar.gz.

File metadata

  • Download URL: pysinglesource-0.1.3.tar.gz
  • Upload date:
  • Size: 14.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for pysinglesource-0.1.3.tar.gz
Algorithm Hash digest
SHA256 f55711edfadc28f4aa514067fc94d56c923fca828d7b10adc3b5da50c9aa2830
MD5 22cfe66c590629dfc060a0f5936cc415
BLAKE2b-256 c7dd3bad46db19f3a45d030b23b92efff7ad96f64a876397de0945d1d799b2d5

See more details on using hashes here.

File details

Details for the file pysinglesource-0.1.3-py2.py3-none-any.whl.

File metadata

  • Download URL: pysinglesource-0.1.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 24.3 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.18.4 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for pysinglesource-0.1.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b2735e52ee0f374274e3b3808847cc4986c3b36357454965a7c2ac9093c97756
MD5 2333beb693e3cc25998419aa30aa0cfa
BLAKE2b-256 f222a78833866a97928f41b1a8099dbbab27ccf5cb15ad2491761c37514738c6

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page