├── .gitattributes ├── .github ├── PULL_REQUEST_TEMPLATE.md ├── about_pr_template.md └── workflows │ ├── deploy.yaml │ ├── full_test.yaml │ ├── lint_build_test.yaml │ └── release.yaml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── AUTHORS ├── CHANGELOG ├── CLAC ├── CLAI ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE.AGPL ├── Makefile ├── PUBLISH.md ├── README.md ├── authprox ├── README.md ├── apadmin │ ├── .gitignore │ ├── main.go │ └── test.sh ├── oidc.go ├── proto.go ├── service.go └── service_test.go ├── bevm ├── README.md ├── api.go ├── attr.go ├── attr_test.go ├── bevmadmin │ ├── .gitignore │ ├── README.md │ └── main.go ├── bevmclient │ ├── README.md │ ├── cmd_def.go │ ├── cmd_imp.go │ ├── main.go │ ├── test.sh │ └── utils.go ├── call_byzcoin.go ├── call_byzcoin_test.go ├── contract.go ├── contract_test.go ├── database.go ├── database_byz.go ├── database_mem.go ├── params.go ├── params_test.go ├── proto.go ├── service.go ├── service_test.go └── testdata │ ├── ABIv2 │ ├── ABIv2.sol │ ├── ABIv2_sol_ABIv2.abi │ └── ABIv2_sol_ABIv2.bin │ ├── CallByzcoin │ ├── CallByzcoin.sol │ ├── CallByzcoin_sol_CallByzcoin.abi │ └── CallByzcoin_sol_CallByzcoin.bin │ ├── Candy │ ├── Candy.scala │ ├── Candy.sol │ ├── Candy_sol_Candy.abi │ └── Candy_sol_Candy.bin │ ├── ERC20Token │ ├── ERC20Token.sol │ ├── ERC20Token_sol_ApproveAndCallFallBack.abi │ ├── ERC20Token_sol_ApproveAndCallFallBack.bin │ ├── ERC20Token_sol_ERC20Interface.abi │ ├── ERC20Token_sol_ERC20Interface.bin │ ├── ERC20Token_sol_ERC20Token.abi │ ├── ERC20Token_sol_ERC20Token.bin │ ├── ERC20Token_sol_Owned.abi │ ├── ERC20Token_sol_Owned.bin │ ├── ERC20Token_sol_SafeMath.abi │ └── ERC20Token_sol_SafeMath.bin │ ├── LoanContract │ ├── .stainless-cache │ │ └── vccache.bin │ ├── ERC20Specs.scala │ ├── ERC20Token.scala │ ├── ERC20Token.sol │ ├── ERC20Token_sol_ERC20Token.abi │ ├── ERC20Token_sol_ERC20Token.bin │ ├── LoanContract.scala │ ├── LoanContract.sol │ ├── LoanContractInvariant.scala │ ├── LoanContract_sol_LoanContract.abi │ └── LoanContract_sol_LoanContract.bin │ ├── MinimumToken │ ├── MinimumToken.scala │ ├── MinimumToken.sol │ ├── MinimumTokenInvariant.scala │ ├── MinimumToken_sol_MinimumToken.abi │ └── MinimumToken_sol_MinimumToken.bin │ ├── ModifiedToken │ ├── ModifiedToken.sol │ ├── ModifiedToken_sol_ModifiedToken.abi │ └── ModifiedToken_sol_ModifiedToken.bin │ ├── TimeTest │ ├── TimeTest.sol │ ├── TimeTest_sol_TimeTest.abi │ └── TimeTest_sol_TimeTest.bin │ └── Verify │ ├── Verify.sol │ ├── Verify_sol_Verify.abi │ └── Verify_sol_Verify.bin ├── bftcosi ├── README.md ├── bftcosi.go ├── bftcosi_test.go └── packets.go ├── blscosi ├── README.md ├── api.go ├── api_test.go ├── bdnproto │ ├── protocol.go │ ├── protocol_test.go │ ├── struct.go │ └── struct_test.go ├── blscosi │ ├── .gitignore │ ├── README.md │ ├── actions.go │ ├── actions_test.go │ ├── blscosi.go │ ├── blscosi_test.go │ ├── check │ │ ├── check.go │ │ └── check_test.go │ └── test.sh ├── protocol │ ├── gen_tree.go │ ├── gen_tree_test.go │ ├── protocol.go │ ├── protocol_test.go │ ├── struct.go │ └── sub_protocol.go ├── service.go ├── service_test.go └── simulation │ ├── .gitignore │ ├── README.md │ ├── fd_test.go │ ├── fd_unix_test.go │ ├── local.toml │ ├── protocol.go │ ├── simul.go │ └── simul_test.go ├── bypros ├── README.md ├── api.go ├── api_test.go ├── browse │ ├── mod.go │ └── paginate │ │ └── mod.go ├── proxy.go ├── proxy_test.go ├── service.go ├── storage │ ├── mod.go │ └── sqlstore │ │ ├── Dockerfile │ │ ├── docker-compose.yml │ │ ├── mod.go │ │ ├── schema │ │ └── schema.sql │ │ └── storetx.go ├── struct.go └── test │ └── integration_test.go ├── byzcoin ├── ByzCoin.png ├── ByzCoin.svg ├── Contracts.md ├── DataStructures.md ├── InstanceVersioning.md ├── README.md ├── ReplayGuard.md ├── RosterChange.md ├── api.go ├── api_test.go ├── bcadmin │ ├── .gitignore │ ├── README.md │ ├── clicontracts │ │ ├── README.md │ │ ├── config.go │ │ ├── config_test.sh │ │ ├── deferred.go │ │ ├── deferred_test.sh │ │ ├── name.go │ │ ├── name_test.sh │ │ ├── value.go │ │ └── value_test.sh │ ├── cmd_db.go │ ├── cmd_db_optimize.go │ ├── cmd_user.go │ ├── commands.go │ ├── lib │ │ ├── config.go │ │ ├── utils.go │ │ └── utils_test.go │ ├── main.go │ └── test.sh ├── bctest.go ├── contract_darc.go ├── contract_darc_test.go ├── contract_deferred.go ├── contract_name.go ├── contract_name_test.go ├── contracts.go ├── contracts │ ├── attr_test.go │ ├── coins.go │ ├── coins_test.go │ ├── contract_deferred_test.go │ ├── init.go │ ├── init_test.go │ ├── insecure_darc.go │ ├── insecure_darc_test.go │ ├── value.go │ └── value_test.go ├── contracts_test.go ├── doc.go ├── messages.go ├── proof.go ├── proof_test.go ├── proto.go ├── replayguard.go ├── replayguard_test.go ├── ringbuf.go ├── rostsimul.go ├── rostsimul_test.go ├── service.go ├── service_test.go ├── simulation │ ├── .gitignore │ ├── coins.go │ ├── coins.toml │ ├── plot_sim.py │ ├── simul.go │ └── simul_test.go ├── statechange_cache.go ├── statechange_cache_test.go ├── statereplay.go ├── statereplay_test.go ├── statetrie.go ├── statetrie_test.go ├── streaming.go ├── streaming_test.go ├── struct.go ├── struct_test.go ├── transaction.go ├── transaction_test.go ├── trie │ ├── README.md │ ├── db.go │ ├── db_test.go │ ├── dfs.go │ ├── diskdb.go │ ├── memdb.go │ ├── metadata.go │ ├── metadata_test.go │ ├── node.go │ ├── proof.go │ ├── proof_test.go │ ├── proto.go │ ├── staging.go │ ├── staging_test.go │ ├── trie.go │ └── trie_test.go ├── tx_pipeline.go ├── viewchange.go ├── viewchange │ ├── viewchange.go │ └── viewchange_test.go ├── viewchange_test.go └── wallet │ ├── .gitignore │ ├── main.go │ └── test.sh ├── byzcoinx ├── README.md ├── byzcoinx.go └── byzcoinx_test.go ├── calypso ├── CalypsoByzCoin.png ├── README.md ├── api.go ├── api_test.go ├── contracts.go ├── contracts_test.go ├── csadmin │ ├── README.md │ ├── clicontracts │ │ ├── lts.go │ │ ├── lts_test.sh │ │ ├── read.go │ │ ├── read_test.sh │ │ ├── write.go │ │ └── write_test.sh │ ├── commands.go │ ├── main.go │ └── test.sh ├── db.go ├── proto.go ├── protocol │ ├── README.md │ ├── Reencrypt.md │ ├── doc.go │ ├── ocs.go │ ├── ocs_struct.go │ ├── ocs_test.go │ ├── onchain.go │ └── onchain_test.go ├── service.go ├── service_test.go └── struct.go ├── conode ├── .gitignore ├── Dockerfile ├── Dockerfile-base ├── Dockerfile-dev ├── Makefile ├── README.md ├── conode.go ├── conode.service ├── conode_linux.go ├── conode_test.go ├── fd_darwin.go ├── fd_unix.go ├── full.go ├── run_nodes.sh ├── test.sh └── test_popcoins.sh ├── cosi ├── CLI.md ├── README.md ├── check │ └── check.go ├── client.go ├── cosi.go ├── cosi_test.go ├── crypto │ ├── README.md │ ├── cosi.go │ └── cosi_test.go ├── protocol │ ├── cosi.go │ ├── cosi_test.go │ └── packets.go ├── server.go ├── server_test.go ├── service │ ├── api.go │ ├── cosi.go │ └── cosi_test.go ├── simulation │ ├── .gitignore │ ├── README.md │ ├── cosi.toml │ ├── cosi_test.go │ ├── cosi_verification.toml │ ├── fd_test.go │ ├── fd_unix_test.go │ ├── protocol.go │ ├── simul.go │ ├── simul_test.go │ └── simulation.go └── test.sh ├── darc ├── README.md ├── darc.go ├── darc_example_test.go ├── darc_test.go ├── did.go ├── expression │ ├── expression.go │ └── expression_test.go ├── proto.go └── struct.go ├── dedis-cothority.toml ├── dkg ├── DKG.md ├── pedersen │ ├── dkg.go │ ├── dkg_struct.go │ └── dkg_test.go └── rabin │ ├── dkg.go │ ├── dkg_struct.go │ └── dkg_test.go ├── doc.go ├── doc ├── Applications.md ├── BuildingBlocks.md ├── CLIs.md ├── Protocols.md ├── README.md ├── Services.md ├── Simulation.md └── libtest.md ├── doctoc.sh ├── error.go ├── error_test.go ├── eventlog ├── README.md ├── api.go ├── api_test.go ├── buckets.go ├── el │ ├── .gitignore │ ├── README.md │ ├── main.go │ └── test.sh ├── proto.go └── service.go ├── evoting ├── README.md ├── api.go ├── api_test.go ├── arch.png ├── evoting-admin │ ├── .gitignore │ ├── README.md │ ├── app.go │ ├── app_test.go │ └── scripts │ │ ├── .gitignore │ │ ├── create-master.sh │ │ └── show-master.sh ├── lib │ ├── chains.go │ ├── container.go │ ├── container_test.go │ ├── doc.go │ ├── election.go │ ├── election_test.go │ ├── elgamal.go │ ├── elgamal_test.go │ ├── lib_test.go │ ├── master.go │ ├── master_test.go │ ├── proto.go │ ├── transaction.go │ ├── utils.go │ └── utils_test.go ├── protocol │ ├── Decrypt.md │ ├── Neff.md │ ├── decrypt.go │ ├── decrypt_struct.go │ ├── decrypt_test.go │ ├── doc.go │ ├── shuffle.go │ ├── shuffle_struct.go │ └── shuffle_test.go ├── service │ ├── README.md │ ├── service.go │ └── service_test.go ├── struct.go └── system.png ├── external ├── Makefile ├── README.md ├── clean_proto_deprecation.sh ├── docker │ ├── Dockerfile │ ├── Dockerfile-int │ ├── Dockerfile-unit │ ├── co1 │ │ ├── private.toml │ │ └── public.toml │ ├── co2 │ │ ├── private.toml │ │ └── public.toml │ ├── co3 │ │ ├── private.toml │ │ └── public.toml │ ├── co4 │ │ ├── private.toml │ │ └── public.toml │ ├── co5 │ │ ├── private.toml │ │ └── public.toml │ ├── co6 │ │ ├── private.toml │ │ └── public.toml │ ├── co7 │ │ ├── private.toml │ │ └── public.toml │ ├── generate_conode_toml.sh │ └── public.toml ├── java │ ├── .gitignore │ ├── pom.xml │ └── src │ │ ├── main │ │ └── java │ │ │ └── ch │ │ │ └── epfl │ │ │ └── dedis │ │ │ ├── byzcoin │ │ │ ├── Block.java │ │ │ ├── ByzCoinEvolve.java │ │ │ ├── ByzCoinRPC.java │ │ │ ├── Config.java │ │ │ ├── DataBody.java │ │ │ ├── Instance.java │ │ │ ├── InstanceId.java │ │ │ ├── Proof.java │ │ │ ├── README.md │ │ │ ├── SignerCounters.java │ │ │ ├── StateChange.java │ │ │ ├── StateChangeBody.java │ │ │ ├── StateChanges.java │ │ │ ├── Subscription.java │ │ │ ├── contracts │ │ │ │ ├── ChainConfigData.java │ │ │ │ ├── ChainConfigInstance.java │ │ │ │ ├── NamingInstance.java │ │ │ │ ├── SecureDarcInstance.java │ │ │ │ └── ValueInstance.java │ │ │ └── transaction │ │ │ │ ├── Argument.java │ │ │ │ ├── ClientTransaction.java │ │ │ │ ├── ClientTransactionId.java │ │ │ │ ├── Delete.java │ │ │ │ ├── Instruction.java │ │ │ │ ├── InstructionV1.java │ │ │ │ ├── Invoke.java │ │ │ │ ├── Spawn.java │ │ │ │ └── TxResult.java │ │ │ ├── byzgen │ │ │ ├── CalypsoFactory.java │ │ │ ├── EpflPermission.java │ │ │ ├── User.java │ │ │ ├── UserId.java │ │ │ └── UserSignature.java │ │ │ ├── calypso │ │ │ ├── CalypsoRPC.java │ │ │ ├── CreateLTSReply.java │ │ │ ├── DecryptKeyReply.java │ │ │ ├── Document.java │ │ │ ├── Encryption.java │ │ │ ├── LTSId.java │ │ │ ├── LTSInstance.java │ │ │ ├── LTSInstanceInfo.java │ │ │ ├── README.md │ │ │ ├── ReadData.java │ │ │ ├── ReadInstance.java │ │ │ ├── WriteData.java │ │ │ └── WriteInstance.java │ │ │ ├── eventlog │ │ │ ├── Event.java │ │ │ ├── EventLogInstance.java │ │ │ └── SearchResponse.java │ │ │ ├── lib │ │ │ ├── HashId.java │ │ │ ├── Hex.java │ │ │ ├── README.md │ │ │ ├── Sha256id.java │ │ │ ├── SkipBlock.java │ │ │ ├── SkipblockId.java │ │ │ ├── UUIDType5.java │ │ │ ├── crypto │ │ │ │ ├── BdnSig.java │ │ │ │ ├── BlsSig.java │ │ │ │ ├── Bn256G1Point.java │ │ │ │ ├── Bn256G2Point.java │ │ │ │ ├── Bn256Pair.java │ │ │ │ ├── Bn256Scalar.java │ │ │ │ ├── Ed25519.java │ │ │ │ ├── Ed25519Pair.java │ │ │ │ ├── Ed25519Point.java │ │ │ │ ├── Ed25519Scalar.java │ │ │ │ ├── Mask.java │ │ │ │ ├── Point.java │ │ │ │ ├── PointFactory.java │ │ │ │ ├── Scalar.java │ │ │ │ ├── SchnorrSig.java │ │ │ │ ├── TonelliShanks.java │ │ │ │ └── bn256 │ │ │ │ │ ├── BN.java │ │ │ │ │ ├── Constants.java │ │ │ │ │ ├── CurvePoint.java │ │ │ │ │ ├── GFp12.java │ │ │ │ │ ├── GFp2.java │ │ │ │ │ ├── GFp6.java │ │ │ │ │ ├── GFpPool.java │ │ │ │ │ ├── OptAte.java │ │ │ │ │ └── TwistPoint.java │ │ │ ├── darc │ │ │ │ ├── Darc.java │ │ │ │ ├── DarcId.java │ │ │ │ ├── Identity.java │ │ │ │ ├── IdentityDarc.java │ │ │ │ ├── IdentityEd25519.java │ │ │ │ ├── IdentityFactory.java │ │ │ │ ├── IdentityX509EC.java │ │ │ │ ├── Request.java │ │ │ │ ├── Rule.java │ │ │ │ ├── Rules.java │ │ │ │ ├── Signature.java │ │ │ │ ├── Signer.java │ │ │ │ ├── SignerEd25519.java │ │ │ │ ├── SignerFactory.java │ │ │ │ └── SignerX509EC.java │ │ │ ├── exception │ │ │ │ ├── CothorityAlreadyExistsException.java │ │ │ │ ├── CothorityCommunicationException.java │ │ │ │ ├── CothorityCryptoException.java │ │ │ │ ├── CothorityException.java │ │ │ │ ├── CothorityNotFoundException.java │ │ │ │ └── CothorityPermissionException.java │ │ │ ├── network │ │ │ │ ├── Roster.java │ │ │ │ ├── ServerIdentity.java │ │ │ │ ├── ServerToml.java │ │ │ │ ├── ServiceIdentity.java │ │ │ │ └── ServiceToml.java │ │ │ └── proto │ │ │ │ ├── AuthProxProto.java │ │ │ │ ├── BEvmProto.java │ │ │ │ ├── ByzCoinProto.java │ │ │ │ ├── Calypso.java │ │ │ │ ├── CiscProto.java │ │ │ │ ├── CollectionProto.java │ │ │ │ ├── DarcProto.java │ │ │ │ ├── EventLogProto.java │ │ │ │ ├── Evoting.java │ │ │ │ ├── NetworkProto.java │ │ │ │ ├── OnetProto.java │ │ │ │ ├── Personhood.java │ │ │ │ ├── PersonhoodService.java │ │ │ │ ├── PoPProto.java │ │ │ │ ├── SkipchainProto.java │ │ │ │ ├── StatusProto.java │ │ │ │ └── TrieProto.java │ │ │ ├── skipchain │ │ │ ├── ByzcoinSig.java │ │ │ ├── ForwardLink.java │ │ │ ├── SignatureScheme.java │ │ │ └── SkipchainRPC.java │ │ │ └── status │ │ │ └── StatusRPC.java │ │ └── test │ │ ├── java │ │ └── ch │ │ │ └── epfl │ │ │ └── dedis │ │ │ ├── KeyAndSignOperationsTest.java │ │ │ ├── byzcoin │ │ │ ├── AuthorizationTest.java │ │ │ ├── ByzCoinRPCTest.java │ │ │ ├── ProofTest.java │ │ │ └── contracts │ │ │ │ ├── CoinTest.java │ │ │ │ ├── ConfigTest.java │ │ │ │ ├── DarcTest.java │ │ │ │ ├── EventlogTest.java │ │ │ │ ├── NamingTest.java │ │ │ │ └── ValueTest.java │ │ │ ├── byzgen │ │ │ ├── CalypsoFactoryTest.java │ │ │ ├── GrantAccessTest.java │ │ │ └── RestartTest.java │ │ │ ├── calypso │ │ │ ├── CalypsoTest.java │ │ │ ├── DocumentTest.java │ │ │ ├── EncryptionTest.java │ │ │ ├── ReadInstanceTest.java │ │ │ └── WriteInstanceTest.java │ │ │ ├── integration │ │ │ ├── DockerTestServerController.java │ │ │ ├── ManualTestServerController.java │ │ │ ├── TestServerController.java │ │ │ └── TestServerInit.java │ │ │ ├── lib │ │ │ ├── RosterTest.java │ │ │ ├── ServerIdentityTest.java │ │ │ ├── SkipBlockTest.java │ │ │ ├── crypto │ │ │ │ ├── BdnSigTest.java │ │ │ │ ├── BlsSigTest.java │ │ │ │ ├── Bn256G1PointTest.java │ │ │ │ ├── Bn256G2PointTest.java │ │ │ │ ├── Bn256ScalarTest.java │ │ │ │ ├── Ed25519Test.java │ │ │ │ ├── MaskTest.java │ │ │ │ ├── PointFactoryTest.java │ │ │ │ ├── SignerX509ECTest.java │ │ │ │ ├── TonelliShanksTest.java │ │ │ │ ├── XofTest.java │ │ │ │ └── bn256 │ │ │ │ │ └── BNTest.java │ │ │ └── darc │ │ │ │ ├── DarcTest.java │ │ │ │ ├── IdentityTest.java │ │ │ │ └── SignerTest.java │ │ │ ├── skipchain │ │ │ └── SkipchainRPCTest.java │ │ │ └── status │ │ │ └── StatusRPCTest.java │ │ └── resources │ │ ├── public.toml │ │ ├── secp256k1-key.der │ │ ├── secp256k1-pkcs8.der │ │ ├── secp256k1-pub.der │ │ ├── secp384r1-key.der │ │ ├── secp384r1-pkcs8.der │ │ ├── secp384r1-pub.der │ │ ├── secp521r1-key.der │ │ ├── secp521r1-pkcs8.der │ │ └── secp521r1-pub.der ├── js │ ├── .gitignore │ ├── cothority │ │ ├── .gitignore │ │ ├── CHANGELOG.md │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── publish.sh │ │ ├── scripts │ │ │ └── build_proto.js │ │ ├── spec │ │ │ ├── bevm │ │ │ │ ├── account.spec.ts │ │ │ │ ├── anypromise.spec.ts │ │ │ │ ├── bevm-instance.spec.ts │ │ │ │ └── contract.spec.ts │ │ │ ├── byzcoin │ │ │ │ ├── byzcoin-rpc.spec.ts │ │ │ │ ├── client-transaction.spec.ts │ │ │ │ ├── coin-instance.spec.ts │ │ │ │ ├── darc-instance.spec.ts │ │ │ │ ├── proof.spec.ts │ │ │ │ ├── proto.spec.ts │ │ │ │ ├── stream.spec.ts │ │ │ │ └── value-instance.spec.ts │ │ │ ├── calypso │ │ │ │ └── calypso.spec.ts │ │ │ ├── darc │ │ │ │ ├── darc.spec.ts │ │ │ │ └── identity.spec.ts │ │ │ ├── helpers │ │ │ │ ├── bctest.ts │ │ │ │ ├── default-timeout.ts │ │ │ │ ├── global-this.ts │ │ │ │ ├── reporter.ts │ │ │ │ └── stop-conodes.ts │ │ │ ├── index.spec.ts │ │ │ ├── log.spec.ts │ │ │ ├── network │ │ │ │ ├── connection.spec.ts │ │ │ │ ├── proto.spec.ts │ │ │ │ └── websocket-test-adapter.ts │ │ │ ├── personhood │ │ │ │ ├── credentials-instance.spec.ts │ │ │ │ ├── ro-pa-sci-instance.spec.ts │ │ │ │ └── spawner-instance.spec.ts │ │ │ ├── protobuf │ │ │ │ └── index.spec.ts │ │ │ ├── skipchain │ │ │ │ ├── skipblock.spec.ts │ │ │ │ └── skipchain-rpc.spec.ts │ │ │ ├── status │ │ │ │ ├── proto.spec.ts │ │ │ │ └── status-rpc.spec.ts │ │ │ ├── support │ │ │ │ ├── conondes.ts │ │ │ │ ├── historyObs.ts │ │ │ │ ├── jasmine.json │ │ │ │ └── public.toml │ │ │ ├── tsconfig.json │ │ │ └── v2 │ │ │ │ ├── coin-inst.spec.ts │ │ │ │ └── darc-inst.spec.ts │ │ ├── src │ │ │ ├── bevm │ │ │ │ ├── bevm-instance.ts │ │ │ │ ├── bevm-rpc.ts │ │ │ │ ├── index.ts │ │ │ │ └── proto.ts │ │ │ ├── byzcoin │ │ │ │ ├── beautifier │ │ │ │ │ ├── coin.ts │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── credential.ts │ │ │ │ │ ├── darc.ts │ │ │ │ │ ├── default.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── byzcoin-rpc.ts │ │ │ │ ├── client-transaction.ts │ │ │ │ ├── config.ts │ │ │ │ ├── contracts │ │ │ │ │ ├── coin-instance.ts │ │ │ │ │ ├── darc-instance.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── value-instance.ts │ │ │ │ ├── index.ts │ │ │ │ ├── instance.ts │ │ │ │ ├── proof.ts │ │ │ │ └── proto │ │ │ │ │ ├── check-auth.ts │ │ │ │ │ ├── data-body.ts │ │ │ │ │ ├── data-header.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── requests.ts │ │ │ │ │ ├── stream.ts │ │ │ │ │ └── tx-result.ts │ │ │ ├── calypso │ │ │ │ ├── calypso-instance.ts │ │ │ │ ├── calypso-rpc.ts │ │ │ │ ├── index.ts │ │ │ │ └── keccak.d.ts │ │ │ ├── darc │ │ │ │ ├── darc.ts │ │ │ │ ├── identity-darc.ts │ │ │ │ ├── identity-did.ts │ │ │ │ ├── identity-ed25519.ts │ │ │ │ ├── identity-tsm.ts │ │ │ │ ├── identity-wrapper.ts │ │ │ │ ├── index.ts │ │ │ │ ├── rules.ts │ │ │ │ ├── signer-ed25519.ts │ │ │ │ └── signer.ts │ │ │ ├── evoting │ │ │ │ └── proto.ts │ │ │ ├── index.ts │ │ │ ├── log.ts │ │ │ ├── network │ │ │ │ ├── index.ts │ │ │ │ ├── nodes.ts │ │ │ │ ├── proto.ts │ │ │ │ ├── rosterwsconnection.ts │ │ │ │ ├── websocket-adapter.ts │ │ │ │ └── websocket.ts │ │ │ ├── personhood │ │ │ │ ├── credentials-instance.ts │ │ │ │ ├── personhood-rpc.ts │ │ │ │ ├── pop-party-instance.ts │ │ │ │ ├── proto.ts │ │ │ │ ├── ring-sig.ts │ │ │ │ ├── ro-pa-sci-instance.ts │ │ │ │ └── spawner-instance.ts │ │ │ ├── protobuf │ │ │ │ ├── index.ts │ │ │ │ └── models.json │ │ │ ├── skipchain │ │ │ │ ├── index.ts │ │ │ │ ├── proto.ts │ │ │ │ ├── skipblock.ts │ │ │ │ └── skipchain-rpc.ts │ │ │ ├── status │ │ │ │ ├── index.ts │ │ │ │ ├── proto.ts │ │ │ │ └── status-rpc.ts │ │ │ └── v2 │ │ │ │ ├── README.md │ │ │ │ └── byzcoin │ │ │ │ ├── contracts │ │ │ │ ├── coinContract.ts │ │ │ │ ├── coinInst.ts │ │ │ │ ├── darcContract.ts │ │ │ │ ├── darcInsts.ts │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── transactionBuilder.ts │ │ │ │ └── util.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ └── webpack.config.js │ ├── kyber │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── README.md │ │ ├── index.html │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── publish.sh │ │ ├── spec │ │ │ ├── constants.spec.ts │ │ │ ├── group │ │ │ │ ├── edwards25519 │ │ │ │ │ ├── curve.spec.ts │ │ │ │ │ ├── point.spec.ts │ │ │ │ │ ├── scalar.spec.ts │ │ │ │ │ ├── sign.input │ │ │ │ │ └── vector.spec.ts │ │ │ │ ├── group.spec.ts │ │ │ │ └── nist │ │ │ │ │ ├── curve.spec.ts │ │ │ │ │ ├── ecdh_test.json │ │ │ │ │ ├── point.spec.ts │ │ │ │ │ ├── scalar.spec.ts │ │ │ │ │ └── vector.spec.ts │ │ │ ├── helpers │ │ │ │ ├── jsverify.ts │ │ │ │ └── utils.ts │ │ │ ├── index.spec.ts │ │ │ ├── pairing │ │ │ │ ├── bn.spec.ts │ │ │ │ ├── curve-point.spec.ts │ │ │ │ ├── gfp.spec.ts │ │ │ │ ├── gfp12.spec.ts │ │ │ │ ├── gfp2.spec.ts │ │ │ │ ├── gfp6.spec.ts │ │ │ │ ├── opt-ate.spec.ts │ │ │ │ ├── point.spec.ts │ │ │ │ ├── scalar.spec.ts │ │ │ │ └── twist-point.spec.ts │ │ │ ├── point-factory.spec.ts │ │ │ ├── sign │ │ │ │ ├── anon │ │ │ │ │ └── anon.spec.ts │ │ │ │ ├── bdn │ │ │ │ │ └── bdn.spec.ts │ │ │ │ ├── bls │ │ │ │ │ └── bls.spec.ts │ │ │ │ ├── mask.spec.ts │ │ │ │ └── schnorr │ │ │ │ │ └── schnorr.spec.ts │ │ │ ├── support │ │ │ │ └── jasmine.json │ │ │ └── utils │ │ │ │ └── tonelli-shanks.spec.ts │ │ ├── src │ │ │ ├── constants.ts │ │ │ ├── curve │ │ │ │ ├── edwards25519 │ │ │ │ │ ├── curve.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── point.ts │ │ │ │ │ └── scalar.ts │ │ │ │ ├── index.ts │ │ │ │ └── nist │ │ │ │ │ ├── curve.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── params.ts │ │ │ │ │ ├── point.ts │ │ │ │ │ └── scalar.ts │ │ │ ├── index.ts │ │ │ ├── pairing │ │ │ │ ├── bn.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── curve-point.ts │ │ │ │ ├── gfp.ts │ │ │ │ ├── gfp12.ts │ │ │ │ ├── gfp2.ts │ │ │ │ ├── gfp6.ts │ │ │ │ ├── index.ts │ │ │ │ ├── opt-ate.ts │ │ │ │ ├── point.ts │ │ │ │ ├── scalar.ts │ │ │ │ └── twist-point.ts │ │ │ ├── point-factory.ts │ │ │ ├── random.ts │ │ │ ├── sign │ │ │ │ ├── anon │ │ │ │ │ └── index.ts │ │ │ │ ├── bdn │ │ │ │ │ └── index.ts │ │ │ │ ├── bls │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mask.ts │ │ │ │ └── schnorr │ │ │ │ │ └── schnorr.ts │ │ │ ├── suite.ts │ │ │ └── utils │ │ │ │ └── tonelli-shanks.ts │ │ ├── tsconfig.json │ │ ├── tslint.json │ │ └── webpack.config.js │ └── types │ │ └── crypto-browserify │ │ └── index.d.ts └── proto │ ├── README.md │ ├── authprox.proto │ ├── bevm.proto │ ├── byzcoin.proto │ ├── calypso.proto │ ├── darc.proto │ ├── eventlog.proto │ ├── evoting.proto │ ├── network.proto │ ├── onet.proto │ ├── personhood.proto │ ├── personhood_service.proto │ ├── skipchain.proto │ ├── status.proto │ └── trie.proto ├── ftcosi ├── .gitignore ├── CLI.md ├── README.md ├── check │ └── check.go ├── client.go ├── ftcosi.go ├── ftcosi_test.go ├── protocol │ ├── gen_tree.go │ ├── gen_tree_test.go │ ├── helper_functions.go │ ├── protocol.go │ ├── protocol_commitments.go │ ├── protocol_test.go │ ├── struct.go │ └── sub_protocol.go ├── server.go ├── server_test.go ├── service │ ├── api.go │ ├── ftcosi.go │ └── ftcosi_test.go ├── simulation │ ├── .gitignore │ ├── README.md │ ├── fd_test.go │ ├── fd_unix_test.go │ ├── local.toml │ ├── protocol.go │ ├── simul.go │ └── simul_test.go └── test.sh ├── go.mod ├── go.sum ├── helm-chart ├── README.md └── conode │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── configmap.yaml │ ├── headless-service.yaml │ ├── secret.yaml │ ├── service.yaml │ └── statefulset.yaml │ └── values.yaml ├── integration_test.sh ├── libtest.sh ├── messaging ├── README.md ├── broadcast.go ├── broadcast_test.go ├── doc.go ├── messaging_test.go ├── propagate.go └── propagate_test.go ├── personhood ├── README.md ├── api.go ├── api_popparty.go ├── contracts │ ├── contract_credential.go │ ├── contract_credential_test.go │ ├── contract_popparty.go │ ├── contract_popparty_test.go │ ├── contract_ropasci.go │ ├── contract_ropasci_test.go │ ├── contract_spawner.go │ ├── contract_spawner_test.go │ ├── contract_test.go │ ├── credential.go │ ├── credentials.go │ ├── proto.go │ └── register.go ├── db.go ├── doc.go ├── email.go ├── email_test.go ├── phapp │ ├── .gitignore │ ├── main.go │ └── test.sh ├── proto.go ├── proto_enum.go ├── service.go ├── service_test.go └── user │ ├── DynaCred-101.odt │ ├── DynaCred-101.pdf │ ├── README.md │ ├── builder.go │ ├── builder_test.go │ ├── devices.go │ ├── spawner.go │ ├── user.go │ └── user_test.go ├── proto.awk ├── proto.sh ├── scmgr ├── README.md ├── app.go ├── app_test.go ├── commands.go └── test.sh ├── skipchain ├── README.md ├── api.go ├── api_test.go ├── long_test.go ├── msgs.go ├── protocol.go ├── protocol_test.go ├── skipchain.go ├── skipchain_example.png ├── skipchain_simul.go ├── skipchain_test.go ├── struct.go ├── struct_test.go └── verification.go ├── status ├── README.md ├── service │ ├── README.md │ ├── api.go │ ├── proto.go │ ├── status.go │ └── status_test.go ├── status.go ├── status_test.go └── test.sh ├── suite.go ├── suite_vartime.go └── unit_test.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/about_pr_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/about_pr_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/workflows/deploy.yaml -------------------------------------------------------------------------------- /.github/workflows/full_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/workflows/full_test.yaml -------------------------------------------------------------------------------- /.github/workflows/lint_build_test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/workflows/lint_build_test.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CLAC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/CLAC -------------------------------------------------------------------------------- /CLAI: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/CLAI -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.AGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/LICENSE.AGPL -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/Makefile -------------------------------------------------------------------------------- /PUBLISH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/PUBLISH.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/README.md -------------------------------------------------------------------------------- /authprox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/README.md -------------------------------------------------------------------------------- /authprox/apadmin/.gitignore: -------------------------------------------------------------------------------- 1 | apadmin 2 | build 3 | -------------------------------------------------------------------------------- /authprox/apadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/apadmin/main.go -------------------------------------------------------------------------------- /authprox/apadmin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/apadmin/test.sh -------------------------------------------------------------------------------- /authprox/oidc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/oidc.go -------------------------------------------------------------------------------- /authprox/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/proto.go -------------------------------------------------------------------------------- /authprox/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/service.go -------------------------------------------------------------------------------- /authprox/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/authprox/service_test.go -------------------------------------------------------------------------------- /bevm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/README.md -------------------------------------------------------------------------------- /bevm/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/api.go -------------------------------------------------------------------------------- /bevm/attr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/attr.go -------------------------------------------------------------------------------- /bevm/attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/attr_test.go -------------------------------------------------------------------------------- /bevm/bevmadmin/.gitignore: -------------------------------------------------------------------------------- 1 | bevmadmin 2 | -------------------------------------------------------------------------------- /bevm/bevmadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmadmin/README.md -------------------------------------------------------------------------------- /bevm/bevmadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmadmin/main.go -------------------------------------------------------------------------------- /bevm/bevmclient/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/README.md -------------------------------------------------------------------------------- /bevm/bevmclient/cmd_def.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/cmd_def.go -------------------------------------------------------------------------------- /bevm/bevmclient/cmd_imp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/cmd_imp.go -------------------------------------------------------------------------------- /bevm/bevmclient/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/main.go -------------------------------------------------------------------------------- /bevm/bevmclient/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/test.sh -------------------------------------------------------------------------------- /bevm/bevmclient/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/bevmclient/utils.go -------------------------------------------------------------------------------- /bevm/call_byzcoin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/call_byzcoin.go -------------------------------------------------------------------------------- /bevm/call_byzcoin_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/call_byzcoin_test.go -------------------------------------------------------------------------------- /bevm/contract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/contract.go -------------------------------------------------------------------------------- /bevm/contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/contract_test.go -------------------------------------------------------------------------------- /bevm/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/database.go -------------------------------------------------------------------------------- /bevm/database_byz.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/database_byz.go -------------------------------------------------------------------------------- /bevm/database_mem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/database_mem.go -------------------------------------------------------------------------------- /bevm/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/params.go -------------------------------------------------------------------------------- /bevm/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/params_test.go -------------------------------------------------------------------------------- /bevm/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/proto.go -------------------------------------------------------------------------------- /bevm/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/service.go -------------------------------------------------------------------------------- /bevm/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/service_test.go -------------------------------------------------------------------------------- /bevm/testdata/ABIv2/ABIv2.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ABIv2/ABIv2.sol -------------------------------------------------------------------------------- /bevm/testdata/ABIv2/ABIv2_sol_ABIv2.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ABIv2/ABIv2_sol_ABIv2.abi -------------------------------------------------------------------------------- /bevm/testdata/ABIv2/ABIv2_sol_ABIv2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ABIv2/ABIv2_sol_ABIv2.bin -------------------------------------------------------------------------------- /bevm/testdata/CallByzcoin/CallByzcoin.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/CallByzcoin/CallByzcoin.sol -------------------------------------------------------------------------------- /bevm/testdata/CallByzcoin/CallByzcoin_sol_CallByzcoin.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/CallByzcoin/CallByzcoin_sol_CallByzcoin.abi -------------------------------------------------------------------------------- /bevm/testdata/CallByzcoin/CallByzcoin_sol_CallByzcoin.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/CallByzcoin/CallByzcoin_sol_CallByzcoin.bin -------------------------------------------------------------------------------- /bevm/testdata/Candy/Candy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Candy/Candy.scala -------------------------------------------------------------------------------- /bevm/testdata/Candy/Candy.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Candy/Candy.sol -------------------------------------------------------------------------------- /bevm/testdata/Candy/Candy_sol_Candy.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Candy/Candy_sol_Candy.abi -------------------------------------------------------------------------------- /bevm/testdata/Candy/Candy_sol_Candy.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Candy/Candy_sol_Candy.bin -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token.sol -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ApproveAndCallFallBack.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_ApproveAndCallFallBack.abi -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ApproveAndCallFallBack.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Interface.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Interface.abi -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Interface.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Token.abi -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Token.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_ERC20Token.bin -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_Owned.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_Owned.abi -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_Owned.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_Owned.bin -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_SafeMath.abi: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /bevm/testdata/ERC20Token/ERC20Token_sol_SafeMath.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ERC20Token/ERC20Token_sol_SafeMath.bin -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/.stainless-cache/vccache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/.stainless-cache/vccache.bin -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/ERC20Specs.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/ERC20Specs.scala -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/ERC20Token.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/ERC20Token.scala -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/ERC20Token.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/ERC20Token.sol -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/ERC20Token_sol_ERC20Token.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/ERC20Token_sol_ERC20Token.abi -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/ERC20Token_sol_ERC20Token.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/LoanContract.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/LoanContract.scala -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/LoanContract.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/LoanContract.sol -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/LoanContractInvariant.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/LoanContractInvariant.scala -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/LoanContract_sol_LoanContract.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/LoanContract_sol_LoanContract.abi -------------------------------------------------------------------------------- /bevm/testdata/LoanContract/LoanContract_sol_LoanContract.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/LoanContract/LoanContract_sol_LoanContract.bin -------------------------------------------------------------------------------- /bevm/testdata/MinimumToken/MinimumToken.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/MinimumToken/MinimumToken.scala -------------------------------------------------------------------------------- /bevm/testdata/MinimumToken/MinimumToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/MinimumToken/MinimumToken.sol -------------------------------------------------------------------------------- /bevm/testdata/MinimumToken/MinimumTokenInvariant.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/MinimumToken/MinimumTokenInvariant.scala -------------------------------------------------------------------------------- /bevm/testdata/MinimumToken/MinimumToken_sol_MinimumToken.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/MinimumToken/MinimumToken_sol_MinimumToken.abi -------------------------------------------------------------------------------- /bevm/testdata/MinimumToken/MinimumToken_sol_MinimumToken.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/MinimumToken/MinimumToken_sol_MinimumToken.bin -------------------------------------------------------------------------------- /bevm/testdata/ModifiedToken/ModifiedToken.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ModifiedToken/ModifiedToken.sol -------------------------------------------------------------------------------- /bevm/testdata/ModifiedToken/ModifiedToken_sol_ModifiedToken.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ModifiedToken/ModifiedToken_sol_ModifiedToken.abi -------------------------------------------------------------------------------- /bevm/testdata/ModifiedToken/ModifiedToken_sol_ModifiedToken.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/ModifiedToken/ModifiedToken_sol_ModifiedToken.bin -------------------------------------------------------------------------------- /bevm/testdata/TimeTest/TimeTest.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/TimeTest/TimeTest.sol -------------------------------------------------------------------------------- /bevm/testdata/TimeTest/TimeTest_sol_TimeTest.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/TimeTest/TimeTest_sol_TimeTest.abi -------------------------------------------------------------------------------- /bevm/testdata/TimeTest/TimeTest_sol_TimeTest.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/TimeTest/TimeTest_sol_TimeTest.bin -------------------------------------------------------------------------------- /bevm/testdata/Verify/Verify.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Verify/Verify.sol -------------------------------------------------------------------------------- /bevm/testdata/Verify/Verify_sol_Verify.abi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Verify/Verify_sol_Verify.abi -------------------------------------------------------------------------------- /bevm/testdata/Verify/Verify_sol_Verify.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bevm/testdata/Verify/Verify_sol_Verify.bin -------------------------------------------------------------------------------- /bftcosi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bftcosi/README.md -------------------------------------------------------------------------------- /bftcosi/bftcosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bftcosi/bftcosi.go -------------------------------------------------------------------------------- /bftcosi/bftcosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bftcosi/bftcosi_test.go -------------------------------------------------------------------------------- /bftcosi/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bftcosi/packets.go -------------------------------------------------------------------------------- /blscosi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/README.md -------------------------------------------------------------------------------- /blscosi/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/api.go -------------------------------------------------------------------------------- /blscosi/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/api_test.go -------------------------------------------------------------------------------- /blscosi/bdnproto/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/bdnproto/protocol.go -------------------------------------------------------------------------------- /blscosi/bdnproto/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/bdnproto/protocol_test.go -------------------------------------------------------------------------------- /blscosi/bdnproto/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/bdnproto/struct.go -------------------------------------------------------------------------------- /blscosi/bdnproto/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/bdnproto/struct_test.go -------------------------------------------------------------------------------- /blscosi/blscosi/.gitignore: -------------------------------------------------------------------------------- 1 | blscosi 2 | build 3 | -------------------------------------------------------------------------------- /blscosi/blscosi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/README.md -------------------------------------------------------------------------------- /blscosi/blscosi/actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/actions.go -------------------------------------------------------------------------------- /blscosi/blscosi/actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/actions_test.go -------------------------------------------------------------------------------- /blscosi/blscosi/blscosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/blscosi.go -------------------------------------------------------------------------------- /blscosi/blscosi/blscosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/blscosi_test.go -------------------------------------------------------------------------------- /blscosi/blscosi/check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/check/check.go -------------------------------------------------------------------------------- /blscosi/blscosi/check/check_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/check/check_test.go -------------------------------------------------------------------------------- /blscosi/blscosi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/blscosi/test.sh -------------------------------------------------------------------------------- /blscosi/protocol/gen_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/gen_tree.go -------------------------------------------------------------------------------- /blscosi/protocol/gen_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/gen_tree_test.go -------------------------------------------------------------------------------- /blscosi/protocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/protocol.go -------------------------------------------------------------------------------- /blscosi/protocol/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/protocol_test.go -------------------------------------------------------------------------------- /blscosi/protocol/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/struct.go -------------------------------------------------------------------------------- /blscosi/protocol/sub_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/protocol/sub_protocol.go -------------------------------------------------------------------------------- /blscosi/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/service.go -------------------------------------------------------------------------------- /blscosi/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/service_test.go -------------------------------------------------------------------------------- /blscosi/simulation/.gitignore: -------------------------------------------------------------------------------- 1 | deter.toml 2 | build 3 | deploy 4 | test_data 5 | simulation 6 | -------------------------------------------------------------------------------- /blscosi/simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/README.md -------------------------------------------------------------------------------- /blscosi/simulation/fd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/fd_test.go -------------------------------------------------------------------------------- /blscosi/simulation/fd_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/fd_unix_test.go -------------------------------------------------------------------------------- /blscosi/simulation/local.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/local.toml -------------------------------------------------------------------------------- /blscosi/simulation/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/protocol.go -------------------------------------------------------------------------------- /blscosi/simulation/simul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/simul.go -------------------------------------------------------------------------------- /blscosi/simulation/simul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/blscosi/simulation/simul_test.go -------------------------------------------------------------------------------- /bypros/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/README.md -------------------------------------------------------------------------------- /bypros/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/api.go -------------------------------------------------------------------------------- /bypros/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/api_test.go -------------------------------------------------------------------------------- /bypros/browse/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/browse/mod.go -------------------------------------------------------------------------------- /bypros/browse/paginate/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/browse/paginate/mod.go -------------------------------------------------------------------------------- /bypros/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/proxy.go -------------------------------------------------------------------------------- /bypros/proxy_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/proxy_test.go -------------------------------------------------------------------------------- /bypros/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/service.go -------------------------------------------------------------------------------- /bypros/storage/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/mod.go -------------------------------------------------------------------------------- /bypros/storage/sqlstore/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/sqlstore/Dockerfile -------------------------------------------------------------------------------- /bypros/storage/sqlstore/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/sqlstore/docker-compose.yml -------------------------------------------------------------------------------- /bypros/storage/sqlstore/mod.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/sqlstore/mod.go -------------------------------------------------------------------------------- /bypros/storage/sqlstore/schema/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/sqlstore/schema/schema.sql -------------------------------------------------------------------------------- /bypros/storage/sqlstore/storetx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/storage/sqlstore/storetx.go -------------------------------------------------------------------------------- /bypros/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/struct.go -------------------------------------------------------------------------------- /bypros/test/integration_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/bypros/test/integration_test.go -------------------------------------------------------------------------------- /byzcoin/ByzCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/ByzCoin.png -------------------------------------------------------------------------------- /byzcoin/ByzCoin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/ByzCoin.svg -------------------------------------------------------------------------------- /byzcoin/Contracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/Contracts.md -------------------------------------------------------------------------------- /byzcoin/DataStructures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/DataStructures.md -------------------------------------------------------------------------------- /byzcoin/InstanceVersioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/InstanceVersioning.md -------------------------------------------------------------------------------- /byzcoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/README.md -------------------------------------------------------------------------------- /byzcoin/ReplayGuard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/ReplayGuard.md -------------------------------------------------------------------------------- /byzcoin/RosterChange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/RosterChange.md -------------------------------------------------------------------------------- /byzcoin/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/api.go -------------------------------------------------------------------------------- /byzcoin/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/api_test.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/.gitignore: -------------------------------------------------------------------------------- 1 | bcadmin 2 | build 3 | -------------------------------------------------------------------------------- /byzcoin/bcadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/README.md -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/README.md -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/config.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/config_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/config_test.sh -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/deferred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/deferred.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/deferred_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/deferred_test.sh -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/name.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/name_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/name_test.sh -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/value.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/clicontracts/value_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/clicontracts/value_test.sh -------------------------------------------------------------------------------- /byzcoin/bcadmin/cmd_db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/cmd_db.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/cmd_db_optimize.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/cmd_db_optimize.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/cmd_user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/cmd_user.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/commands.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/lib/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/lib/config.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/lib/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/lib/utils.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/lib/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/lib/utils_test.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/main.go -------------------------------------------------------------------------------- /byzcoin/bcadmin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bcadmin/test.sh -------------------------------------------------------------------------------- /byzcoin/bctest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/bctest.go -------------------------------------------------------------------------------- /byzcoin/contract_darc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contract_darc.go -------------------------------------------------------------------------------- /byzcoin/contract_darc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contract_darc_test.go -------------------------------------------------------------------------------- /byzcoin/contract_deferred.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contract_deferred.go -------------------------------------------------------------------------------- /byzcoin/contract_name.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contract_name.go -------------------------------------------------------------------------------- /byzcoin/contract_name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contract_name_test.go -------------------------------------------------------------------------------- /byzcoin/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts.go -------------------------------------------------------------------------------- /byzcoin/contracts/attr_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/attr_test.go -------------------------------------------------------------------------------- /byzcoin/contracts/coins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/coins.go -------------------------------------------------------------------------------- /byzcoin/contracts/coins_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/coins_test.go -------------------------------------------------------------------------------- /byzcoin/contracts/contract_deferred_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/contract_deferred_test.go -------------------------------------------------------------------------------- /byzcoin/contracts/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/init.go -------------------------------------------------------------------------------- /byzcoin/contracts/init_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/init_test.go -------------------------------------------------------------------------------- /byzcoin/contracts/insecure_darc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/insecure_darc.go -------------------------------------------------------------------------------- /byzcoin/contracts/insecure_darc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/insecure_darc_test.go -------------------------------------------------------------------------------- /byzcoin/contracts/value.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/value.go -------------------------------------------------------------------------------- /byzcoin/contracts/value_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts/value_test.go -------------------------------------------------------------------------------- /byzcoin/contracts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/contracts_test.go -------------------------------------------------------------------------------- /byzcoin/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/doc.go -------------------------------------------------------------------------------- /byzcoin/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/messages.go -------------------------------------------------------------------------------- /byzcoin/proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/proof.go -------------------------------------------------------------------------------- /byzcoin/proof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/proof_test.go -------------------------------------------------------------------------------- /byzcoin/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/proto.go -------------------------------------------------------------------------------- /byzcoin/replayguard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/replayguard.go -------------------------------------------------------------------------------- /byzcoin/replayguard_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/replayguard_test.go -------------------------------------------------------------------------------- /byzcoin/ringbuf.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/ringbuf.go -------------------------------------------------------------------------------- /byzcoin/rostsimul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/rostsimul.go -------------------------------------------------------------------------------- /byzcoin/rostsimul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/rostsimul_test.go -------------------------------------------------------------------------------- /byzcoin/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/service.go -------------------------------------------------------------------------------- /byzcoin/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/service_test.go -------------------------------------------------------------------------------- /byzcoin/simulation/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test_data/ 3 | server_list 4 | -------------------------------------------------------------------------------- /byzcoin/simulation/coins.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/simulation/coins.go -------------------------------------------------------------------------------- /byzcoin/simulation/coins.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/simulation/coins.toml -------------------------------------------------------------------------------- /byzcoin/simulation/plot_sim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/simulation/plot_sim.py -------------------------------------------------------------------------------- /byzcoin/simulation/simul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/simulation/simul.go -------------------------------------------------------------------------------- /byzcoin/simulation/simul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/simulation/simul_test.go -------------------------------------------------------------------------------- /byzcoin/statechange_cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statechange_cache.go -------------------------------------------------------------------------------- /byzcoin/statechange_cache_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statechange_cache_test.go -------------------------------------------------------------------------------- /byzcoin/statereplay.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statereplay.go -------------------------------------------------------------------------------- /byzcoin/statereplay_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statereplay_test.go -------------------------------------------------------------------------------- /byzcoin/statetrie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statetrie.go -------------------------------------------------------------------------------- /byzcoin/statetrie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/statetrie_test.go -------------------------------------------------------------------------------- /byzcoin/streaming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/streaming.go -------------------------------------------------------------------------------- /byzcoin/streaming_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/streaming_test.go -------------------------------------------------------------------------------- /byzcoin/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/struct.go -------------------------------------------------------------------------------- /byzcoin/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/struct_test.go -------------------------------------------------------------------------------- /byzcoin/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/transaction.go -------------------------------------------------------------------------------- /byzcoin/transaction_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/transaction_test.go -------------------------------------------------------------------------------- /byzcoin/trie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/README.md -------------------------------------------------------------------------------- /byzcoin/trie/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/db.go -------------------------------------------------------------------------------- /byzcoin/trie/db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/db_test.go -------------------------------------------------------------------------------- /byzcoin/trie/dfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/dfs.go -------------------------------------------------------------------------------- /byzcoin/trie/diskdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/diskdb.go -------------------------------------------------------------------------------- /byzcoin/trie/memdb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/memdb.go -------------------------------------------------------------------------------- /byzcoin/trie/metadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/metadata.go -------------------------------------------------------------------------------- /byzcoin/trie/metadata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/metadata_test.go -------------------------------------------------------------------------------- /byzcoin/trie/node.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/node.go -------------------------------------------------------------------------------- /byzcoin/trie/proof.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/proof.go -------------------------------------------------------------------------------- /byzcoin/trie/proof_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/proof_test.go -------------------------------------------------------------------------------- /byzcoin/trie/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/proto.go -------------------------------------------------------------------------------- /byzcoin/trie/staging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/staging.go -------------------------------------------------------------------------------- /byzcoin/trie/staging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/staging_test.go -------------------------------------------------------------------------------- /byzcoin/trie/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/trie.go -------------------------------------------------------------------------------- /byzcoin/trie/trie_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/trie/trie_test.go -------------------------------------------------------------------------------- /byzcoin/tx_pipeline.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/tx_pipeline.go -------------------------------------------------------------------------------- /byzcoin/viewchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/viewchange.go -------------------------------------------------------------------------------- /byzcoin/viewchange/viewchange.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/viewchange/viewchange.go -------------------------------------------------------------------------------- /byzcoin/viewchange/viewchange_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/viewchange/viewchange_test.go -------------------------------------------------------------------------------- /byzcoin/viewchange_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/viewchange_test.go -------------------------------------------------------------------------------- /byzcoin/wallet/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /byzcoin/wallet/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/wallet/main.go -------------------------------------------------------------------------------- /byzcoin/wallet/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoin/wallet/test.sh -------------------------------------------------------------------------------- /byzcoinx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoinx/README.md -------------------------------------------------------------------------------- /byzcoinx/byzcoinx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoinx/byzcoinx.go -------------------------------------------------------------------------------- /byzcoinx/byzcoinx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/byzcoinx/byzcoinx_test.go -------------------------------------------------------------------------------- /calypso/CalypsoByzCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/CalypsoByzCoin.png -------------------------------------------------------------------------------- /calypso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/README.md -------------------------------------------------------------------------------- /calypso/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/api.go -------------------------------------------------------------------------------- /calypso/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/api_test.go -------------------------------------------------------------------------------- /calypso/contracts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/contracts.go -------------------------------------------------------------------------------- /calypso/contracts_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/contracts_test.go -------------------------------------------------------------------------------- /calypso/csadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/README.md -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/lts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/lts.go -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/lts_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/lts_test.sh -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/read.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/read.go -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/read_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/read_test.sh -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/write.go -------------------------------------------------------------------------------- /calypso/csadmin/clicontracts/write_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/clicontracts/write_test.sh -------------------------------------------------------------------------------- /calypso/csadmin/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/commands.go -------------------------------------------------------------------------------- /calypso/csadmin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/main.go -------------------------------------------------------------------------------- /calypso/csadmin/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/csadmin/test.sh -------------------------------------------------------------------------------- /calypso/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/db.go -------------------------------------------------------------------------------- /calypso/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/proto.go -------------------------------------------------------------------------------- /calypso/protocol/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/README.md -------------------------------------------------------------------------------- /calypso/protocol/Reencrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/Reencrypt.md -------------------------------------------------------------------------------- /calypso/protocol/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/doc.go -------------------------------------------------------------------------------- /calypso/protocol/ocs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/ocs.go -------------------------------------------------------------------------------- /calypso/protocol/ocs_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/ocs_struct.go -------------------------------------------------------------------------------- /calypso/protocol/ocs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/ocs_test.go -------------------------------------------------------------------------------- /calypso/protocol/onchain.go: -------------------------------------------------------------------------------- 1 | package protocol 2 | -------------------------------------------------------------------------------- /calypso/protocol/onchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/protocol/onchain_test.go -------------------------------------------------------------------------------- /calypso/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/service.go -------------------------------------------------------------------------------- /calypso/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/service_test.go -------------------------------------------------------------------------------- /calypso/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/calypso/struct.go -------------------------------------------------------------------------------- /conode/.gitignore: -------------------------------------------------------------------------------- 1 | conode_data 2 | exe/* 3 | -------------------------------------------------------------------------------- /conode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/Dockerfile -------------------------------------------------------------------------------- /conode/Dockerfile-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/Dockerfile-base -------------------------------------------------------------------------------- /conode/Dockerfile-dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/Dockerfile-dev -------------------------------------------------------------------------------- /conode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/Makefile -------------------------------------------------------------------------------- /conode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/README.md -------------------------------------------------------------------------------- /conode/conode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/conode.go -------------------------------------------------------------------------------- /conode/conode.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/conode.service -------------------------------------------------------------------------------- /conode/conode_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/conode_linux.go -------------------------------------------------------------------------------- /conode/conode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/conode_test.go -------------------------------------------------------------------------------- /conode/fd_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/fd_darwin.go -------------------------------------------------------------------------------- /conode/fd_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/fd_unix.go -------------------------------------------------------------------------------- /conode/full.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/full.go -------------------------------------------------------------------------------- /conode/run_nodes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/run_nodes.sh -------------------------------------------------------------------------------- /conode/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/test.sh -------------------------------------------------------------------------------- /conode/test_popcoins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/conode/test_popcoins.sh -------------------------------------------------------------------------------- /cosi/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/CLI.md -------------------------------------------------------------------------------- /cosi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/README.md -------------------------------------------------------------------------------- /cosi/check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/check/check.go -------------------------------------------------------------------------------- /cosi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/client.go -------------------------------------------------------------------------------- /cosi/cosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/cosi.go -------------------------------------------------------------------------------- /cosi/cosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/cosi_test.go -------------------------------------------------------------------------------- /cosi/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/crypto/README.md -------------------------------------------------------------------------------- /cosi/crypto/cosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/crypto/cosi.go -------------------------------------------------------------------------------- /cosi/crypto/cosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/crypto/cosi_test.go -------------------------------------------------------------------------------- /cosi/protocol/cosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/protocol/cosi.go -------------------------------------------------------------------------------- /cosi/protocol/cosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/protocol/cosi_test.go -------------------------------------------------------------------------------- /cosi/protocol/packets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/protocol/packets.go -------------------------------------------------------------------------------- /cosi/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/server.go -------------------------------------------------------------------------------- /cosi/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/server_test.go -------------------------------------------------------------------------------- /cosi/service/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/service/api.go -------------------------------------------------------------------------------- /cosi/service/cosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/service/cosi.go -------------------------------------------------------------------------------- /cosi/service/cosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/service/cosi_test.go -------------------------------------------------------------------------------- /cosi/simulation/.gitignore: -------------------------------------------------------------------------------- 1 | simulation 2 | build/ 3 | test_data/ 4 | server_list 5 | -------------------------------------------------------------------------------- /cosi/simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/README.md -------------------------------------------------------------------------------- /cosi/simulation/cosi.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/cosi.toml -------------------------------------------------------------------------------- /cosi/simulation/cosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/cosi_test.go -------------------------------------------------------------------------------- /cosi/simulation/cosi_verification.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/cosi_verification.toml -------------------------------------------------------------------------------- /cosi/simulation/fd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/fd_test.go -------------------------------------------------------------------------------- /cosi/simulation/fd_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/fd_unix_test.go -------------------------------------------------------------------------------- /cosi/simulation/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/protocol.go -------------------------------------------------------------------------------- /cosi/simulation/simul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/simul.go -------------------------------------------------------------------------------- /cosi/simulation/simul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/simul_test.go -------------------------------------------------------------------------------- /cosi/simulation/simulation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/simulation/simulation.go -------------------------------------------------------------------------------- /cosi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/cosi/test.sh -------------------------------------------------------------------------------- /darc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/README.md -------------------------------------------------------------------------------- /darc/darc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/darc.go -------------------------------------------------------------------------------- /darc/darc_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/darc_example_test.go -------------------------------------------------------------------------------- /darc/darc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/darc_test.go -------------------------------------------------------------------------------- /darc/did.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/did.go -------------------------------------------------------------------------------- /darc/expression/expression.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/expression/expression.go -------------------------------------------------------------------------------- /darc/expression/expression_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/expression/expression_test.go -------------------------------------------------------------------------------- /darc/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/proto.go -------------------------------------------------------------------------------- /darc/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/darc/struct.go -------------------------------------------------------------------------------- /dedis-cothority.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dedis-cothority.toml -------------------------------------------------------------------------------- /dkg/DKG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/DKG.md -------------------------------------------------------------------------------- /dkg/pedersen/dkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/pedersen/dkg.go -------------------------------------------------------------------------------- /dkg/pedersen/dkg_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/pedersen/dkg_struct.go -------------------------------------------------------------------------------- /dkg/pedersen/dkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/pedersen/dkg_test.go -------------------------------------------------------------------------------- /dkg/rabin/dkg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/rabin/dkg.go -------------------------------------------------------------------------------- /dkg/rabin/dkg_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/rabin/dkg_struct.go -------------------------------------------------------------------------------- /dkg/rabin/dkg_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/dkg/rabin/dkg_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc.go -------------------------------------------------------------------------------- /doc/Applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/Applications.md -------------------------------------------------------------------------------- /doc/BuildingBlocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/BuildingBlocks.md -------------------------------------------------------------------------------- /doc/CLIs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/CLIs.md -------------------------------------------------------------------------------- /doc/Protocols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/Protocols.md -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/Services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/Services.md -------------------------------------------------------------------------------- /doc/Simulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/Simulation.md -------------------------------------------------------------------------------- /doc/libtest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doc/libtest.md -------------------------------------------------------------------------------- /doctoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/doctoc.sh -------------------------------------------------------------------------------- /error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/error.go -------------------------------------------------------------------------------- /error_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/error_test.go -------------------------------------------------------------------------------- /eventlog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/README.md -------------------------------------------------------------------------------- /eventlog/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/api.go -------------------------------------------------------------------------------- /eventlog/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/api_test.go -------------------------------------------------------------------------------- /eventlog/buckets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/buckets.go -------------------------------------------------------------------------------- /eventlog/el/.gitignore: -------------------------------------------------------------------------------- 1 | el 2 | build 3 | -------------------------------------------------------------------------------- /eventlog/el/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/el/README.md -------------------------------------------------------------------------------- /eventlog/el/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/el/main.go -------------------------------------------------------------------------------- /eventlog/el/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/el/test.sh -------------------------------------------------------------------------------- /eventlog/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/proto.go -------------------------------------------------------------------------------- /eventlog/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/eventlog/service.go -------------------------------------------------------------------------------- /evoting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/README.md -------------------------------------------------------------------------------- /evoting/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/api.go -------------------------------------------------------------------------------- /evoting/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/api_test.go -------------------------------------------------------------------------------- /evoting/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/arch.png -------------------------------------------------------------------------------- /evoting/evoting-admin/.gitignore: -------------------------------------------------------------------------------- 1 | evoting-admin 2 | -------------------------------------------------------------------------------- /evoting/evoting-admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/evoting-admin/README.md -------------------------------------------------------------------------------- /evoting/evoting-admin/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/evoting-admin/app.go -------------------------------------------------------------------------------- /evoting/evoting-admin/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/evoting-admin/app_test.go -------------------------------------------------------------------------------- /evoting/evoting-admin/scripts/.gitignore: -------------------------------------------------------------------------------- 1 | chains 2 | -------------------------------------------------------------------------------- /evoting/evoting-admin/scripts/create-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/evoting-admin/scripts/create-master.sh -------------------------------------------------------------------------------- /evoting/evoting-admin/scripts/show-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/evoting-admin/scripts/show-master.sh -------------------------------------------------------------------------------- /evoting/lib/chains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/chains.go -------------------------------------------------------------------------------- /evoting/lib/container.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/container.go -------------------------------------------------------------------------------- /evoting/lib/container_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/container_test.go -------------------------------------------------------------------------------- /evoting/lib/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/doc.go -------------------------------------------------------------------------------- /evoting/lib/election.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/election.go -------------------------------------------------------------------------------- /evoting/lib/election_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/election_test.go -------------------------------------------------------------------------------- /evoting/lib/elgamal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/elgamal.go -------------------------------------------------------------------------------- /evoting/lib/elgamal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/elgamal_test.go -------------------------------------------------------------------------------- /evoting/lib/lib_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/lib_test.go -------------------------------------------------------------------------------- /evoting/lib/master.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/master.go -------------------------------------------------------------------------------- /evoting/lib/master_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/master_test.go -------------------------------------------------------------------------------- /evoting/lib/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/proto.go -------------------------------------------------------------------------------- /evoting/lib/transaction.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/transaction.go -------------------------------------------------------------------------------- /evoting/lib/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/utils.go -------------------------------------------------------------------------------- /evoting/lib/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/lib/utils_test.go -------------------------------------------------------------------------------- /evoting/protocol/Decrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/Decrypt.md -------------------------------------------------------------------------------- /evoting/protocol/Neff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/Neff.md -------------------------------------------------------------------------------- /evoting/protocol/decrypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/decrypt.go -------------------------------------------------------------------------------- /evoting/protocol/decrypt_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/decrypt_struct.go -------------------------------------------------------------------------------- /evoting/protocol/decrypt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/decrypt_test.go -------------------------------------------------------------------------------- /evoting/protocol/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/doc.go -------------------------------------------------------------------------------- /evoting/protocol/shuffle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/shuffle.go -------------------------------------------------------------------------------- /evoting/protocol/shuffle_struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/shuffle_struct.go -------------------------------------------------------------------------------- /evoting/protocol/shuffle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/protocol/shuffle_test.go -------------------------------------------------------------------------------- /evoting/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/service/README.md -------------------------------------------------------------------------------- /evoting/service/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/service/service.go -------------------------------------------------------------------------------- /evoting/service/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/service/service_test.go -------------------------------------------------------------------------------- /evoting/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/struct.go -------------------------------------------------------------------------------- /evoting/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/evoting/system.png -------------------------------------------------------------------------------- /external/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/Makefile -------------------------------------------------------------------------------- /external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/README.md -------------------------------------------------------------------------------- /external/clean_proto_deprecation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/clean_proto_deprecation.sh -------------------------------------------------------------------------------- /external/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/Dockerfile -------------------------------------------------------------------------------- /external/docker/Dockerfile-int: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/Dockerfile-int -------------------------------------------------------------------------------- /external/docker/Dockerfile-unit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/Dockerfile-unit -------------------------------------------------------------------------------- /external/docker/co1/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co1/private.toml -------------------------------------------------------------------------------- /external/docker/co1/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co1/public.toml -------------------------------------------------------------------------------- /external/docker/co2/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co2/private.toml -------------------------------------------------------------------------------- /external/docker/co2/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co2/public.toml -------------------------------------------------------------------------------- /external/docker/co3/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co3/private.toml -------------------------------------------------------------------------------- /external/docker/co3/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co3/public.toml -------------------------------------------------------------------------------- /external/docker/co4/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co4/private.toml -------------------------------------------------------------------------------- /external/docker/co4/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co4/public.toml -------------------------------------------------------------------------------- /external/docker/co5/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co5/private.toml -------------------------------------------------------------------------------- /external/docker/co5/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co5/public.toml -------------------------------------------------------------------------------- /external/docker/co6/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co6/private.toml -------------------------------------------------------------------------------- /external/docker/co6/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co6/public.toml -------------------------------------------------------------------------------- /external/docker/co7/private.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co7/private.toml -------------------------------------------------------------------------------- /external/docker/co7/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/co7/public.toml -------------------------------------------------------------------------------- /external/docker/generate_conode_toml.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/generate_conode_toml.sh -------------------------------------------------------------------------------- /external/docker/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/docker/public.toml -------------------------------------------------------------------------------- /external/java/.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | classes/ 3 | 4 | # InteliJ IDEA 5 | *.iml 6 | .idea/ 7 | -------------------------------------------------------------------------------- /external/java/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/pom.xml -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/Block.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/Block.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/ByzCoinEvolve.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/ByzCoinEvolve.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/ByzCoinRPC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/ByzCoinRPC.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/Config.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/Config.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/DataBody.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/DataBody.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/Instance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/Instance.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/InstanceId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/InstanceId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/Proof.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/Proof.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/README.md -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/StateChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/StateChange.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/StateChanges.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/StateChanges.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzcoin/Subscription.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzcoin/Subscription.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzgen/CalypsoFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzgen/CalypsoFactory.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzgen/EpflPermission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzgen/EpflPermission.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzgen/User.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzgen/User.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzgen/UserId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzgen/UserId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/byzgen/UserSignature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/byzgen/UserSignature.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/CalypsoRPC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/CalypsoRPC.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/Document.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/Document.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/Encryption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/Encryption.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/LTSId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/LTSId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/LTSInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/LTSInstance.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/README.md -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/ReadData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/ReadData.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/ReadInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/ReadInstance.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/WriteData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/WriteData.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/calypso/WriteInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/calypso/WriteInstance.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/eventlog/Event.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/eventlog/Event.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/HashId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/HashId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/Hex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/Hex.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/README.md -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/Sha256id.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/Sha256id.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/SkipBlock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/SkipBlock.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/SkipblockId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/SkipblockId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/UUIDType5.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/UUIDType5.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/BdnSig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/BdnSig.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/BlsSig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/BlsSig.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/Bn256Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/Bn256Pair.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/Ed25519.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/Ed25519.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/Mask.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/Mask.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/Point.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/Scalar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/Scalar.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/SchnorrSig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/SchnorrSig.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/bn256/BN.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/bn256/BN.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/crypto/bn256/GFp2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/crypto/bn256/GFp2.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Darc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Darc.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/DarcId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/DarcId.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Identity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Identity.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Request.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Request.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Rule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Rule.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Rules.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Rules.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Signature.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Signature.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/darc/Signer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/darc/Signer.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/network/Roster.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/network/Roster.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/BEvmProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/BEvmProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/Calypso.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/Calypso.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/CiscProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/CiscProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/DarcProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/DarcProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/Evoting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/Evoting.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/OnetProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/OnetProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/PoPProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/PoPProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/lib/proto/TrieProto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/lib/proto/TrieProto.java -------------------------------------------------------------------------------- /external/java/src/main/java/ch/epfl/dedis/status/StatusRPC.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/main/java/ch/epfl/dedis/status/StatusRPC.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/byzcoin/ProofTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/byzcoin/ProofTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/byzgen/RestartTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/byzgen/RestartTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/calypso/CalypsoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/calypso/CalypsoTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/RosterTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/RosterTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/SkipBlockTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/SkipBlockTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/crypto/MaskTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/crypto/MaskTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/crypto/XofTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/crypto/XofTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/darc/DarcTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/darc/DarcTest.java -------------------------------------------------------------------------------- /external/java/src/test/java/ch/epfl/dedis/lib/darc/SignerTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/java/ch/epfl/dedis/lib/darc/SignerTest.java -------------------------------------------------------------------------------- /external/java/src/test/resources/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/public.toml -------------------------------------------------------------------------------- /external/java/src/test/resources/secp256k1-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp256k1-key.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp256k1-pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp256k1-pkcs8.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp256k1-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp256k1-pub.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp384r1-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp384r1-key.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp384r1-pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp384r1-pkcs8.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp384r1-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp384r1-pub.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp521r1-key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp521r1-key.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp521r1-pkcs8.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp521r1-pkcs8.der -------------------------------------------------------------------------------- /external/java/src/test/resources/secp521r1-pub.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/java/src/test/resources/secp521r1-pub.der -------------------------------------------------------------------------------- /external/js/.gitignore: -------------------------------------------------------------------------------- 1 | *.js 2 | -------------------------------------------------------------------------------- /external/js/cothority/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/.gitignore -------------------------------------------------------------------------------- /external/js/cothority/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/CHANGELOG.md -------------------------------------------------------------------------------- /external/js/cothority/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/README.md -------------------------------------------------------------------------------- /external/js/cothority/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/index.html -------------------------------------------------------------------------------- /external/js/cothority/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/package-lock.json -------------------------------------------------------------------------------- /external/js/cothority/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/package.json -------------------------------------------------------------------------------- /external/js/cothority/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/publish.sh -------------------------------------------------------------------------------- /external/js/cothority/scripts/build_proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/scripts/build_proto.js -------------------------------------------------------------------------------- /external/js/cothority/spec/bevm/account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/bevm/account.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/bevm/anypromise.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/bevm/anypromise.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/bevm/bevm-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/bevm/bevm-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/bevm/contract.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/bevm/contract.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/byzcoin-rpc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/byzcoin-rpc.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/client-transaction.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/client-transaction.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/coin-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/coin-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/darc-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/darc-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/proof.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/proof.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/proto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/proto.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/stream.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/stream.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/byzcoin/value-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/byzcoin/value-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/calypso/calypso.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/calypso/calypso.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/darc/darc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/darc/darc.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/darc/identity.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/darc/identity.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/helpers/bctest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/helpers/bctest.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/helpers/default-timeout.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/helpers/default-timeout.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/helpers/global-this.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/helpers/global-this.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/helpers/reporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/helpers/reporter.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/helpers/stop-conodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/helpers/stop-conodes.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/index.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/log.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/log.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/network/connection.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/network/connection.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/network/proto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/network/proto.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/network/websocket-test-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/network/websocket-test-adapter.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/personhood/credentials-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/personhood/credentials-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/personhood/ro-pa-sci-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/personhood/ro-pa-sci-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/personhood/spawner-instance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/personhood/spawner-instance.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/protobuf/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/protobuf/index.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/skipchain/skipblock.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/skipchain/skipblock.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/skipchain/skipchain-rpc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/skipchain/skipchain-rpc.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/status/proto.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/status/proto.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/status/status-rpc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/status/status-rpc.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/support/conondes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/support/conondes.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/support/historyObs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/support/historyObs.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/support/jasmine.json -------------------------------------------------------------------------------- /external/js/cothority/spec/support/public.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/support/public.toml -------------------------------------------------------------------------------- /external/js/cothority/spec/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/tsconfig.json -------------------------------------------------------------------------------- /external/js/cothority/spec/v2/coin-inst.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/v2/coin-inst.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/spec/v2/darc-inst.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/spec/v2/darc-inst.spec.ts -------------------------------------------------------------------------------- /external/js/cothority/src/bevm/bevm-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/bevm/bevm-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/bevm/bevm-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/bevm/bevm-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/bevm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/bevm/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/bevm/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/bevm/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/coin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/coin.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/config.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/credential.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/credential.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/darc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/darc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/default.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/beautifier/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/beautifier/utils.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/byzcoin-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/byzcoin-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/client-transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/client-transaction.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/config.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/contracts/coin-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/contracts/coin-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/contracts/darc-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/contracts/darc-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/contracts/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/contracts/value-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/contracts/value-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proof.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proof.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/check-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/check-auth.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/data-body.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/data-body.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/data-header.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/data-header.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/requests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/requests.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/stream.ts -------------------------------------------------------------------------------- /external/js/cothority/src/byzcoin/proto/tx-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/byzcoin/proto/tx-result.ts -------------------------------------------------------------------------------- /external/js/cothority/src/calypso/calypso-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/calypso/calypso-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/calypso/calypso-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/calypso/calypso-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/calypso/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/calypso/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/calypso/keccak.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/calypso/keccak.d.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/darc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/darc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/identity-darc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/identity-darc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/identity-did.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/identity-did.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/identity-ed25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/identity-ed25519.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/identity-tsm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/identity-tsm.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/identity-wrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/identity-wrapper.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/rules.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/signer-ed25519.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/signer-ed25519.ts -------------------------------------------------------------------------------- /external/js/cothority/src/darc/signer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/darc/signer.ts -------------------------------------------------------------------------------- /external/js/cothority/src/evoting/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/evoting/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/log.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/log.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/nodes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/nodes.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/rosterwsconnection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/rosterwsconnection.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/websocket-adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/websocket-adapter.ts -------------------------------------------------------------------------------- /external/js/cothority/src/network/websocket.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/network/websocket.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/credentials-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/credentials-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/personhood-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/personhood-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/pop-party-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/pop-party-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/ring-sig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/ring-sig.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/ro-pa-sci-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/ro-pa-sci-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/personhood/spawner-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/personhood/spawner-instance.ts -------------------------------------------------------------------------------- /external/js/cothority/src/protobuf/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/protobuf/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/protobuf/models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/protobuf/models.json -------------------------------------------------------------------------------- /external/js/cothority/src/skipchain/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/skipchain/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/skipchain/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/skipchain/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/skipchain/skipblock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/skipchain/skipblock.ts -------------------------------------------------------------------------------- /external/js/cothority/src/skipchain/skipchain-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/skipchain/skipchain-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/status/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/status/proto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/status/proto.ts -------------------------------------------------------------------------------- /external/js/cothority/src/status/status-rpc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/status/status-rpc.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/README.md -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/contracts/coinContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/contracts/coinContract.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/contracts/coinInst.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/contracts/coinInst.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/contracts/darcContract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/contracts/darcContract.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/contracts/darcInsts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/contracts/darcInsts.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/contracts/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/contracts/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/index.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/transactionBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/transactionBuilder.ts -------------------------------------------------------------------------------- /external/js/cothority/src/v2/byzcoin/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/src/v2/byzcoin/util.ts -------------------------------------------------------------------------------- /external/js/cothority/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/tsconfig.json -------------------------------------------------------------------------------- /external/js/cothority/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/tslint.json -------------------------------------------------------------------------------- /external/js/cothority/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/cothority/webpack.config.js -------------------------------------------------------------------------------- /external/js/kyber/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/.eslintrc.js -------------------------------------------------------------------------------- /external/js/kyber/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | coverage/ 4 | .nyc_output 5 | dist/ 6 | doc/ 7 | -------------------------------------------------------------------------------- /external/js/kyber/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/README.md -------------------------------------------------------------------------------- /external/js/kyber/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/index.html -------------------------------------------------------------------------------- /external/js/kyber/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/package-lock.json -------------------------------------------------------------------------------- /external/js/kyber/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/package.json -------------------------------------------------------------------------------- /external/js/kyber/publish.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/publish.sh -------------------------------------------------------------------------------- /external/js/kyber/spec/constants.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/constants.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/edwards25519/curve.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/edwards25519/curve.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/edwards25519/point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/edwards25519/point.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/edwards25519/scalar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/edwards25519/scalar.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/edwards25519/sign.input: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/edwards25519/sign.input -------------------------------------------------------------------------------- /external/js/kyber/spec/group/edwards25519/vector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/edwards25519/vector.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/group.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/group.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/nist/curve.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/nist/curve.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/nist/ecdh_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/nist/ecdh_test.json -------------------------------------------------------------------------------- /external/js/kyber/spec/group/nist/point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/nist/point.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/nist/scalar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/nist/scalar.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/group/nist/vector.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/group/nist/vector.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/helpers/jsverify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/helpers/jsverify.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/helpers/utils.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/index.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/bn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/bn.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/curve-point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/curve-point.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/gfp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/gfp.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/gfp12.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/gfp12.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/gfp2.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/gfp2.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/gfp6.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/gfp6.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/opt-ate.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/opt-ate.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/point.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/scalar.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/scalar.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/pairing/twist-point.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/pairing/twist-point.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/point-factory.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/point-factory.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/sign/anon/anon.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/sign/anon/anon.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/sign/bdn/bdn.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/sign/bdn/bdn.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/sign/bls/bls.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/sign/bls/bls.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/sign/mask.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/sign/mask.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/sign/schnorr/schnorr.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/sign/schnorr/schnorr.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/support/jasmine.json -------------------------------------------------------------------------------- /external/js/kyber/spec/utils/tonelli-shanks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/spec/utils/tonelli-shanks.spec.ts -------------------------------------------------------------------------------- /external/js/kyber/src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/constants.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/edwards25519/curve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/edwards25519/curve.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/edwards25519/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/edwards25519/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/edwards25519/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/edwards25519/point.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/edwards25519/scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/edwards25519/scalar.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/nist/curve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/nist/curve.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/nist/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/nist/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/nist/params.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/nist/params.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/nist/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/nist/point.ts -------------------------------------------------------------------------------- /external/js/kyber/src/curve/nist/scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/curve/nist/scalar.ts -------------------------------------------------------------------------------- /external/js/kyber/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/bn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/bn.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/constants.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/curve-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/curve-point.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/gfp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/gfp.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/gfp12.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/gfp12.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/gfp2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/gfp2.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/gfp6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/gfp6.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/opt-ate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/opt-ate.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/point.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/scalar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/scalar.ts -------------------------------------------------------------------------------- /external/js/kyber/src/pairing/twist-point.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/pairing/twist-point.ts -------------------------------------------------------------------------------- /external/js/kyber/src/point-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/point-factory.ts -------------------------------------------------------------------------------- /external/js/kyber/src/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/random.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/anon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/anon/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/bdn/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/bdn/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/bls/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/bls/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/index.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/mask.ts -------------------------------------------------------------------------------- /external/js/kyber/src/sign/schnorr/schnorr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/sign/schnorr/schnorr.ts -------------------------------------------------------------------------------- /external/js/kyber/src/suite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/suite.ts -------------------------------------------------------------------------------- /external/js/kyber/src/utils/tonelli-shanks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/src/utils/tonelli-shanks.ts -------------------------------------------------------------------------------- /external/js/kyber/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/tsconfig.json -------------------------------------------------------------------------------- /external/js/kyber/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/tslint.json -------------------------------------------------------------------------------- /external/js/kyber/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/js/kyber/webpack.config.js -------------------------------------------------------------------------------- /external/js/types/crypto-browserify/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module "crypto-browserify"; 2 | -------------------------------------------------------------------------------- /external/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/README.md -------------------------------------------------------------------------------- /external/proto/authprox.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/authprox.proto -------------------------------------------------------------------------------- /external/proto/bevm.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/bevm.proto -------------------------------------------------------------------------------- /external/proto/byzcoin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/byzcoin.proto -------------------------------------------------------------------------------- /external/proto/calypso.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/calypso.proto -------------------------------------------------------------------------------- /external/proto/darc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/darc.proto -------------------------------------------------------------------------------- /external/proto/eventlog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/eventlog.proto -------------------------------------------------------------------------------- /external/proto/evoting.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/evoting.proto -------------------------------------------------------------------------------- /external/proto/network.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/network.proto -------------------------------------------------------------------------------- /external/proto/onet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/onet.proto -------------------------------------------------------------------------------- /external/proto/personhood.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/personhood.proto -------------------------------------------------------------------------------- /external/proto/personhood_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/personhood_service.proto -------------------------------------------------------------------------------- /external/proto/skipchain.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/skipchain.proto -------------------------------------------------------------------------------- /external/proto/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/status.proto -------------------------------------------------------------------------------- /external/proto/trie.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/external/proto/trie.proto -------------------------------------------------------------------------------- /ftcosi/.gitignore: -------------------------------------------------------------------------------- 1 | ftcosi 2 | -------------------------------------------------------------------------------- /ftcosi/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/CLI.md -------------------------------------------------------------------------------- /ftcosi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/README.md -------------------------------------------------------------------------------- /ftcosi/check/check.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/check/check.go -------------------------------------------------------------------------------- /ftcosi/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/client.go -------------------------------------------------------------------------------- /ftcosi/ftcosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/ftcosi.go -------------------------------------------------------------------------------- /ftcosi/ftcosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/ftcosi_test.go -------------------------------------------------------------------------------- /ftcosi/protocol/gen_tree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/gen_tree.go -------------------------------------------------------------------------------- /ftcosi/protocol/gen_tree_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/gen_tree_test.go -------------------------------------------------------------------------------- /ftcosi/protocol/helper_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/helper_functions.go -------------------------------------------------------------------------------- /ftcosi/protocol/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/protocol.go -------------------------------------------------------------------------------- /ftcosi/protocol/protocol_commitments.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/protocol_commitments.go -------------------------------------------------------------------------------- /ftcosi/protocol/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/protocol_test.go -------------------------------------------------------------------------------- /ftcosi/protocol/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/struct.go -------------------------------------------------------------------------------- /ftcosi/protocol/sub_protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/protocol/sub_protocol.go -------------------------------------------------------------------------------- /ftcosi/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/server.go -------------------------------------------------------------------------------- /ftcosi/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/server_test.go -------------------------------------------------------------------------------- /ftcosi/service/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/service/api.go -------------------------------------------------------------------------------- /ftcosi/service/ftcosi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/service/ftcosi.go -------------------------------------------------------------------------------- /ftcosi/service/ftcosi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/service/ftcosi_test.go -------------------------------------------------------------------------------- /ftcosi/simulation/.gitignore: -------------------------------------------------------------------------------- 1 | deter.toml 2 | build 3 | deploy 4 | test_data 5 | simulation 6 | -------------------------------------------------------------------------------- /ftcosi/simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/README.md -------------------------------------------------------------------------------- /ftcosi/simulation/fd_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/fd_test.go -------------------------------------------------------------------------------- /ftcosi/simulation/fd_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/fd_unix_test.go -------------------------------------------------------------------------------- /ftcosi/simulation/local.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/local.toml -------------------------------------------------------------------------------- /ftcosi/simulation/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/protocol.go -------------------------------------------------------------------------------- /ftcosi/simulation/simul.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/simul.go -------------------------------------------------------------------------------- /ftcosi/simulation/simul_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/simulation/simul_test.go -------------------------------------------------------------------------------- /ftcosi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/ftcosi/test.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/go.sum -------------------------------------------------------------------------------- /helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/README.md -------------------------------------------------------------------------------- /helm-chart/conode/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/.helmignore -------------------------------------------------------------------------------- /helm-chart/conode/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/Chart.yaml -------------------------------------------------------------------------------- /helm-chart/conode/templates/NOTES.txt: -------------------------------------------------------------------------------- 1 | Conode has been deployed! 2 | -------------------------------------------------------------------------------- /helm-chart/conode/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-chart/conode/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/configmap.yaml -------------------------------------------------------------------------------- /helm-chart/conode/templates/headless-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/headless-service.yaml -------------------------------------------------------------------------------- /helm-chart/conode/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/secret.yaml -------------------------------------------------------------------------------- /helm-chart/conode/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/service.yaml -------------------------------------------------------------------------------- /helm-chart/conode/templates/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/templates/statefulset.yaml -------------------------------------------------------------------------------- /helm-chart/conode/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/helm-chart/conode/values.yaml -------------------------------------------------------------------------------- /integration_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/integration_test.sh -------------------------------------------------------------------------------- /libtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/libtest.sh -------------------------------------------------------------------------------- /messaging/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/README.md -------------------------------------------------------------------------------- /messaging/broadcast.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/broadcast.go -------------------------------------------------------------------------------- /messaging/broadcast_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/broadcast_test.go -------------------------------------------------------------------------------- /messaging/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/doc.go -------------------------------------------------------------------------------- /messaging/messaging_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/messaging_test.go -------------------------------------------------------------------------------- /messaging/propagate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/propagate.go -------------------------------------------------------------------------------- /messaging/propagate_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/messaging/propagate_test.go -------------------------------------------------------------------------------- /personhood/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/README.md -------------------------------------------------------------------------------- /personhood/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/api.go -------------------------------------------------------------------------------- /personhood/api_popparty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/api_popparty.go -------------------------------------------------------------------------------- /personhood/contracts/contract_credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_credential.go -------------------------------------------------------------------------------- /personhood/contracts/contract_credential_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_credential_test.go -------------------------------------------------------------------------------- /personhood/contracts/contract_popparty.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_popparty.go -------------------------------------------------------------------------------- /personhood/contracts/contract_popparty_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_popparty_test.go -------------------------------------------------------------------------------- /personhood/contracts/contract_ropasci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_ropasci.go -------------------------------------------------------------------------------- /personhood/contracts/contract_ropasci_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_ropasci_test.go -------------------------------------------------------------------------------- /personhood/contracts/contract_spawner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_spawner.go -------------------------------------------------------------------------------- /personhood/contracts/contract_spawner_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_spawner_test.go -------------------------------------------------------------------------------- /personhood/contracts/contract_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/contract_test.go -------------------------------------------------------------------------------- /personhood/contracts/credential.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/credential.go -------------------------------------------------------------------------------- /personhood/contracts/credentials.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/credentials.go -------------------------------------------------------------------------------- /personhood/contracts/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/proto.go -------------------------------------------------------------------------------- /personhood/contracts/register.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/contracts/register.go -------------------------------------------------------------------------------- /personhood/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/db.go -------------------------------------------------------------------------------- /personhood/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/doc.go -------------------------------------------------------------------------------- /personhood/email.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/email.go -------------------------------------------------------------------------------- /personhood/email_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/email_test.go -------------------------------------------------------------------------------- /personhood/phapp/.gitignore: -------------------------------------------------------------------------------- 1 | phapp 2 | -------------------------------------------------------------------------------- /personhood/phapp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/phapp/main.go -------------------------------------------------------------------------------- /personhood/phapp/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/phapp/test.sh -------------------------------------------------------------------------------- /personhood/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/proto.go -------------------------------------------------------------------------------- /personhood/proto_enum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/proto_enum.go -------------------------------------------------------------------------------- /personhood/service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/service.go -------------------------------------------------------------------------------- /personhood/service_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/service_test.go -------------------------------------------------------------------------------- /personhood/user/DynaCred-101.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/DynaCred-101.odt -------------------------------------------------------------------------------- /personhood/user/DynaCred-101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/DynaCred-101.pdf -------------------------------------------------------------------------------- /personhood/user/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/README.md -------------------------------------------------------------------------------- /personhood/user/builder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/builder.go -------------------------------------------------------------------------------- /personhood/user/builder_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/builder_test.go -------------------------------------------------------------------------------- /personhood/user/devices.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/devices.go -------------------------------------------------------------------------------- /personhood/user/spawner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/spawner.go -------------------------------------------------------------------------------- /personhood/user/user.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/user.go -------------------------------------------------------------------------------- /personhood/user/user_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/personhood/user/user_test.go -------------------------------------------------------------------------------- /proto.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/proto.awk -------------------------------------------------------------------------------- /proto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/proto.sh -------------------------------------------------------------------------------- /scmgr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/scmgr/README.md -------------------------------------------------------------------------------- /scmgr/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/scmgr/app.go -------------------------------------------------------------------------------- /scmgr/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/scmgr/app_test.go -------------------------------------------------------------------------------- /scmgr/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/scmgr/commands.go -------------------------------------------------------------------------------- /scmgr/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/scmgr/test.sh -------------------------------------------------------------------------------- /skipchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/README.md -------------------------------------------------------------------------------- /skipchain/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/api.go -------------------------------------------------------------------------------- /skipchain/api_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/api_test.go -------------------------------------------------------------------------------- /skipchain/long_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/long_test.go -------------------------------------------------------------------------------- /skipchain/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/msgs.go -------------------------------------------------------------------------------- /skipchain/protocol.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/protocol.go -------------------------------------------------------------------------------- /skipchain/protocol_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/protocol_test.go -------------------------------------------------------------------------------- /skipchain/skipchain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/skipchain.go -------------------------------------------------------------------------------- /skipchain/skipchain_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/skipchain_example.png -------------------------------------------------------------------------------- /skipchain/skipchain_simul.go: -------------------------------------------------------------------------------- 1 | package skipchain 2 | -------------------------------------------------------------------------------- /skipchain/skipchain_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/skipchain_test.go -------------------------------------------------------------------------------- /skipchain/struct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/struct.go -------------------------------------------------------------------------------- /skipchain/struct_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/struct_test.go -------------------------------------------------------------------------------- /skipchain/verification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/skipchain/verification.go -------------------------------------------------------------------------------- /status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/README.md -------------------------------------------------------------------------------- /status/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/service/README.md -------------------------------------------------------------------------------- /status/service/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/service/api.go -------------------------------------------------------------------------------- /status/service/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/service/proto.go -------------------------------------------------------------------------------- /status/service/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/service/status.go -------------------------------------------------------------------------------- /status/service/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/service/status_test.go -------------------------------------------------------------------------------- /status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/status.go -------------------------------------------------------------------------------- /status/status_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/status_test.go -------------------------------------------------------------------------------- /status/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/status/test.sh -------------------------------------------------------------------------------- /suite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/suite.go -------------------------------------------------------------------------------- /suite_vartime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/suite_vartime.go -------------------------------------------------------------------------------- /unit_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dedis/cothority/HEAD/unit_test.sh --------------------------------------------------------------------------------