Commit 78937f5e authored by aligungr's avatar aligungr

UE authentication procedure improvements

parent 1df20531
...@@ -449,7 +449,7 @@ EAutnValidationRes NasMm::validateAutn(const OctetString &ak, const OctetString ...@@ -449,7 +449,7 @@ EAutnValidationRes NasMm::validateAutn(const OctetString &ak, const OctetString
// Check MAC // Check MAC
if (receivedMAC != mac) if (receivedMAC != mac)
{ {
m_logger->err("AUTN validation MAC mismatch. expected: %s received: %s", mac.toHexString().c_str(), m_logger->err("AUTN validation MAC mismatch. expected [%s] received [%s]", mac.toHexString().c_str(),
receivedMAC.toHexString().c_str()); receivedMAC.toHexString().c_str());
return EAutnValidationRes::MAC_FAILURE; return EAutnValidationRes::MAC_FAILURE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment