-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
c_binds and other ECDSA related fixes (#407)
* Add v to stdlib ecdsa. * create an engine if its empty. * Add ecdsa c_bind. * print v as a uint32. * Add secp256k1 cbind. add c_bind.hpp Change hpp to h. remove hpp. * Add ecdsa in cmakelists. remove stdlib_ecdsa from build.
- Loading branch information
1 parent
602ea19
commit d183672
Showing
11 changed files
with
169 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#include "ecdsa.hpp" | ||
#include <barretenberg/ecc/curves/secp256k1/secp256k1.hpp> | ||
|
||
#define WASM_EXPORT __attribute__((visibility("default"))) | ||
|
||
extern "C" { | ||
|
||
WASM_EXPORT void ecdsa__compute_public_key(uint8_t const* private_key, uint8_t* public_key_buf) | ||
{ | ||
auto priv_key = from_buffer<secp256k1::fr>(private_key); | ||
secp256k1::g1::affine_element pub_key = secp256k1::g1::one * priv_key; | ||
write(public_key_buf, pub_key); | ||
} | ||
|
||
WASM_EXPORT void ecdsa__construct_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* private_key, | ||
uint8_t* output_sig_r, | ||
uint8_t* output_sig_s, | ||
uint8_t* output_sig_v) | ||
{ | ||
using serialize::write; | ||
auto priv_key = from_buffer<secp256k1::fr>(private_key); | ||
secp256k1::g1::affine_element pub_key = secp256k1::g1::one * priv_key; | ||
crypto::ecdsa::key_pair<secp256k1::fr, secp256k1::g1> key_pair = { priv_key, pub_key }; | ||
|
||
auto sig = crypto::ecdsa::construct_signature<Sha256Hasher, secp256k1::fq, secp256k1::fr, secp256k1::g1>( | ||
std::string((char*)message, msg_len), key_pair); | ||
write(output_sig_r, sig.r); | ||
write(output_sig_s, sig.s); | ||
write(output_sig_v, sig.v); | ||
} | ||
|
||
WASM_EXPORT void ecdsa__recover_public_key_from_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* sig_r, | ||
uint8_t const* sig_s, | ||
uint8_t* sig_v, | ||
uint8_t* output_pub_key) | ||
{ | ||
std::array<uint8_t, 32> r, s; | ||
std::copy(sig_r, sig_r + 32, r.begin()); | ||
std::copy(sig_s, sig_s + 32, s.begin()); | ||
const uint8_t v = *sig_v; | ||
|
||
crypto::ecdsa::signature sig = { r, s, v }; | ||
auto recovered_pub_key = | ||
crypto::ecdsa::recover_public_key<Sha256Hasher, secp256k1::fq, secp256k1::fr, secp256k1::g1>( | ||
std::string((char*)message, msg_len), sig); | ||
write(output_pub_key, recovered_pub_key); | ||
} | ||
|
||
WASM_EXPORT bool ecdsa__verify_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* pub_key, | ||
uint8_t const* sig_r, | ||
uint8_t const* sig_s, | ||
uint8_t const* sig_v) | ||
{ | ||
auto pubk = from_buffer<secp256k1::g1::affine_element>(pub_key); | ||
std::array<uint8_t, 32> r, s; | ||
std::copy(sig_r, sig_r + 32, r.begin()); | ||
std::copy(sig_s, sig_s + 32, s.begin()); | ||
const uint8_t v = *sig_v; | ||
|
||
crypto::ecdsa::signature sig = { r, s, v }; | ||
return crypto::ecdsa::verify_signature<Sha256Hasher, secp256k1::fq, secp256k1::fr, secp256k1::g1>( | ||
std::string((char*)message, msg_len), pubk, sig); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#include <ecc/curves/secp256k1/secp256k1.hpp> | ||
|
||
#define WASM_EXPORT __attribute__((visibility("default"))) | ||
|
||
extern "C" { | ||
|
||
WASM_EXPORT void ecdsa__compute_public_key(uint8_t const* private_key, uint8_t* public_key_buf); | ||
|
||
WASM_EXPORT void ecdsa__construct_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* private_key, | ||
uint8_t* output_sig_r, | ||
uint8_t* output_sig_s, | ||
uint8_t* output_sig_v); | ||
|
||
WASM_EXPORT void ecdsa__recover_public_key_from_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* sig_r, | ||
uint8_t const* sig_s, | ||
uint8_t* sig_v, | ||
uint8_t* output_pub_key); | ||
|
||
WASM_EXPORT bool ecdsa__verify_signature(uint8_t const* message, | ||
size_t msg_len, | ||
uint8_t const* pub_key, | ||
uint8_t const* sig_r, | ||
uint8_t const* sig_s, | ||
uint8_t const* sig_v); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#include "secp256k1.hpp" | ||
|
||
#define WASM_EXPORT __attribute__((visibility("default"))) | ||
|
||
extern "C" { | ||
|
||
WASM_EXPORT void ecc_secp256k1__mul(uint8_t const* point_buf, uint8_t const* scalar_buf, uint8_t* result) | ||
{ | ||
auto point = from_buffer<secp256k1::g1::affine_element>(point_buf); | ||
auto scalar = from_buffer<secp256k1::fr>(scalar_buf); | ||
secp256k1::g1::affine_element r = point * scalar; | ||
write(result, r); | ||
} | ||
|
||
WASM_EXPORT void ecc_secp256k1__get_random_scalar_mod_circuit_modulus(uint8_t* result) | ||
{ | ||
barretenberg::fr output = barretenberg::fr::random_element(); | ||
write(result, output); | ||
} | ||
|
||
WASM_EXPORT void ecc_secp256k1__reduce512_buffer_mod_circuit_modulus(uint8_t* input, uint8_t* result) | ||
{ | ||
uint512_t bigint_input = from_buffer<uint512_t>(input); | ||
|
||
uint512_t barretenberg_modulus(barretenberg::fr::modulus); | ||
|
||
uint512_t target_output = bigint_input % barretenberg_modulus; | ||
write(result, target_output.lo); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#include "secp256k1.hpp" | ||
|
||
#define WASM_EXPORT __attribute__((visibility("default"))) | ||
|
||
extern "C" { | ||
|
||
WASM_EXPORT void ecc_secp256k1__mul(uint8_t const* point_buf, uint8_t const* scalar_buf, uint8_t* result); | ||
|
||
WASM_EXPORT void ecc_secp256k1__get_random_scalar_mod_circuit_modulus(uint8_t* result); | ||
|
||
WASM_EXPORT void ecc_secp256k1__reduce512_buffer_mod_circuit_modulus(uint8_t* input, uint8_t* result); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters