Remove trailing whitespaces
Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
parent
a032963d65
commit
43592bd1f9
2 changed files with 4 additions and 4 deletions
|
@ -330,7 +330,7 @@ add_common_ciphersuites()
|
||||||
# Ciphersuites usable only with Mbed TLS and OpenSSL
|
# Ciphersuites usable only with Mbed TLS and OpenSSL
|
||||||
# Each ciphersuite is compiled case by case in the MBedTLS standard, and
|
# Each ciphersuite is compiled case by case in the MBedTLS standard, and
|
||||||
# is appended to the list of MBedTLS ciphersuites $M_CIPHERS. The same list
|
# is appended to the list of MBedTLS ciphersuites $M_CIPHERS. The same list
|
||||||
# is translated to the OpenSSL naming standard and appended to the list of
|
# is translated to the OpenSSL naming standard and appended to the list of
|
||||||
# OpenSSL ciphersuites $O_CIPHERS
|
# OpenSSL ciphersuites $O_CIPHERS
|
||||||
#
|
#
|
||||||
# NOTE: for some reason RSA-PSK doesn't work with OpenSSL,
|
# NOTE: for some reason RSA-PSK doesn't work with OpenSSL,
|
||||||
|
@ -413,7 +413,7 @@ add_openssl_ciphersuites()
|
||||||
# Ciphersuites usable only with Mbed TLS and GnuTLS
|
# Ciphersuites usable only with Mbed TLS and GnuTLS
|
||||||
# Each ciphersuite is compiled case by case in the MBedTLS standard, and
|
# Each ciphersuite is compiled case by case in the MBedTLS standard, and
|
||||||
# is appended to the list of MBedTLS ciphersuites $M_CIPHERS. The same list
|
# is appended to the list of MBedTLS ciphersuites $M_CIPHERS. The same list
|
||||||
# is translated to the GnuTLS naming standard and appended to the list of
|
# is translated to the GnuTLS naming standard and appended to the list of
|
||||||
# GnuTLS ciphersuites $G_CIPHERS
|
# GnuTLS ciphersuites $G_CIPHERS
|
||||||
add_gnutls_ciphersuites()
|
add_gnutls_ciphersuites()
|
||||||
{
|
{
|
||||||
|
@ -536,7 +536,7 @@ add_gnutls_ciphersuites()
|
||||||
fi
|
fi
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
M_CIPHERS="$M_CIPHERS $CIPHERS"
|
M_CIPHERS="$M_CIPHERS $CIPHERS"
|
||||||
|
|
||||||
G=`python3 translate_ciphers.py g "$CIPHERS"`
|
G=`python3 translate_ciphers.py g "$CIPHERS"`
|
||||||
|
|
|
@ -120,7 +120,7 @@ def format_ciphersuite_names(mode, ciphers):
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
if len(sys.argv) != 3:
|
if len(sys.argv) != 3:
|
||||||
print("""Incorrect number of arguments.
|
print("""Incorrect number of arguments.
|
||||||
The first argument with either an \"o\" for OpenSSL or \"g\" for GNUTLS.
|
The first argument with either an \"o\" for OpenSSL or \"g\" for GNUTLS.
|
||||||
The second argument should a single space seperated string of MBedTLS ciphersuite names""")
|
The second argument should a single space seperated string of MBedTLS ciphersuite names""")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in a new issue