Giter Club home page Giter Club logo

cothority's Introduction

Build Status Coverage Status

Navigation: DEDIS :: Cothority

Cothority

The collective authority (cothority) project provides a framework for development, analysis, and deployment of decentralized, distributed (cryptographic) protocols. A given set of servers running these protocols is referred to as a collective authority or cothority. Individual servers are called cothority servers or conodes. The code in this repository allows you to access the services of a cothority and/or run your own conode. The cothority project is developed and maintained by the DEDIS lab at EPFL.

This is an overview of this README:

  • Documentation with links to different parts of the cothority
    • Topically ordered explains the different functional pieces from the cothority from a research point of view
    • Network ordered gives an overview from a networking point of view
    • Links collects links to other repositories, papers and webpages that are important to the cothority.
  • 1st steps giving two example apps ready to use
  • Participating on how to help us getting cothority even better

Don't forget that the cothority is part of a bigger environment.

Disclaimer

The software in this repository is highly experimental and under heavy development. Do not use it for anything security-critical yet.

All usage is at your own risk!

Versioning and Roadmap

We started to work on a 6-monthly cycle, synched up with the semesters at EPFL. From March to August we keep changes on the master-branch non-API breaking. Master and the current version https://gopkg.in/dedis/cothority.v2 are kept in sync. In September, we allow API-breaking changes in master and only selectively update the stable branch. End of February we freeze the current development in a stable branch and start again a non-breaking period of 6 months.

The current master branch is stable till the end of August 2018. If you are starting new work with this repository, use gopkg.in/dedis/cothority.v2 instead. The source code for this stable branch is here.

During 2018, we hope to bring you the following new pieces:

  • Cross platform mobile application to interact with the cisc and pop services
  • Omniledger implementation using key/value pair storage and protected by darcs

Other pieces we hope to achieve in 2018:

  • Distributed internet archival functionality
  • New status-website of the cothority
  • Catena integration for skipchains

And some projects are private for the moment, but we hope to make them public as soon as possible.

Documentation

The goal of the cothority is to collect projects that handle aspects of collective authorities to support scalable, self-organizing communities. In this document we present the apps that are directly runnable from the cothority, as well as links to the services and protocols used in the cothority.

A cothority is a set of conodes that work together to offer collective authority services. This is used to create distributed and decentralized services where no single point of failure can put the whole system in jeopardy. Conodes communicate with each other using protocols that are short-lived, specific tasks with an outcome that can be read by services. Each conode has a set of services that can be contacted through a well-defined API from the outside. The communication through the API is done with a homebrewn protobuf over websockets implementation.

Topically ordered

When looking at the cothority modules from a topical point of view, we can break it up as follows:

+--------------------------+------------+--------------------------+
|     Onchain-Secrets      |APPLICATIONS|                          |
|                          +------------+     Proof of Personhood  |
|       Omniledger                                                 |
|                               Status            E-voting         |
| CISC Identity SkipChain                                          |
+------------------------+---------------+-------------------------+
|                        |BUILDING BLOCKS|                         |
| Consensus              +---------------+       Key Sharding      |
|  - Skipchain                                    - Re-encryption  |
|  - BFT         General Crypto    Messaging      - Decryption     |
|  - Collective   - Neff Shuffle    - Broadcast   - Distributed    |
|    Signing      - RandHerd        - Propagate     Key Generation |
|                 - RandHound                                      |
|                                                                  |
+------------------------------------------------------------------+

Applications

Applications in cothority use different libraries and are the highest level of abstraction in our framework.

Here you get a list of all applications in the cothority.

There is one very special application that is considered apart - it's the conode itself, which holds all protocols and services and can be run as a service on a server.

What a Conode can do for you

Building Blocks

Building blocks are grouped in terms of research units and don't have a special representation in code. Also, the General Crypto library is more of a collection of different protocols.

Here you get a list of all building blocks in the cothority.

Network Ordered

If we look at the cothority from a purely networking point of view, we can describe it as follows:

              +-----------------+                 
              |CLI, JavaScript, | Frontend        
              |Java             |                 
+-------------+-----------------+                 
| Conode,     | Services        | Client to Conode
| Simulations |-----------------+                 
|             | Protocols       | Conode to Conode
+-------------+-----------------+                 

Webpages

  • Pulsar - publicly verifiable randomness
  • Status - status of our test-network
  • PoP - 2nd pop-party ever held

Command Line Interfaces

