- PPP authentication EAP response packet is correctly formed now

- MS-MPPE-Send-Key/MS-MPPE-Recv-Key sorted out
This commit is contained in:
2016-08-14 21:00:59 +02:00
parent 95e2f7e01b
commit 99aa53726d
5 changed files with 40 additions and 35 deletions

View File

@@ -492,8 +492,8 @@ namespace eap
winstd::crypt_key m_key_client; ///< Key for encrypting messages
winstd::crypt_key m_key_server; ///< Key for decrypting messages
tls_random m_key_mppe_send; ///< MS-MPPE-Send-Key
tls_random m_key_mppe_recv; ///< MS-MPPE-Recv-Key
tls_random m_key_mppe_client; ///< MS-MPPE-Recv-Key
tls_random m_key_mppe_server; ///< MS-MPPE-Send-Key
sanitizing_blob m_session_id; ///< TLS session ID

View File

@@ -217,7 +217,7 @@ namespace eap
#pragma pack(push)
#pragma pack(1)
struct tls_random
struct __declspec(novtable) tls_random
{
unsigned char data[32]; ///< Randomness
@@ -264,7 +264,7 @@ namespace eap
#pragma pack(push)
#pragma pack(1)
struct tls_master_secret
struct __declspec(novtable) tls_master_secret
{
unsigned char data[48];