-
Notifications
You must be signed in to change notification settings - Fork 29
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
Add code style check #48
Labels
Comments
Upon investigation, this task just requires check-generated-files.sh to be moved to Currently an if statement like this is invalid: if (ret != 0)
return P256_INVALID_PRIVKEY; and needs to be replaced with if (ret != 0) {
return P256_INVALID_PRIVKEY;
} |
5 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add code style check
tf-psa-crypto/tests/scripts/components-basic-checks.sh
(to be created).Depends on: Mbed-TLS/mbedtls#9720 and #50 (code_style.py parses check-generated-files.sh).
DOD: Same support for code style checking in TF-PSA-Crypto as in mbedtls
The text was updated successfully, but these errors were encountered: