Webserver+3d print

Dependents:   Nucleo

Embed: (wiki syntax)

« Back to documentation index

tls_cipher_suites.c File Reference

tls_cipher_suites.c File Reference

TLS cipher suites. More...

Go to the source code of this file.

Functions

uint_t tlsGetNumSupportedCipherSuites (void)
 Determine the number of cipher suites supported.
const char_t * tlsGetCipherSuiteName (uint16_t identifier)
 Convert cipher suite identifier to string representation.
bool_t tlsIsCipherSuiteSupported (uint16_t identifier)
 Check whether a cipher suite is supported.
bool_t tlsIsEccCipherSuite (uint16_t identifier)
 Check whether the specified identifier matches an ECC cipher suite.

Detailed Description

TLS cipher suites.

License

Copyright (C) 2010-2017 Oryx Embedded SARL. All rights reserved.

This file is part of CycloneSSL Open.

This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

Author:
Oryx Embedded SARL (www.oryx-embedded.com)
Version:
1.7.6

Definition in file tls_cipher_suites.c.


Function Documentation

const char_t* tlsGetCipherSuiteName ( uint16_t  identifier )

Convert cipher suite identifier to string representation.

Parameters:
[in]identifierCipher suite identifier
Returns:
Cipher suite name

Definition at line 1080 of file tls_cipher_suites.c.

uint_t tlsGetNumSupportedCipherSuites ( void   )

Determine the number of cipher suites supported.

Returns:
Number of supported cipher suites

Definition at line 1067 of file tls_cipher_suites.c.

bool_t tlsIsCipherSuiteSupported ( uint16_t  identifier )

Check whether a cipher suite is supported.

Parameters:
[in]identifierCipher suite identifier
Returns:
TRUE if the specified cipher suite is supported, else FALSE

Definition at line 1106 of file tls_cipher_suites.c.

bool_t tlsIsEccCipherSuite ( uint16_t  identifier )

Check whether the specified identifier matches an ECC cipher suite.

Parameters:
[in]identifierCipher suite identifier
Returns:
TRUE if the specified cipher suite is supported, else FALSE

Definition at line 1129 of file tls_cipher_suites.c.