Kinto signer
Project description
What does this do?
Kinto signer is a Kinto plugin that makes it possible to sign the updates of Kinto collections. In other words, it’s a way to verify that the data the client has got is the data the original authors intended to distribute.
This works with two Kinto instances:
A, the authority (also known as “the signer”). It is where the original data are sent. The authority is configured to sign the data for a specific “origin”.
O, the origin, which will end up distributing the data and the signatures. It is where the client retrieve the data.
Configuring kinto-signer
To install this plugin in a Kinto server, a few configuration variables need to be set.
Here is an example of what a configuration could look like:
kinto.includes = kinto_signer
kinto.signer.resources =
source/collection1;destination/collection1
source/collection2;destination/collection2
Setting name |
What does it do? |
|---|---|
kinto.signer.resources |
The name of the buckets and collections on which signatures can be triggered and the destination where the data and the signatures will end-up. |
kinto.signer.signer_backend |
The python dotted location to the signer to use. By default, a local ECDSA signer will be used. Choices are either kinto_signer.signer.local_ecdsa or kinto_signer.signer.autograph Have a look at the sections below for more information. |
Configuration for the (default) ECDSA local signer
Setting name |
What does it do? |
|---|---|
kinto.signer.ecdsa.private_key |
Absolute path to the ECDSA private key to use to apply the signatures |
kinto.signer.ecdsa.public_key |
Absolute path to the ECDSA private key to use to verify the signature (useful if you just want to use the signer as a verifier) |
Configuration for the Autograph signer
Kinto signer can integrate with the Autograph server. To do so, use the following settings:
Setting name |
What does it do? |
|---|---|
kinto.signer.autograph.server_url |
The autograph server URL |
kinto.signer.autograph.hawk_id |
The hawk identifier used to issue the requests. |
kinto.signer.autograph.hawk_secret |
The hawk secret used to issue the requests. |
Generating a keypair
To generate a new keypair, you can use the following command:
$ python -m kinto_signer.generate_keypair private.pem public.pem
Running the tests
To run the unit tests:
$ make tests
For the functional tests:
$ make run-signer $ make functional
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file kinto-signer-0.1.0.tar.gz.
File metadata
- Download URL: kinto-signer-0.1.0.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dd148d526c6bfb7556ea2e3f552693e471fcb71522c8066def44e48f5872a230
|
|
| MD5 |
4aaee75ef23722a4bf422ad8060db593
|
|
| BLAKE2b-256 |
08a4b8c08694fc055363605adff37d93be90bd28be61aeb7124ce59c635c23a5
|