Commit 480b65fd authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix issue for Authentication failture

parent 173c961e
...@@ -1924,7 +1924,7 @@ void amf_n1::authentication_response_handle( ...@@ -1924,7 +1924,7 @@ void amf_n1::authentication_response_handle(
uint8_t* hxresStar = nc.get()->_5g_av[secu_index].hxresStar; uint8_t* hxresStar = nc.get()->_5g_av[secu_index].hxresStar;
// Calculate HRES* from received RES*, then compare with XRES stored in // Calculate HRES* from received RES*, then compare with XRES stored in
// nas_context // nas_context
if (!hxresStar) { if (hxresStar) {
uint8_t inputstring[32]; uint8_t inputstring[32];
uint8_t* res = (uint8_t*) bdata(resStar); uint8_t* res = (uint8_t*) bdata(resStar);
Logger::amf_n1().debug("Start to calculate HRES* from received RES*"); Logger::amf_n1().debug("Start to calculate HRES* from received RES*");
......
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