-
Notifications
You must be signed in to change notification settings - Fork 6
zpcprovider for sign/verify (ecdsa/eddsa) #41
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
Open
holger-dengler
wants to merge
31
commits into
opencryptoki:main
Choose a base branch
from
holger-dengler:provider-sign
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
2033adc
travis: Add OpenSSL custom build
holger-dengler 76262a1
cmake: Fix broken gtest
holger-dengler 83b7a2c
cmake: Convert zpc target to object module
holger-dengler c72d934
cmake: Introduce build option BUILD_INTERNAL_TEST
holger-dengler 12499a0
cmake: Harmonize indent
holger-dengler 358d3a7
cmake: Add man-page conversion target
holger-dengler d40df27
cmake: Add OpenSSL package
holger-dengler 3064110
provider: Add base provider
holger-dengler c3725d3
cmake: Add zpcprovider build target
holger-dengler af3685f
provider: Add provider-specific key object
holger-dengler 9b3f6cd
cmake: Integrate provider-specific key object
holger-dengler 04d6528
provider: Add hbkzpc-URI parser
holger-dengler a6382df
cmake: Add uri build target
holger-dengler 593af57
provider: Add mapping helpers
holger-dengler 4cf3e11
cmake: Integrate mapping helpers
holger-dengler 0ac80a4
provider: Add store-loader
holger-dengler 6bce884
cmake: Integrate store-loader
holger-dengler 32eba87
provider: Add asymmetric key management
holger-dengler 4c63004
cmake: Integrate asymmetric key management
holger-dengler ffee7f7
provider: Add algorithm-id helpers
holger-dengler 640853f
cmake: Integrate algorithm-id helpers
holger-dengler b0f2c34
provider: Add signature algorithms
holger-dengler 58e7422
cmake: Integrate signature algorithms
holger-dengler bec6f40
provider: Add tls-property helpers
holger-dengler 2f3807b
cmake: Integrate tls-property helpers
holger-dengler 28646ed
asn1: Add ASN.1 module (definition and functions)
holger-dengler a3c6a65
cmake: Add ASN.1 build target
holger-dengler 970cfd6
provider: Add decoders for hbkzpc-URI
holger-dengler 5449263
cmake: Integrate decoder implementation
holger-dengler 2ac4e34
test: Add OpenSSL configuration template
holger-dengler befe371
dbg: Add gdb-scripts for zpcprovider
holger-dengler File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,21 +1,29 @@ | ||
| arch: s390x | ||
| os: linux | ||
| dist: jammy | ||
| language: cpp | ||
| dist: noble | ||
| language: c | ||
| sudo: required | ||
| env: | | ||
| CFLAGS="-O3 -Wextra -Wextra -Werror" | ||
| CXXFLAGS="-O3 -Wextra -Wextra -Werror" | ||
|
|
||
| compiler: | ||
| - gcc | ||
| - clang | ||
|
|
||
| before_install: | ||
| - sudo apt-get update -qq | ||
| - sudo apt-get install cmake libjson-c-dev | ||
| - sudo apt-get install -y cmake libjson-c-dev | ||
|
|
||
| before_script: | ||
| - git clone https://github.com/openssl/openssl.git | ||
| - pushd openssl | ||
| - git checkout --track origin/openssl-3.5 | ||
| - ./config -w 2> >(tee) | ||
| - make -s -j4 2> >(tee) | ||
| - export OPENSSL_DIR=$(pwd) | ||
| - export PATH=${OPENSSL_DIR}/apps/:${PATH} | ||
| - export LD_LIBRARY_PATH=${OPENSSL_DIR}:${LD_LIBRARY_PATH} | ||
| - popd | ||
|
|
||
| script: | ||
| - set -o pipefail | ||
| - mkdir build 2> >(tee) && cd build 2> >(tee) | ||
| - cmake -DBUILD_TEST=ON .. 2> >(tee) | ||
| - make 2> >(tee) | ||
| - cmake -B build -S . -DCMAKE_INCLUDE_PATH=${OPENSSL_DIR} -DCMAKE_LIBRARY_PATH=${OPENSSL_DIR} 2> >(tee) | ||
| - cmake --build build --target zpc 2> >(tee) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Would it be possible to also run some tests here? Probably not ..... |
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While you are at it:
Travis repost one build configuration warning: