HomeSort by relevance Sort by last modified time
    Searched refs:authorization (Results 1 - 10 of 10) sorted by null

  /external/nist-sip/java/gov/nist/javax/sip/parser/
AuthorizationParser.java 32 * Parser for authorization headers.
45 * @param authorization Authorization message to parse
47 public AuthorizationParser(String authorization) {
48 super(authorization);
61 * @return SIPHeader (Authorization object)
67 headerName(TokenTypes.AUTHORIZATION);
68 Authorization auth = new Authorization();
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
AuthenticationHelperImpl.java 190 // Remove all authorization headers from the request (we'll re-add them
225 AuthorizationHeader authorization = null; local
232 authorization = this.getAuthorization(reoriginatedRequest
246 authorization = this.getAuthorization(reoriginatedRequest
253 "Created authorization header: " + authorization.toString());
257 authorization, cacheTime);
259 reoriginatedRequest.addHeader(authorization);
264 "Returning authorization transaction." + retryTran);
308 AuthorizationHeader authorization = null local
374 AuthorizationHeader authorization = null; local
    [all...]
CredentialsCache.java 12 * A cache of authorization headers to be used for subsequent processing when we
53 * Cache the bindings of proxyDomain and authorization header.
56 * the id of the call that the <tt>authorization</tt> header
58 * @param authorization
59 * the authorization header that we'd like to cache.
62 AuthorizationHeader authorization, int cacheTime) {
63 String user = authorization.getUsername();
65 if ( authorization == null) throw new NullPointerException("Null authorization domain");
72 String realm = authorization.getRealm()
    [all...]
  /external/chromium/net/http/
http_auth_handler_digest.cc 160 std::string authorization = std::string("Digest username=") + local
162 authorization += ", realm=" + HttpUtil::Quote(realm_);
163 authorization += ", nonce=" + HttpUtil::Quote(nonce_);
164 authorization += ", uri=" + HttpUtil::Quote(path);
167 authorization += ", algorithm=" + AlgorithmToString(algorithm_);
173 authorization += ", response=\"" + response + "\"";
176 authorization += ", opaque=" + HttpUtil::Quote(opaque_);
180 authorization += ", qop=" + QopToString(qop_);
181 authorization += ", nc=" + nc;
182 authorization += ", cnonce=" + HttpUtil::Quote(cnonce)
    [all...]
  /external/openssl/crypto/krb5/
krb5_asn.h 203 ** authorization-data[8] AuthorizationData OPTIONAL
216 KRB5_AUTHDATA *authorization; member in struct:krb5_authenticator_st
krb5_asn.c 156 (KRB5_AUTHENTBODY, authorization, KRB5_AUTHDATA, 8),
  /external/openssl/include/openssl/
krb5_asn.h 203 ** authorization-data[8] AuthorizationData OPTIONAL
216 KRB5_AUTHDATA *authorization; member in struct:krb5_authenticator_st
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 356 * Parse the parameters from an OAuth Authorization or WWW-Authenticate
360 public static List<OAuth.Parameter> decodeAuthorization(String authorization) {
362 if (authorization != null) {
363 Matcher m = AUTHORIZATION.matcher(authorization);
387 private static final Pattern AUTHORIZATION = Pattern.compile("\\s*(\\w*)\\s+(.*)");
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPDialog.java 40 import gov.nist.javax.sip.header.Authorization;
2483 Authorization authorization = this.originalRequest.getAuthorization(); local
    [all...]
  /external/chromium/net/tools/testserver/
testserver.py 766 auth = self.headers.getheader('authorization')
841 auth = self.headers.getheader('authorization')
    [all...]

Completed in 871 milliseconds