Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/flyq/ecdsa_poc
https://github.com/flyq/ecdsa_poc
Last synced: 8 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/flyq/ecdsa_poc
- Owner: flyq
- Created: 2023-12-23T06:44:47.000Z (almost 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-25T10:45:54.000Z (12 months ago)
- Last Synced: 2024-11-14T06:34:44.193Z (about 1 month ago)
- Language: Motoko
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-motoko - ecdsa_poc - Prototype implementation of ECDSA, only for learning. (Libraries / Cryptography)
README
# ecdsa_poc
Just for learning, Do not use in production environment.
Without performance optimization, verifying two signatures in one call will cause the instruction limit to be exceeded.
```bash
# Starts the replica, running in the background
dfx start --background# Deploys your canisters to the replica and generates your candid interface
dfx deploydfx canister call ecdsa_motoko_backend test_secp256r11
(true)
dfx canister call ecdsa_motoko_backend test_secp256r12
(true)
```