/external/chromium/chrome/browser/cocoa/ |
scoped_authorizationref.h | 9 #include <Security/Authorization.h> 19 explicit scoped_AuthorizationRef(AuthorizationRef authorization = NULL) 20 : authorization_(authorization) { 29 void reset(AuthorizationRef authorization = NULL) { 30 if (authorization_ != authorization) { 34 authorization_ = authorization;
|
authorization_util.h | 28 #include <Security/Authorization.h> 46 OSStatus ExecuteWithPrivilegesAndGetPID(AuthorizationRef authorization, 58 OSStatus ExecuteWithPrivilegesAndWait(AuthorizationRef authorization,
|
/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 229 AuthorizationHeader authorization = null; local 236 authorization = this.getAuthorization(reoriginatedRequest 250 authorization = this.getAuthorization(reoriginatedRequest 257 "Created authorization header: " + authorization.toString()); 261 authorization, cacheTime); 263 reoriginatedRequest.addHeader(authorization); 268 "Returning authorization transaction." + retryTran); 312 AuthorizationHeader authorization = null local 378 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 | 352 std::string authorization = (std::string("Digest username=") + local 354 authorization += ", realm=" + HttpUtil::Quote(realm_); 355 authorization += ", nonce=" + HttpUtil::Quote(nonce_); 356 authorization += ", uri=" + HttpUtil::Quote(path); 359 authorization += ", algorithm=" + AlgorithmToString(algorithm_); 365 authorization += ", response=\"" + response + "\""; 368 authorization += ", opaque=" + HttpUtil::Quote(opaque_); 372 authorization += ", qop=" + QopToString(qop_); 373 authorization += ", nc=" + nc; 374 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/chromium/chrome/browser/resources/net_internals/ |
logviewpainter.js | 288 /^authorization: \S*/i, 289 /^proxy-authorization: \S*/i];
|
/external/chromium/third_party/libjingle/source/talk/base/ |
httpclient.cc | 750 std::string authorization, auth_method; local 760 context, authorization, auth_method); 763 request().setHeader(HH_PROXY_AUTHORIZATION, authorization);
|
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/ |
__init__.py | 151 HOP_BY_HOP = ['connection', 'keep-alive', 'proxy-authenticate', 'proxy-authorization', 'te', 'trailers', 'transfer-encoding', 'upgrade'] 433 Authorization header. Over-rise this in sub-classes.""" 454 Authorization header.""" 455 headers['authorization'] = 'Basic ' + base64.b64encode("%s:%s" % self.credentials).strip() 486 headers['Authorization'] = 'Digest username="%s", realm="%s", nonce="%s", uri="%s", algorithm=%s, response=%s, qop=%s, nc=%08x, cnonce="%s"' % ( 559 headers['Authorization'] = 'HMACDigest username="%s", realm="%s", snonce="%s", cnonce="%s", uri="%s", created="%s", response="%s", headers="%s"' % ( 590 Authorization header.""" 591 headers['Authorization'] = 'WSSE profile="UsernameToken"' 626 Authorization header.""" 627 headers['authorization'] = 'GoogleLogin Auth=' + self.Auth [all...] |
/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...] |