An open API service indexing awesome lists of open source software.

https://github.com/cryptape/quantum-resistant-lock-script

Quantum resistant lock script on CKB, using SPHINCS+
https://github.com/cryptape/quantum-resistant-lock-script

Last synced: 11 months ago
JSON representation

Quantum resistant lock script on CKB, using SPHINCS+

Awesome Lists containing this project

README

          

# quantum-resistant-lock-script
Quantum resistant lock script on CKB, using [SPHINCS+](https://github.com/sphincs/sphincsplus).

## Build

### Compile contract
``` shell
make all-via-docker
```

### Compile other hash type
``` shell
make all-via-docker PARAMS=sphincs-shake-256f THASH=robust
```
Different hash types will have large performance differences when verifying. For specific performance differences, please refer to the table below. You can also refer to this script to generate and execute contracts (tests/sphincsplus_rust/run_example.sh).

## Performance
Use items for tests/sphincsplus/optimization/run-all-optimization.sh.
The script uses fixed signature data (tests/sphincsplus/test_data/), Because different signature data will have subtle differences.

| | 128s bit | 128f bit | 192s bit | 192f bit | 256s bit | 256f bit |
| ------------- | ---------- | ---------- | ---------- | ---------- | ---------- | ---------- |
| pubkey size | 32 | 32 | 48 | 48 | 64 | 64 |
|signature size | 7888 | 17120 | 16256 | 35696 | 29824 | 49888 |
| shake simple | 16.9M | 49.6M | 25.4M | 73.8M | 37.1M | 72.4M |
| shake robust | 34.3M | 98.4M | 49.1M | 147.5M | 73.2M | 150.3M |
| sha2 simple | 10.7M | 33.9M | 16.8M | 48.7M | 24.7M | 47.5M |
| sha2 robust | 22.5M | 64.5M | 34.1M | 98.6M | 60.4M | 130.3M |
| haraka simple | 27.5M | 73.9M | 39.2M | 105.8M | 60.4M | 114.9M |
| haraka robust | 45.7M | 119.8M | 70.5M | 182.7M | 102.8M | 193.3M |

Find out more information about different [parameters](https://github.com/sphincs/sphincsplus#parameters).

* Note: Default hash type: **shake-128f-simple** (Verify cycles: about 49.6M)

## Tool
This tool is to **convert a default Lock(SECP256K1/blake160) to quantum resistant lock script.**.

Follow steps below:

1. compile.

By default, sphincsplus_lock file's size is about 85K bytes.
2. Deploy the compiled contract to the test network.

We use [ckb-cli](https://github.com/nervosnetwork/ckb-cli) to deploy this contract, You can refer to [here](https://github.com/nervosnetwork/ckb-cli/wiki/Handle-Complex-Transaction#a-demo).
* After the execution is successful, it is recommended to record the tx-hash to facilitate subsequent operations.
3. Generate key file.

Use this tool: tools/ckb-sphincs-tools.
``` shell
cargo run -- gen-key key.json
```
We can get a set of key files, including public and private keys.
* If the contract you compile does not use the default value, it needs to be the same here.
* Need to save this file.
4. Convert a SECP256K1/blake160 lock script to quantum resistant lock script.
``` shell
cargo run -- cc_to_sphincsplus --tx_hash --tx_index --key_file key.json --prikey
```
5. Convert a quantum resistant lock script to SECP256K1/blake160 lock script.
``` shell
cargo run -- cc_to_secp --tx_hash --tx_index --key_file key.json --lock_arg --sp_tx_hash --sp_tx_index --fee 10000
```

## Deployment

* Mirana(mainnet)

| parameter | value |
| --------- | ------------ |
| code_hash | not deployed |
| hash_type | type |
| tx_hash | not deployed |
| index | 0 |
| dep_type | code |

* Pudge(testnet)

[CKB Explorer](https://pudge.explorer.nervos.org/transaction/0x35f51257673c7a7edd009fa2166e6f8645156207c9da38202f04ba4d94d9e519)
| parameter | value |
| --------- | ------------------------------------------------------------------ |
| code_hash | 0x9bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce8 |
| hash_type | type |
| tx_hash | 0x35f51257673c7a7edd009fa2166e6f8645156207c9da38202f04ba4d94d9e519 |
| index | 0 |
| dep_type | code |

## Sample Transactions

### Genetate a cell locked by this script
* Note, This script should use "hash_type=data1" or "hash_type=type" to support RISC-V B extensions.

[CKB Explorer](https://pudge.explorer.nervos.org/transaction/0x1a48fb4def03465ab826e56fbf77943db65fad57db19d02279465d954e28be64)
| parameter | value |
| --------- | ------------------------------------------------------------------ |
| code_hash | 0x989ab456455509a1c2ad1cb8116b7d209df228144445c741b101ec3e55ee8351 |
| hash_type | data1 |
| tx_hash | 0x1a48fb4def03465ab826e56fbf77943db65fad57db19d02279465d954e28be64 |
| index | 0 |
| dep_type | code |

### Unlock this cell

[CKB Explorer](https://pudge.explorer.nervos.org/transaction/0x1e3fcf73f02bb98e90239ed01e4fec63dc3469471309a19ee4eec7cfc00a8637)
| parameter | value |
| --------- | ------------------------------------------------------------------ |
| code_hash | 0x9bd7e06f3ecf4be0f2fcd2188b23f1b9fcc88e5d4b65a8637b17723bbda3cce8 |
| hash_type | type |
| tx_hash | 0x1e3fcf73f02bb98e90239ed01e4fec63dc3469471309a19ee4eec7cfc00a8637 |
| index | 0 |
| dep_type | code |