|
iPXE
|
A TLS key exchange algorithm. More...
#include <tls.h>
Data Fields | |
| const char * | name |
| Algorithm name. | |
| int(* | server )(struct tls_connection *tls, const void *data, size_t len) |
| Receive new Server Key Exchange record using ECDHE key exchange. | |
| int(* | client )(struct tls_connection *tls) |
| Transmit Client Key Exchange record. | |
| const char* tls_key_exchange_algorithm::name |
| int(* tls_key_exchange_algorithm::server) (struct tls_connection *tls, const void *data, size_t len) |
Receive new Server Key Exchange record using ECDHE key exchange.
| tls | TLS connection |
| data | Server Key Exchange handshake record |
| len | Length of Server Key Exchange handshake record |
| rc | Return status code |
Definition at line 207 of file tls.h.
Referenced by tls_new_server_key_exchange().
| int(* tls_key_exchange_algorithm::client) (struct tls_connection *tls) |
Transmit Client Key Exchange record.
| tls | TLS connection |
| rc | Return status code |
Definition at line 215 of file tls.h.
Referenced by tls_send_client_key_exchange().