Skip to content

Commit

Permalink
Update some comments
Browse files Browse the repository at this point in the history
Signed-off-by: Pengyu Lv <pengyu.lv@arm.com>
  • Loading branch information
lpy4105 committed Feb 23, 2023
1 parent 07d5085 commit 9e7bb2a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
- programs/test/selftest
- tests/scripts/test_psa_constant_names.py
- tests/ssl-opt.sh
# Modern OpenSSL does not support fixed ECDH or null ciphers.
# Modern OpenSSL does not support null ciphers.
- tests/compat.sh -p OpenSSL -e 'NULL'
- tests/scripts/travis-log-failure.sh
# GnuTLS supports CAMELLIA but compat.sh doesn't properly enable it.
Expand Down
4 changes: 2 additions & 2 deletions tests/compat.sh
Original file line number Diff line number Diff line change
Expand Up @@ -614,7 +614,7 @@ setup_arguments()
esac

case $($OPENSSL ciphers ALL) in
*ECDH-ECDSA*) O_SUPPORT_ECDH="YES";;
*ECDH-ECDSA*|*ECDH-RSA*) O_SUPPORT_ECDH="YES";;
*) O_SUPPORT_ECDH="NO";;
esac

Expand Down Expand Up @@ -834,7 +834,7 @@ run_client() {
if [ $EXIT -eq 0 ]; then
RESULT=0
else
# If the cipher isn't supported...
# If it is NULL cipher ...
if grep 'Cipher is (NONE)' $CLI_OUT >/dev/null; then
RESULT=1
else
Expand Down

0 comments on commit 9e7bb2a

Please sign in to comment.