Skip to content

Commit

Permalink
Merge pull request wolfSSL#504 from philljj/no_asn_build
Browse files Browse the repository at this point in the history
user_settings: default to NO_ASN if NO_RSA defined.
  • Loading branch information
dgarske authored Sep 13, 2024
2 parents 080dae0 + f975dbe commit 7609abf
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-fastmath-smallstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-noasm-smallstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-noasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-nrf52.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-sha3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-sha384.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-renode-smallstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:


- name: Upload Output Dir
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: Renode Test Results
path: test_results/
Expand Down
3 changes: 1 addition & 2 deletions include/user_settings.h
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,7 @@ extern int tolower(int c);
# define WC_NO_HASHDRBG
# define NO_DEV_RANDOM
# define NO_ECC_KEY_EXPORT
# if defined(NO_RSA) && !defined(WOLFSSL_HAVE_XMSS) && \
!defined(WOLFSSL_HAVE_LMS)
# if defined(NO_RSA)
# define NO_ASN
# endif
#endif
Expand Down

0 comments on commit 7609abf

Please sign in to comment.