Skip to content
Merged
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion components/cUR
Submodule cUR updated 84 files
+5 −0 .clang-format
+43 −0 .github/workflows/test.yml
+18 −1 .gitignore
+4 −0 CMakeLists.txt
+99 −0 Makefile
+155 −10 README.md
+21 −0 format-src.sh
+35 −0 micropython.mk
+141 −0 scripts/coverage.sh
+35 −36 src/bytewords.c
+131 −214 src/fountain_decoder.c
+10 −0 src/fountain_decoder.h
+58 −48 src/fountain_encoder.c
+15 −27 src/fountain_utils.c
+159 −0 src/sha256/sha256.c
+38 −0 src/sha256/sha256.h
+43 −0 src/sha256/sha256_compat.h
+16 −39 src/types/bip39.c
+28 −17 src/types/byte_buffer.c
+6 −1 src/types/byte_buffer.h
+12 −40 src/types/bytes_type.c
+8 −8 src/types/cbor_data.c
+45 −21 src/types/cbor_decoder.c
+18 −2 src/types/cbor_encoder.c
+1 −14 src/types/hd_key.c
+2 −14 src/types/keypath.c
+14 −9 src/types/multi_key.c
+1 −0 src/types/multi_key.h
+9 −32 src/types/output.c
+10 −40 src/types/psbt.c
+31 −0 src/types/registry.c
+17 −0 src/types/registry.h
+48 −14 src/ur_decoder.c
+8 −16 src/ur_encoder.c
+3 −3 src/ur_encoder.h
+4 −5 src/utils.c
+29 −4 src/utils.h
+5 −0 tests/esp-idf-smoke/CMakeLists.txt
+20 −0 tests/esp-idf-smoke/components/cUR/CMakeLists.txt
+5 −0 tests/esp-idf-smoke/main/CMakeLists.txt
+53 −0 tests/esp-idf-smoke/main/app_main.c
+10 −0 tests/test_cases/PSBTs/PSBT_1.UR_fragments.txt
+ tests/test_cases/PSBTs/PSBT_1.psbt.bin
+37 −0 tests/test_cases/PSBTs/PSBT_3.UR_fragments.txt
+ tests/test_cases/PSBTs/PSBT_3.psbt.bin
+9 −0 tests/test_cases/PSBTs/PSBT_4.UR_fragments.txt
+ tests/test_cases/PSBTs/PSBT_4.psbt.bin
+55 −0 tests/test_cases/PSBTs/PSBT_5.UR_fragments.txt
+ tests/test_cases/PSBTs/PSBT_5.psbt.bin
+14 −0 tests/test_cases/account/account_1.UR_fragments.txt
+1 −0 tests/test_cases/account/account_1.descriptor.txt
+1 −0 tests/test_cases/bip39/mnemonic_1.UR.txt
+12 −0 tests/test_cases/bip39/mnemonic_1.words.txt
+16 −0 tests/test_cases/bytes/bytes_1.UR_fragments.txt
+1 −0 tests/test_cases/bytes/bytes_1.decoded.txt
+9 −0 tests/test_cases/bytes/bytes_2.UR_fragments.txt
+1 −0 tests/test_cases/bytes/bytes_2.decoded.txt
+799 −0 tests/test_cases/bytes/bytes_3.UR_fragments.txt
+ tests/test_cases/bytes/bytes_3.bin
+5 −0 tests/test_cases/output/output_1.UR_fragments.txt
+1 −0 tests/test_cases/output/output_1.txt
+10 −0 tests/test_cases/output/output_2.UR_fragments.txt
+1 −0 tests/test_cases/output/output_2.txt
+1 −0 tests/test_cases/output/output_3.descriptor.txt
+1 −0 tests/test_cases/output/output_4.descriptor.txt
+1 −0 tests/test_cases/output/output_5.descriptor.txt
+1 −0 tests/test_cases/output/output_6.descriptor.txt
+1 −0 tests/test_cases/output/output_7.descriptor.txt
+1 −0 tests/test_cases/output/output_8.descriptor.txt
+67 −0 tests/test_harness.c
+20 −0 tests/test_harness.h
+151 −0 tests/test_ur_PSBT_decoder.c
+189 −0 tests/test_ur_PSBT_encoder.c
+138 −0 tests/test_ur_account_descriptor_decoder.c
+266 −0 tests/test_ur_bip39_decoder.c
+152 −0 tests/test_ur_bytes_decoder.c
+309 −0 tests/test_ur_bytes_encoder.c
+186 −0 tests/test_ur_negative.c
+146 −0 tests/test_ur_output_decoder.c
+175 −0 tests/test_ur_output_descriptor_roundtrip.c
+270 −0 tests/test_ur_output_encoder.c
+268 −0 tests/test_utils.c
+27 −0 tests/test_utils.h
+933 −0 uUR.c
Loading