Add support for CKA_EC_POINT as not DER encoded #701
Workflow file for this run
This file contains 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
--- | |
name: Shellcheck | |
permissions: {} | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
additional_files: >- | |
tbasic | |
tcerts | |
tdemoca | |
tdigest | |
tecc | |
tecdh | |
tecxc | |
tedwards | |
test-wrapper | |
thkdf | |
toaepsha2 | |
top_state | |
tpem_encoder | |
tpubkey | |
trand | |
trsapss | |
ttls | |
turi | |
check_together: 'yes' | |
env: | |
# The expressions in the ossl macro are not expanded | |
# We use tests as default source path | |
SHELLCHECK_OPTS: -e SC2016 -P tests |