HomeSort by relevance Sort by last modified time
    Searched full:authpolicy (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/tpm2/
SetPrimaryPolicy.c 14 // TPM_RC_SIZE size of input authPolicy is not consistent with input hash algorithm
25 // Check the authPolicy consistent with hash algorithm. If the policy size is
27 if(in->authPolicy.t.size != CryptGetHashDigestSize(in->hashAlg))
45 gp.ownerPolicy = in->authPolicy;
51 gp.endorsementPolicy = in->authPolicy;
57 gc.platformPolicy = in->authPolicy;
63 gp.lockoutPolicy = in->authPolicy;
PCR_SetAuthPolicy.c 14 // TPM_RC_SIZE size of authPolicy is not the size of a digest produced by policyDigest
34 // Check the authPolicy consistent with hash algorithm
35 if(in->authPolicy.t.size != CryptGetHashDigestSize(in->hashAlg))
46 gp.pcrPolicies.policy[groupIndex] = in->authPolicy;
Entity_fp.h 12 TPM2B_DIGEST *authPolicy // OUT: authPolicy of the entity
Entity.c 239 // This function is used to access the authPolicy associated with a handle. This function assumes that the
241 // EntityGetLoadStatus() should have been called. Also, the accessibility of the authPolicy should have
243 // This function copies the authorization policy of the entity to authPolicy.
249 TPM2B_DIGEST *authPolicy // OUT: authPolicy of the entity
261 *authPolicy = gp.ownerPolicy;
266 *authPolicy = gp.endorsementPolicy;
271 *authPolicy = gc.platformPolicy;
276 *authPolicy = gp.lockoutPolicy;
287 // authPolicy for an objec
    [all...]
LoadExternal.c 26 // TPM_RC_SIZE authPolicy is not zero and is not the size of a digest produced by the
47 // the size of authPolicy is either 0 or the digest size of nameAlg
48 if(in->inPublic.t.publicArea.authPolicy.t.size != 0
49 && in->inPublic.t.publicArea.authPolicy.t.size !=
ChangeEPS.c 42 // Set endorsement authPolicy to null
ChangePPS.c 35 // Set platform authPolicy to null
Marshal_PCR_SetAuthPolicy.c 19 result = TPM2B_DIGEST_Unmarshal(&target->authPolicy, buffer, size);
Marshal_SetPrimaryPolicy.c 18 result = TPM2B_DIGEST_Unmarshal(&target->authPolicy, buffer, size);
NV_DefineSpace.c 19 // TPM_RC_SIZE 'auth->size' or 'publicInfo->authPolicy.size' is larger than the digest
56 // check that the authPolicy consistent with hash algorithm
57 if( in->publicInfo.t.nvPublic.authPolicy.t.size != 0
58 && in->publicInfo.t.nvPublic.authPolicy.t.size != nameSize)
PCR_SetAuthPolicy_fp.h 14 TPM2B_DIGEST authPolicy;
SetPrimaryPolicy_fp.h 14 TPM2B_DIGEST authPolicy;
Clear.c 57 // Set storage, endorsement, and lockout authPolicy to null
Load.c 26 // TPM_RC_SIZE inPrivate missing, or authPolicy size for inPublic or is not valid
SessionProcess.c 355 // This function indicates if an authPolicy is available and allowed.
361 // TRUE authPolicy is available
362 // FALSE authPolicy is not available
421 if(nvIndex.publicArea.authPolicy.t.size != 0)
705 // a) compare policyDigest in session with authPolicy associated with the entity to be authorized;
736 TPM2B_DIGEST authPolicy;
750 // Get authPolicy.
752 &authPolicy);
753 // Compare authPolicy.
754 if(!Memory2BEqual(&session->u2.policyDigest.b, &authPolicy.b)
    [all...]
Import.c 49 // TPM_RC_SIZE authPolicy size does not match digest size of the name algorithm in
  /external/cros/system_api/
system_api.pc 4 Libs: -lsystem_api-power_manager-protos -lsystem_api-cryptohome-protos -lsystem_api-authpolicy-protos -lsystem_api-protos
system_api.gyp 91 'target_name': 'system_api-authpolicy-protos-gen',
94 'proto_in_dir': 'dbus/authpolicy',
95 'proto_out_dir': 'include/authpolicy/proto_bindings',
103 'target_name': 'system_api-authpolicy-protos',
107 'system_api-authpolicy-protos-gen',
110 '<(SHARED_INTERMEDIATE_DIR)/include/authpolicy/proto_bindings/active_directory_account_data.pb.cc',
  /external/cros/system_api/dbus/authpolicy/
active_directory_account_data.proto 9 package authpolicy;
11 // Message sent to Chromium by authpolicy service as a response of successful
dbus-constants.h 8 namespace authpolicy { namespace
10 const char kAuthPolicyInterface[] = "org.chromium.AuthPolicy";
11 const char kAuthPolicyServicePath[] = "/org/chromium/AuthPolicy";
12 const char kAuthPolicyServiceName[] = "org.chromium.AuthPolicy";
80 } // namespace authpolicy
  /external/apache-http/src/org/apache/http/client/params/
AuthPolicy.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/params/AuthPolicy.java $
40 public final class AuthPolicy {
42 private AuthPolicy() {
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
Tpm2Hierarchy.c 29 TPM2B_DIGEST AuthPolicy;
129 @param[in] AuthPolicy An authorization policy hash
140 IN TPM2B_DIGEST *AuthPolicy,
173 WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16(AuthPolicy->size));
175 CopyMem (Buffer, AuthPolicy->buffer, AuthPolicy->size);
176 Buffer += AuthPolicy->size;
Tpm2NVStorage.c 252 NvPublic->nvPublic.authPolicy.size = SwapBytes16 (NvPublic->nvPublic.authPolicy.size);
253 Buffer = (UINT8 *)&NvPublic->nvPublic.authPolicy;
254 Buffer += sizeof(UINT16) + NvPublic->nvPublic.authPolicy.size;
334 WriteUnaligned16 ((UINT16 *)Buffer, SwapBytes16 (NvPublic->nvPublic.authPolicy.size));
336 CopyMem (Buffer, NvPublic->nvPublic.authPolicy.buffer, NvPublic->nvPublic.authPolicy.size);
337 Buffer += NvPublic->nvPublic.authPolicy.size;
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultHttpClient.java 43 import org.apache.http.client.params.AuthPolicy;
254 AuthPolicy.BASIC,
257 AuthPolicy.DIGEST,
  /external/autotest/client/site_tests/security_AccountsBaseline/
baseline.passwd 56 authpolicyd:!:254:254:authpolicy daemon:/dev/null:/bin/false
77 authpolicyd-exec:!:607:607:authpolicy process executor:/dev/null:/bin/false

Completed in 596 milliseconds

1 2 3