Skip to content

Commit

Permalink
Merge pull request #11 from ZeroPass/develop
Browse files Browse the repository at this point in the history
Add new elliptic curves & Implement ECDSA public key recovery from signature
  • Loading branch information
smlu committed Dec 29, 2023
2 parents 8f5c092 + 03c84aa commit f03b9ca
Show file tree
Hide file tree
Showing 35 changed files with 49,670 additions and 273 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
name: 'Ubuntu 20.04 Build'
runs-on: ubuntu-20.04
name: 'Ubuntu 22.04 Build'
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand All @@ -25,8 +25,8 @@ jobs:
# Install cdt
run: |
sudo apt install ninja-build
wget https://github.com/AntelopeIO/cdt/releases/download/v3.1.0/cdt_3.1.0_amd64.deb
sudo apt install ./cdt_3.1.0_amd64.deb
wget https://github.com/AntelopeIO/cdt/releases/download/v4.0.1/cdt_4.0.1_amd64.deb
sudo apt install ./cdt_4.0.1_amd64.deb
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
name: 'Ubuntu 20.04 Build'
runs-on: ubuntu-20.04
name: 'Ubuntu 22.04 Build'
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand All @@ -25,8 +25,8 @@ jobs:
# Install cdt
run: |
sudo apt install ninja-build
wget https://github.com/AntelopeIO/cdt/releases/download/v3.1.0/cdt_3.1.0_amd64.deb
sudo apt install ./cdt_3.1.0_amd64.deb
wget https://github.com/AntelopeIO/cdt/releases/download/v4.0.1/cdt_4.0.1_amd64.deb
sudo apt install ./cdt_4.0.1_amd64.deb
- name: Configure CMake
# Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.
Expand Down
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ if ( ACK_BUILD_TESTS )
add_test( ack_gen_tests ${CMAKE_BINARY_DIR}/tests/ack_gen_tests )
add_test( ack_rsa_tests ${CMAKE_BINARY_DIR}/tests/ack_rsa_tests )
add_test( ack_ecc_tests ${CMAKE_BINARY_DIR}/tests/ack_ecc_tests )
set_tests_properties( ack_ecc_tests PROPERTIES TIMEOUT 3000 ) # 50 mins
endif( ACK_BUILD_TESTS )

message( "No intrinsics................${ACK_NO_INTRINSICS}" )
Expand Down

0 comments on commit f03b9ca

Please sign in to comment.