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

1 2 3 4

  /external/libchrome/base/mac/
scoped_authorizationref.h 8 #include <Security/Authorization.h>
21 explicit ScopedAuthorizationRef(AuthorizationRef authorization = NULL)
22 : authorization_(authorization) {
31 void reset(AuthorizationRef authorization = NULL) {
32 if (authorization_ != authorization) {
36 authorization_ = 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();
  /system/tpm/trunks/
authorization_delegate.h 27 // takes care of providing the authorization data for commands and verifying
28 // authorization data for responses. It also handles parameter encryption for
35 // Provides authorization data for a command which has a cpHash value of
37 // by |is_*_parameter_encryption_possible|. On success, |authorization| is
38 // populated with the exact octets for the Authorization Area of the command.
44 std::string* authorization) = 0;
46 // Checks authorization data for a response which has a rpHash value of
47 // |response_hash|. The exact octets from the Authorization Area of the
48 // response are given in |authorization|. Returns true iff the authorization
    [all...]
password_authorization_delegate.cc 38 std::string* authorization) {
45 TPM_RC serialize_error = Serialize_TPMS_AUTH_COMMAND(auth, authorization);
55 const std::string& authorization) {
57 std::string mutable_auth_string(authorization);
62 if (authorization.size() != auth_bytes.size()) {
63 LOG(ERROR) << __func__ << ": Authorization string was of wrong length.";
67 LOG(ERROR) << __func__ << ": could not parse authorization response.";
hmac_authorization_delegate_test.cc 46 std::string dummy_auth = std::string("authorization");
129 std::string authorization; local
132 &authorization));
134 Parse_TPMS_AUTH_COMMAND(&authorization, &auth_command, nullptr));
152 &authorization));
154 Parse_TPMS_AUTH_COMMAND(&authorization, &auth_command, nullptr));
165 std::string authorization; local
167 &authorization));
171 &authorization, &auth_command, &auth_bytes));
191 std::string authorization; local
203 std::string authorization; local
    [all...]
password_authorization_delegate.h 31 // interface. This delegate is used for password based authorization. Upon
44 std::string* authorization) override;
46 const std::string& authorization) override;
password_authorization_delegate_test.cc 32 // This test checks the generation of an authorization structure by the
34 // to the expected authorization string.
44 std::string authorization; local
47 command_hash, false, false, &authorization);
49 EXPECT_EQ(authorization.length(), expected_auth.length());
50 EXPECT_EQ(expected_auth.compare(authorization), 0);
53 // This test looks at the delegate's ability to parse and check authorization
69 // authorization response.
tpm_generated_test.cc 108 StrictMock<MockAuthorizationDelegate> authorization; local
109 EXPECT_CALL(authorization, GetCommandAuthorization(_, _, _, _))
112 EXPECT_EQ(TPM_RC_SUCCESS, tpm.StartupSync(TPM_SU_CLEAR, &authorization));
131 StrictMock<MockAuthorizationDelegate> authorization; local
132 EXPECT_CALL(authorization, GetCommandAuthorization(_, _, _, _))
135 EXPECT_EQ(TPM_RC_FAILURE, tpm.StartupSync(TPM_SU_CLEAR, &authorization));
209 StrictMock<MockAuthorizationDelegate> authorization; local
210 EXPECT_CALL(authorization, GetCommandAuthorization(_, _, _, _))
212 EXPECT_CALL(authorization, CheckResponseAuthorization(_, auth_out))
214 EXPECT_CALL(authorization, EncryptCommandParameter(_)).WillOnce(Return(true))
342 StrictMock<MockAuthorizationDelegate> authorization; local
370 StrictMock<MockAuthorizationDelegate> authorization; local
426 StrictMock<MockAuthorizationDelegate> authorization; local
    [all...]
  /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/tpm2/
FieldUpgradeStart_fp.h 13 TPMI_RH_PLATFORM authorization; member in struct:__anon35351
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
CGIHTTPServer.py 175 authorization = self.headers.getheader("authorization")
176 if authorization:
177 authorization = authorization.split()
178 if len(authorization) == 2:
180 env['AUTH_TYPE'] = authorization[0]
181 if authorization[0].lower() == "basic":
183 authorization = base64.decodestring(authorization[1])
    [all...]
  /external/python/cpython2/Lib/
CGIHTTPServer.py 172 authorization = self.headers.getheader("authorization")
173 if authorization:
174 authorization = authorization.split()
175 if len(authorization) == 2:
177 env['AUTH_TYPE'] = authorization[0]
178 if authorization[0].lower() == "basic":
180 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
CGIHTTPServer.py 177 authorization = self.headers.getheader("authorization")
178 if authorization:
179 authorization = authorization.split()
180 if len(authorization) == 2:
182 env['AUTH_TYPE'] = authorization[0]
183 if authorization[0].lower() == "basic":
185 authorization = base64.decodestring(authorization[1]
    [all...]
  /prebuilts/misc/common/robolectric/lib/
wagon-file-1.0-beta-6.jar 
wagon-http-lightweight-1.0-beta-6.jar 
wagon-provider-api-1.0-beta-6.jar 
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-file/1.0-beta-6/
wagon-file-1.0-beta-6.jar 
  /external/selinux/dbus/
org.selinux.conf 14 authorization is performed by PolicyKit -->
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-http-lightweight/1.0-beta-6/
wagon-http-lightweight-1.0-beta-6.jar 
  /system/tpm/tpm_manager/server/
tpm2_nvram_impl.cc 213 trunks::AuthorizationDelegate* authorization = nullptr; local
232 authorization = policy_session->GetDelegate();
235 authorization = trunks_session_->GetDelegate();
242 authorization = trunks_session_->GetDelegate();
244 // TPMA_NV_PPWRITE: Platform authorization is long gone.
249 authorization);
278 trunks::AuthorizationDelegate* authorization = nullptr; local
294 authorization = policy_session->GetDelegate();
297 authorization = trunks_session_->GetDelegate();
304 authorization = trunks_session_->GetDelegate()
344 trunks::AuthorizationDelegate* authorization = nullptr; local
385 trunks::AuthorizationDelegate* authorization = nullptr; local
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/wagon/wagon-provider-api/1.0-beta-6/
wagon-provider-api-1.0-beta-6.jar 

Completed in 1032 milliseconds

1 2 3 4