Comments and some minor clean-up

This commit is contained in:
2016-08-16 22:27:30 +02:00
parent 8beb7bd27a
commit a5b3914a09
2 changed files with 22 additions and 42 deletions

View File

@@ -512,28 +512,3 @@ namespace eap
hmac_padding m_padding_hmac; ///< Padding (key) for HMAC calculation
};
}
//inline void operator<<(_Inout_ eap::cursor_out &cursor, _In_ const eap::tls_conn_state &val)
//{
// cursor << val.m_master_secret;
// cursor << val.m_random_client;
// cursor << val.m_random_server;
//}
//
//
//inline size_t pksizeof(_In_ const eap::tls_conn_state &val)
//{
// return
// pksizeof(val.m_master_secret) +
// pksizeof(val.m_random_client) +
// pksizeof(val.m_random_server);
//}
//
//
//inline void operator>>(_Inout_ eap::cursor_in &cursor, _Out_ eap::tls_conn_state &val)
//{
// cursor >> val.m_master_secret;
// cursor >> val.m_random_client;
// cursor >> val.m_random_server;
//}