File tree
9 files changed
+46
-12
lines changed- .github/workflows
- include
- wolfboot
- lib
- tools
9 files changed
+46
-12
lines changedLines changed: 2 additions & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
54 | 54 |
| |
55 | 55 |
| |
56 | 56 |
| |
57 |
| - | |
| 57 | + | |
| 58 | + | |
58 | 59 |
| |
59 | 60 |
| |
60 | 61 |
| |
|
Lines changed: 32 additions & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
685 | 685 |
| |
686 | 686 |
| |
687 | 687 |
| |
| 688 | + | |
| 689 | + | |
| 690 | + | |
| 691 | + | |
| 692 | + | |
| 693 | + | |
| 694 | + | |
| 695 | + | |
| 696 | + | |
| 697 | + | |
| 698 | + | |
| 699 | + | |
| 700 | + | |
| 701 | + | |
| 702 | + | |
| 703 | + | |
| 704 | + | |
| 705 | + | |
| 706 | + | |
| 707 | + | |
| 708 | + | |
| 709 | + | |
| 710 | + | |
| 711 | + | |
| 712 | + | |
| 713 | + | |
| 714 | + | |
| 715 | + | |
| 716 | + | |
| 717 | + | |
| 718 | + | |
| 719 | + |
Lines changed: 1 addition & 0 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
144 | 144 |
| |
145 | 145 |
| |
146 | 146 |
| |
| 147 | + | |
147 | 148 |
| |
148 | 149 |
| |
149 | 150 |
| |
|
Lines changed: 2 additions & 2 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
29 | 29 |
| |
30 | 30 |
| |
31 | 31 |
| |
32 |
| - | |
33 |
| - | |
| 32 | + | |
| 33 | + | |
34 | 34 |
| |
35 | 35 |
| |
36 | 36 |
| |
|
- .github/workflows/build-and-test.yml+11-7
- .gitignore+2
- ChangeLog.md+16
- port/posix/posix_flash_file.c+2-1
- src/wh_client.c+404-486
- src/wh_client_cert.c+785
- src/wh_client_crypto.c+1.7k-1.1k
- src/wh_client_cryptocb.c+38-361
- src/wh_client_nvm.c+54-298
- src/wh_client_she.c+471-356
- src/wh_flash_unit.c+3-1
- src/wh_message_cert.c+161
- src/wh_message_counter.c+128
- src/wh_message_crypto.c+853
- src/wh_message_keystore.c+239
- src/wh_message_nvm.c+12-39
- src/wh_message_she.c+424
- src/wh_server.c+27-16
- src/wh_server_cert.c+627
- src/wh_server_counter.c+141-71
- src/wh_server_crypto.c+1.7k-875
- src/wh_server_dma.c+24-206
- src/wh_server_keystore.c+245-244
- src/wh_server_nvm.c+14-105
- src/wh_server_she.c+1.1k-572
- src/wh_she_crypto.c+259-259
- src/wh_utils.c+5-5
- test/Makefile+36-2
- test/user_settings.h+13-4
- test/wh_test.c+10
- test/wh_test_cert.c+517
- test/wh_test_cert.h+44
- test/wh_test_cert_data.h+1.5k
- test/wh_test_cert_data_acert.h+155
- test/wh_test_check_struct_padding.c+108-116
- test/wh_test_clientserver.c+49-44
- test/wh_test_comm.c+2-1
- test/wh_test_common.h+12-2
- test/wh_test_crypto.c+223-115
- test/wh_test_flash_ramsim.c+2
- test/wh_test_nvm_flash.c+132-1
- test/wh_test_nvm_flash.h+7
- test/wh_test_she.c+5-2
- test/wh_test_wolfcrypt_test.c+2
- test/wolfhsm_cfg.h+2-3
- tools/testcertgen/gen_acerts.sh+131
- tools/testcertgen/gen_test_cert_chain.sh+310
- wolfhsm/wh_client.h+557-376
- wolfhsm/wh_client_crypto.h+94-3
- wolfhsm/wh_error.h+28-26
- wolfhsm/wh_flash.h+102
- wolfhsm/wh_message.h+3-4
- wolfhsm/wh_message_cert.h+185
- wolfhsm/wh_message_counter.h+120
- wolfhsm/wh_message_crypto.h+808
- wolfhsm/wh_message_keystore.h+226
- wolfhsm/wh_message_nvm.h+23-58
- wolfhsm/wh_message_she.h+394
- wolfhsm/wh_packet.h+75-181
- wolfhsm/wh_server.h+12-165
- wolfhsm/wh_server_cert.h+102
- wolfhsm/wh_server_counter.h+4-2
- wolfhsm/wh_server_crypto.h+10-5
- wolfhsm/wh_server_keystore.h+153-13
- wolfhsm/wh_server_she.h+4-3
- wolfhsm/wh_settings.h+16
- wolfhsm/wh_utils.h+30-1
- .gitignore+2
- CMakeLists.txt+16-4
- ChangeLog.md+22
- autogen.sh+3-25
- configure.ac+2-2
- examples/endorsement/README.md+236
- examples/endorsement/endorsement.h+1
- examples/endorsement/get_ek_certs.c+10-2
- examples/endorsement/include.am+12-3
- examples/endorsement/trusted_certs.h+42
- examples/endorsement/trusted_certs_der.h+137
- examples/endorsement/verify_ek_cert.c+347
- examples/keygen/keygen.c+25-6
- examples/nvram/extend.c+8
- examples/run_examples.sh+143-141
- examples/tls/tls_client.c+1-1
- examples/tls/tls_server.c+1-1
- hal/tpm_io.c+3
- hal/tpm_io.h+3
- hal/tpm_io_microchip.c+223-3
- src/include.am+1
- src/tpm2_asn.c+353
- src/tpm2_wrap.c+17-5
- wolftpm/tpm2_asn.h+147
- wolftpm/tpm2_wrap.h+205-3
- wolftpm/version.h+2-2
Submodule wolfssl updated 1168 files
Lines changed: 5 additions & 5 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
990 | 990 |
| |
991 | 991 |
| |
992 | 992 |
| |
993 |
| - | |
| 993 | + | |
994 | 994 |
| |
995 |
| - | |
| 995 | + | |
996 | 996 |
| |
997 | 997 |
| |
998 | 998 |
| |
| |||
1002 | 1002 |
| |
1003 | 1003 |
| |
1004 | 1004 |
| |
1005 |
| - | |
| 1005 | + | |
1006 | 1006 |
| |
1007 |
| - | |
| 1007 | + | |
1008 | 1008 |
| |
1009 | 1009 |
| |
1010 | 1010 |
| |
| |||
1018 | 1018 |
| |
1019 | 1019 |
| |
1020 | 1020 |
| |
1021 |
| - | |
| 1021 | + | |
1022 | 1022 |
| |
1023 | 1023 |
| |
1024 | 1024 |
| |
|
0 commit comments