We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Description This allows to create ECDSA private keys to be stored in the network.
Why is this feature important? This feature is part of the ongoing effort to support threshold ecdsa signature in Nillion.
How do developers use the feature?
import os key = bytearray(os.urandom(32)) values = { "ecdsa_key": nillion_client.EcdsaPrivateKey(key), } values_id = client.store_values(values, ttl_days=1) returned_values = client.retrieve_values(values_id) client.delete_values(values_id)
Additional context
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Description
This allows to create ECDSA private keys to be stored in the network.
Why is this feature important?
This feature is part of the ongoing effort to support threshold ecdsa signature in Nillion.
How do developers use the feature?
Additional context
The text was updated successfully, but these errors were encountered: