Skip to content
New issue

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

Add blsct api #168

Merged
merged 44 commits into from
Oct 20, 2024
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
08523e4
add ext api working up to range proof prove
gogoex Jul 13, 2024
a4ecb44
fix token id problems
gogoex Jul 14, 2024
0ab0b6f
add missing dispose functions
gogoex Jul 14, 2024
74a5702
fix range proof memory allocation issue
gogoex Jul 20, 2024
42814ee
add range proof amount recovery apis
gogoex Jul 28, 2024
5d8d90c
handle memory allocation failures
gogoex Jul 28, 2024
9424fe5
let dispose_ret_val not to dispose its value. use void* for dispose_d…
gogoex Jul 30, 2024
97292db
replace most of dispose_* with free_obj
gogoex Jul 31, 2024
0770794
wip
gogoex Aug 2, 2024
f0012ae
fix missing symbol issue
gogoex Aug 17, 2024
9798a28
build libunivalue_blsct.a
gogoex Aug 17, 2024
1caba62
wip
gogoex Aug 17, 2024
476c651
rebase to up-to-date master
gogoex Aug 18, 2024
2f41d78
fully uncomment build_tx
gogoex Aug 18, 2024
34dd006
remove unused function header
gogoex Aug 22, 2024
fe1df72
deserialize tx up to txIns and txOuts level
gogoex Aug 25, 2024
9b01529
return objects with size
gogoex Aug 25, 2024
927fbc5
wip
gogoex Aug 26, 2024
a5bcdb5
add blsct data functions
gogoex Aug 27, 2024
2e631de
support scriptPubKey and rangeProof
gogoex Aug 27, 2024
6f364af
add txin serialization
gogoex Sep 8, 2024
01f363d
add msg signing and verification
gogoex Sep 19, 2024
b4519c9
add key derivation apis
gogoex Sep 22, 2024
6f84e1d
add rest of api functions w/ missing symbol issue
gogoex Sep 22, 2024
317fd6f
fix hash_id issue
gogoex Sep 27, 2024
3ab0054
fix build issues
gogoex Oct 16, 2024
b6788c4
avoid using a function in the locale-dependent funciton list
gogoex Oct 16, 2024
1b1656a
add blsct/key_io.h to BLSCT_H
gogoex Oct 16, 2024
a22bc8e
wip
gogoex Oct 16, 2024
5482653
use const reference for rp
gogoex Oct 16, 2024
80f88cd
apply wallet test fix patch
gogoex Oct 17, 2024
1cd8e56
add swap to fuzzer ci test
gogoex Oct 18, 2024
26f2725
replace VOID macro w/ TO_VOID
gogoex Oct 18, 2024
da7a22b
use 7 arguments for UPNP_GetValidIGD if MINIUPNPC_API_VERSION > 17
gogoex Oct 19, 2024
48b4cbe
use medium type for fuzzer task
gogoex Oct 19, 2024
7f718b4
test fuzzer ci check only
gogoex Oct 19, 2024
c6baeea
wip
gogoex Oct 19, 2024
e65fbd8
wip
gogoex Oct 19, 2024
e6841e1
wip
gogoex Oct 19, 2024
ba62a15
wip
gogoex Oct 19, 2024
64ac555
wip
gogoex Oct 19, 2024
d2b7995
wip
gogoex Oct 19, 2024
4783908
kick off ci
gogoex Oct 20, 2024
339df7c
uncomment all ci tasks. use small persistent_worker for lint
gogoex Oct 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
wip
  • Loading branch information
gogoex committed Oct 19, 2024
commit 64ac55589fd37dd777944a085504fb819b8e1df5
20 changes: 14 additions & 6 deletions .cirrus.yml
Original file line number Diff line number Diff line change
@@ -112,7 +112,8 @@ compute_credits_template: &CREDITS_TEMPLATE
# << : *GLOBAL_TASK_TEMPLATE
# persistent_worker:
# labels:
# type: small env:
# type: small
# env:
# FILE_ENV: "./ci/test/00_setup_env_win64.sh"
#
# task:
@@ -168,11 +169,18 @@ compute_credits_template: &CREDITS_TEMPLATE

task:
name: 'fuzzer,address,undefined,integer, no depends'
<< : *GLOBAL_TASK_TEMPLATE
container:
image: ubuntu-2404
cpu: 3
memory: 16G
<< : *BASE_TEMPLATE
swap_script:
j
- fallocate -l 28G /swap
- chmod 600 /swap
- mkswap /swap
- swapon /swap
- (echo '/swap none swap sw 0 0' | tee -a /etc/fstab)
<< : *MAIN_TEMPLATE
persistent_worker:
labels:
type: medium
env:
FILE_ENV: "./ci/test/00_setup_env_native_fuzz.sh"

Loading