Searched refs:qop_value (Results 1 – 1 of 1) sorted by relevance
/external/nist-sip/java/gov/nist/javax/sip/clientauthutils/ |
D | MessageDigestAlgorithm.java | 40 String method, String digest_uri_value, String entity_body, String qop_value, in calculateResponse() argument 46 + ", " + entity_body + ", " + qop_value); in calculateResponse() 63 if (qop_value == null || qop_value.trim().length() == 0 in calculateResponse() 64 || qop_value.trim().equalsIgnoreCase("auth")) { in calculateResponse() 74 if (cnonce_value != null && qop_value != null && nc_value != null in calculateResponse() 75 && (qop_value.equalsIgnoreCase("auth") || qop_value.equalsIgnoreCase("auth-int"))) in calculateResponse() 79 + qop_value + ":" + H(A2)); in calculateResponse() 116 String method, String digest_uri_value, String entity_body, String qop_value, in calculateResponse() argument 123 + ", " + entity_body + ", " + qop_value); in calculateResponse() 148 if (qop_value == null || qop_value.trim().length() == 0 in calculateResponse() [all …]
|