Command line interfaces (CLI) are used to communicate with one or more conodes. All CLIs need to have one or more conodes installed. For the two CLIs in first steps, you can use the running conodes at EPFL/DEDIS. If you want to test the other CLIs, you might need to set up a small network (often 3 nodes is enough) of conodes on your local computer to test it.

Here you get a list of all available CLIs in the cothority.

Services

Every app communicates with one or more services to interact with one or more conodes. This is a list of available services that can be contacted on a running conode. Some of the services are open to all, while others might require authentication through a PIN or a public key. Most of the apps and services have the same name, but some are not available as an app or have more than one app using it.

Here you get a list of all available services in the cothority.

Protocols

Protocols are used to communicate between conodes and execute cryptographic exchanges. This can be to form a collective signature, create a consensus on a new state, or simply to propagate a new block from a skipchain. Some protocols are useful for different services, while others are very service-specific. Most of the protocols have a paper that is describing how the protocol should perform and that compares it to other protocols.

Here you get a list of all available protocols in the cothority.

Simulations

Cothority grew up as a research instrument, so one of its advantages is to have a framework to create simulations and running them locally or on remote servers. Some of the protocols presented here do have the simulation code. Check it out here: Cothority Simulations.

First steps

If you're just curious how things work, you can check the status of our test network or create a collective signature using our running nodes:

Status

To get the status of the conodes in the cothority, first install the status binary:

go get github.com/dedis/cothority/status
export DEDIS_GROUP=$(go env GOPATH)/src/github.com/dedis/cothority/dedis-cothority.toml

Now you can run it by giving the definition of the dedis-cothority on the command line:

status --group $DEDIS_GROUP

Collective Signing

Another service available is fault-tolerant collective signing, or ftCoSi. It requests a collective signature from a set of conodes. The signature is created on a given input data. For installation, type:

go get github.com/dedis/cothority/ftcosi
export DEDIS_GROUP=$(go env GOPATH)/src/github.com/dedis/cothority/dedis-cothority.toml

Now you can create a file and have it signed by the cothority:

date > /tmp/my_file
ftcosi sign --group $DEDIS_GROUP /tmp/my_file | tee sig.json

And later somebody can verify the signature is correct by running the following command:

ftcosi verify --group $DEDIS_GROUP --signature sig.json /tmp/my_file

If everything is correct, it should print

[+] OK: Signature is valid.

Participating in the cothority

There are different ways to participate in the cothority project. A first step is to simply test the different CLI applications in this repository and tell us what were your difficulties or what you would like to use them for.

A next step is to set up your own conode and participate in the

Setting up your own conode

A conode is a server program that includes all protocols and services. It can be run on a public facing server, but for testing purposes it's also possible to set up a network on a machine and only let it be accessed locally.

  • conode is the cothority server, a special app that includes all services and protocols.
  • How to run a conode gives an overview of the environment where a conode can be run
  • DEDIS-cothority explains how to join the DEDIS-cothority

Contributing

If you want to contribute to Cothority-ONet, please have a look at CONTRIBUTION for licensing details. Once you are OK with those, you can have a look at our coding-guidelines in Coding. In short, we use the github-issues to communicate and pull-requests to do code-review. Travis makes sure that everything goes smoothly. And we'd like to have good code-coverage.

License

The software in this repository is put under a dual-licensing scheme: In general all of the provided code is open source via GNU/AGPL 3.0, please see the LICENSE file for more details. If you intend to use the cothority code for commercial purposes, please contact us to get a commercial license.

Contact

We are always happy to hear about your experiences with the cothority project. Feel free to contact us on our mailing list or by email.

Who is using our code?

This is a list of people outside of DEDIS who is using our codebase for research or applied projects. If you have an interesting project that you would like to have listed here, please contact us at [email protected].

  • Unlynx - A decentralized privacy-preserving data sharing tool
  • Medco - Privacy preserving medical data sharing
  • ByzGen - Tracking and secure storage of digital and hard assets
  • PDCi2b2 - Private Data Characterization for
  • i2b2

cothority's People

Contributors

ineiti avatar nikkolasg avatar liamsi avatar kc1212 avatar daeinar avatar jeffallen avatar christianmct avatar gnarula avatar froelich avatar evanv03 avatar darekzbik avatar lefkok avatar valentinmoullet avatar pegger avatar ilmarkov avatar claudio5 avatar christophebertrand avatar mlncn avatar lbarman avatar paraacha avatar yvgny avatar

Watchers

seyi avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.