ProjectOrigin.PedersenCommitment
1.1.1
dotnet add package ProjectOrigin.PedersenCommitment --version 1.1.1
NuGet\Install-Package ProjectOrigin.PedersenCommitment -Version 1.1.1
<PackageReference Include="ProjectOrigin.PedersenCommitment" Version="1.1.1" />
paket add ProjectOrigin.PedersenCommitment --version 1.1.1
#r "nuget: ProjectOrigin.PedersenCommitment, 1.1.1"
// Install ProjectOrigin.PedersenCommitment as a Cake Addin #addin nuget:?package=ProjectOrigin.PedersenCommitment&version=1.1.1 // Install ProjectOrigin.PedersenCommitment as a Cake Tool #tool nuget:?package=ProjectOrigin.PedersenCommitment&version=1.1.1
Project-Origin Pedersen Commitment
The library allows construction of Pedersen commitments and rangeproofs along with verification.
This library wraps the rust bulletproofs and curve25519-dalek libraries using the ristretto group.
Release notes
All release notes can be found on GitHub.
How to
To create a Pedersen Commitment one must create a new instance of a SecretCommitmentInfo with the quantity (message : uint) one wants to hide.
var secret = new SecretCommitmentInfo(250);
The secret has two fields that must be persisted to later prove the data, the Message and BlindingValue.
// store these values
uint message = secret.Message;
ReadOnlySpan<byte> blinding = secret.BlindingValue;
The commitment to share publicly can be gotten directly from the SecretCommitmentInfo.
ReadOnlySpan<byte> commitment = secret.Commitment.C;
Range proofs
If one wants to prove the commitment is within the allowed value, one can easily create a range proof using a label.
Note: In ProjectOrigin Electricity the label is always the string representation of certificate uuid.
string someLabel = "foobar";
ReadOnlySpan<byte> rangeProof = secret.CreateRangeProof(someLabel);
The range proof in this library is currently hardcoded to allow values between 0 and uint.Max (32 bits).
Why use a label?
The label is to ensure that the range proof is unique as to ensure that the same range proof is not used for multiple commitments. This is important as the range proof is a zero-knowledge proof, and if the same range proof is used for multiple commitments, one could use the range proof for exploits.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.1.1 | 20,684 | 4/3/2024 |
1.0.3 | 9,043 | 8/31/2023 |
1.0.2 | 141 | 8/31/2023 |
1.0.1 | 169 | 8/24/2023 |
1.0.0 | 148 | 8/23/2023 |
0.2.2 | 166 | 8/21/2023 |
0.2.1 | 158 | 8/14/2023 |
0.2.0 | 273 | 8/14/2023 |
0.2.0-rc.17 | 3,951 | 6/28/2023 |
0.2.0-rc.16 | 1,030 | 6/28/2023 |
0.2.0-rc.15 | 83 | 6/27/2023 |
0.2.0-rc.14 | 81 | 6/26/2023 |
0.2.0-rc.13 | 102 | 6/23/2023 |
0.2.0-rc.12 | 69 | 6/21/2023 |
0.2.0-rc.11 | 80 | 6/16/2023 |
0.2.0-rc.10 | 69 | 6/16/2023 |
0.2.0-rc.9 | 115 | 6/16/2023 |
0.2.0-rc.4 | 80 | 6/16/2023 |
0.2.0-rc.3 | 77 | 6/12/2023 |
0.2.0-rc.2 | 79 | 6/12/2023 |
0.2.0-rc.1 | 83 | 6/12/2023 |