234235236237238239240241242243244
String nextNonce = null; String qop = null; String responseAuth = null; String cnonce = null; int nonceCount = 0; Parameter param = hr.readValue(); while (param != null) { try { if ("nextnonce".equals(param.getName())) { nextNonce = param.getValue();
251252253254255256257258259260261
} else if ("nc".equals(param.getName())) { nonceCount = Integer.parseInt(param.getValue(), 16); } if (hr.skipValueSeparator()) { param = hr.readValue(); } else { param = null; } } catch (Exception e) { Context.getCurrentLogger()