-
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
34
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.
+4,307
−84
Open
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
75e3818
zpc: ecc_key: Add key compare API
holger-dengler a2ab62e
zpc: init: Introduce explicit constructor/destructor
holger-dengler 8cffd81
travis: Add OpenSSL custom build
holger-dengler f36999e
cmake: Fix broken gtest
holger-dengler 20bed2a
cmake: Convert zpc target to object module
holger-dengler 4e4f5b3
cmake: Introduce build option BUILD_INTERNAL_TEST
holger-dengler 2ffb9d4
cmake: Harmonize indent
holger-dengler 8072911
cmake: Add man-page conversion target
holger-dengler 420f0c0
cmake: Add OpenSSL package
holger-dengler eba230d
cmake: Introduce build option for address sanitizer
holger-dengler 297415b
provider: Add base provider
holger-dengler e9ddfa4
cmake: Add zpcprovider build target
holger-dengler 863e022
provider: Add provider-specific key object
holger-dengler 6cdf4ef
cmake: Integrate provider-specific key object
holger-dengler 5e4a4a5
provider: Add hbkzpc-URI parser
holger-dengler 1bf6928
cmake: Add uri build target
holger-dengler 9284e38
provider: Add mapping helpers
holger-dengler 82f0260
cmake: Integrate mapping helpers
holger-dengler 8165a0d
provider: Add store-loader
holger-dengler 93b56db
cmake: Integrate store-loader
holger-dengler 322f03b
provider: Add asymmetric key management
holger-dengler 21232c9
cmake: Integrate asymmetric key management
holger-dengler e146cbc
provider: Add algorithm-id helpers
holger-dengler 5faf933
cmake: Integrate algorithm-id helpers
holger-dengler 74dafe0
provider: Add signature algorithms
holger-dengler cc4cfc4
cmake: Integrate signature algorithms
holger-dengler b0d3bce
provider: Add tls-property helpers
holger-dengler d272a44
cmake: Integrate tls-property helpers
holger-dengler 0a2c823
asn1: Add ASN.1 module (definition and functions)
holger-dengler 99ee683
cmake: Add ASN.1 build target
holger-dengler 3e6c408
provider: Add decoders for hbkzpc-URI
holger-dengler 94895be
cmake: Integrate decoder implementation
holger-dengler 4cefb87
test: Add OpenSSL configuration template
holger-dengler e9d0639
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,17 @@ | ||
| arch: s390x | ||
| os: linux | ||
| dist: jammy | ||
| language: cpp | ||
| sudo: required | ||
| env: | | ||
| CFLAGS="-O3 -Wextra -Wextra -Werror" | ||
| CXXFLAGS="-O3 -Wextra -Wextra -Werror" | ||
| dist: noble | ||
| language: c | ||
|
|
||
| compiler: | ||
| - gcc | ||
| - clang | ||
|
|
||
| before_install: | ||
| - sudo apt-get update -qq | ||
| - sudo apt-get install cmake libjson-c-dev | ||
| - sudo apt-get install -y cmake pandoc clang-format libjson-c-dev libssl-dev | ||
|
|
||
| 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 . 2> >(tee) | ||
| - cmake --build build 2> >(tee) | ||
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.
Uh oh!
There was an error while loading. Please reload this page.