summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/tls.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gpxe/tls.h')
-rw-r--r--src/include/gpxe/tls.h20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/include/gpxe/tls.h b/src/include/gpxe/tls.h
index a8cf16ef..39109452 100644
--- a/src/include/gpxe/tls.h
+++ b/src/include/gpxe/tls.h
@@ -109,6 +109,22 @@ struct tls_cipherspec {
void *mac_secret;
};
+/** TLS pre-master secret */
+struct tls_pre_master_secret {
+ /** TLS version */
+ uint16_t version;
+ /** Random data */
+ uint8_t random[46];
+} __attribute__ (( packed ));
+
+/** TLS client random data */
+struct tls_client_random {
+ /** GMT Unix time */
+ uint32_t gmt_unix_time;
+ /** Random data */
+ uint8_t random[28];
+} __attribute__ (( packed ));
+
/** A TLS session */
struct tls_session {
/** Reference counter */
@@ -128,13 +144,13 @@ struct tls_session {
/** Next RX cipher specification */
struct tls_cipherspec rx_cipherspec_pending;
/** Premaster secret */
- uint8_t pre_master_secret[48];
+ struct tls_pre_master_secret pre_master_secret;
/** Master secret */
uint8_t master_secret[48];
/** Server random bytes */
uint8_t server_random[32];
/** Client random bytes */
- uint8_t client_random[32];
+ struct tls_client_random client_random;
/** MD5 context for handshake verification */
uint8_t handshake_md5_ctx[MD5_CTX_SIZE];
/** SHA1 context for handshake verification */