Searched refs:hidden (Results 1 - 25 of 25) sorted by relevance

/system/keymaster/include/keymaster/key_blob_utils/
H A Dintegrity_assured_key_blob.h30 const AuthorizationSet& hidden,
36 const AuthorizationSet& hidden,
H A Docb_utils.h36 const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden,
42 const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden,
H A Dsoftware_keyblobs.h35 AuthorizationSet* hidden,
48 const AuthorizationSet& hidden,
/system/keymaster/key_blob_utils/
H A Dintegrity_assured_key_blob.cpp52 const AuthorizationSet& hidden, uint8_t hmac[HMAC_SIZE]) {
53 size_t hidden_bytes_size = hidden.SerializedSize();
57 hidden.Serialize(hidden_bytes.get(), hidden_bytes.get() + hidden_bytes_size);
80 const AuthorizationSet& hidden,
99 return ComputeHmac(key_blob->key_material, p - key_blob->key_material, hidden, p);
103 const AuthorizationSet& hidden,
115 hidden, computed_hmac);
51 ComputeHmac(const uint8_t* serialized_data, size_t serialized_data_size, const AuthorizationSet& hidden, uint8_t hmac[HMAC_SIZE]) argument
79 SerializeIntegrityAssuredBlob(const KeymasterKeyBlob& key_material, const AuthorizationSet& hidden, const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, KeymasterKeyBlob* key_blob) argument
102 DeserializeIntegrityAssuredBlob(const KeymasterKeyBlob& key_blob, const AuthorizationSet& hidden, KeymasterKeyBlob* key_material, AuthorizationSet* hw_enforced, AuthorizationSet* sw_enforced) argument
H A Docb_utils.cpp50 const AuthorizationSet& hidden,
54 hidden.SerializedSize() + hw_enforced.SerializedSize() + sw_enforced.SerializedSize();
61 buf = hidden.Serialize(buf, end);
70 const AuthorizationSet& hidden,
75 keymaster_error_t error = BuildDerivationData(hw_enforced, sw_enforced, hidden,
119 const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden,
133 InitializeKeyWrappingContext(hw_enforced, sw_enforced, hidden, master_key, &ctx);
155 const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden,
169 InitializeKeyWrappingContext(hw_enforced, sw_enforced, hidden, master_key, &ctx);
48 BuildDerivationData(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden, UniquePtr<uint8_t[]>* derivation_data, size_t* derivation_data_length) argument
68 InitializeKeyWrappingContext(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden, const KeymasterKeyBlob& master_key, AeCtx* ctx) argument
118 OcbEncryptKey(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden, const KeymasterKeyBlob& master_key, const KeymasterKeyBlob& plaintext, const Buffer& nonce, KeymasterKeyBlob* ciphertext, Buffer* tag) argument
154 OcbDecryptKey(const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, const AuthorizationSet& hidden, const KeymasterKeyBlob& master_key, const KeymasterKeyBlob& ciphertext, const Buffer& nonce, const Buffer& tag, KeymasterKeyBlob* plaintext) argument
H A Dsoftware_keyblobs.cpp81 AuthorizationSet* hidden,
85 hidden->push_back(TAG_APPLICATION_ID, entry.data, entry.data_length);
87 hidden->push_back(TAG_APPLICATION_DATA, entry.data, entry.data_length);
89 hidden->push_back(TAG_ROOT_OF_TRUST, root_of_trust);
91 return TranslateAuthorizationSetError(hidden->is_valid());
244 const AuthorizationSet& hidden,
258 return OcbDecryptKey(*hw_enforced, *sw_enforced, hidden, MASTER_KEY, encrypted_key_material,
281 // These are hidden.
333 AuthorizationSet hidden;
334 auto error = BuildHiddenAuthorizations(upgrade_params, &hidden, softwareRootOfTrus
80 BuildHiddenAuthorizations(const AuthorizationSet& input_set, AuthorizationSet* hidden, const KeymasterBlob& root_of_trust) argument
243 ParseOcbAuthEncryptedBlob(const KeymasterKeyBlob& blob, const AuthorizationSet& hidden, KeymasterKeyBlob* key_material, AuthorizationSet* hw_enforced, AuthorizationSet* sw_enforced) argument
[all...]
/system/chre/build/
H A Dtools_config.mk38 # Compile with hidden visibility by default.
39 COMMON_CFLAGS += -fvisibility=hidden
/system/keymaster/contexts/
H A Dkeymaster1_passthrough_context.cpp147 AuthorizationSet hidden; local
148 keymaster_error_t error = BuildHiddenAuthorizations(additional_params, &hidden,
154 error = DeserializeIntegrityAssuredBlob(blob, hidden, &key_material, &hw_enforced, &sw_enforced);
224 AuthorizationSet hidden;
225 error = BuildHiddenAuthorizations(key_description, &hidden, softwareRootOfTrust);
229 return SerializeIntegrityAssuredBlob(key_material, hidden, *hw_enforced, *sw_enforced, blob);
H A Dpure_soft_keymaster_context.cpp119 AuthorizationSet hidden;
120 error = BuildHiddenAuthorizations(key_description, &hidden, softwareRootOfTrust);
124 return SerializeIntegrityAssuredBlob(key_material, hidden, *hw_enforced, *sw_enforced, blob);
181 AuthorizationSet hidden; local
182 error = BuildHiddenAuthorizations(additional_params, &hidden, softwareRootOfTrust);
188 error = DeserializeIntegrityAssuredBlob(blob, hidden, &key_material, &hw_enforced, &sw_enforced);
193 error = ParseOcbAuthEncryptedBlob(blob, hidden, &key_material, &hw_enforced, &sw_enforced);
H A Dsoft_keymaster_context.cpp174 // These are hidden.
207 AuthorizationSet hidden;
208 error = BuildHiddenAuthorizations(key_description, &hidden, root_of_trust_);
212 return SerializeIntegrityAssuredBlob(key_material, hidden, *hw_enforced, *sw_enforced, blob);
281 AuthorizationSet hidden; local
297 error = BuildHiddenAuthorizations(additional_params, &hidden, root_of_trust_);
303 error = DeserializeIntegrityAssuredBlob(blob, hidden, &key_material, &hw_enforced, &sw_enforced);
308 error = ParseOcbAuthEncryptedBlob(blob, hidden, &key_material, &hw_enforced, &sw_enforced);
/system/security/keystore-engine/
H A DAndroid.mk26 LOCAL_CFLAGS := -fvisibility=hidden -Wall -Werror
53 LOCAL_CFLAGS := -fvisibility=hidden -Wall -Werror -DBACKEND_WIFI_HIDL
/system/media/camera/docs/
H A DACameraMetadata.mako67 // System tags that should be hidden from users
H A DCameraMetadataEnums.mako41 % if entry.applied_visibility in ('hidden', 'ndk_public') or value.hidden:
61 any_visible(section, xml_name, ('public','hidden', 'ndk_public', 'java_public') ):
65 % for entry in filter_visibility(inner_namespace.entries, ('hidden','public', 'ndk_public', 'java_public')):
75 ('hidden', 'public', 'ndk_public', 'java_public')):
H A DCameraMetadataKeys.mako48 % if not value.hidden:
57 % if entry.applied_visibility in ('hidden', 'ndk_public'):
79 any_visible(section, xml_name, ('public','hidden','ndk_public','java_public') ):
83 % for entry in filter_visibility(inner_namespace.merged_entries, ('hidden','public', 'ndk_public', 'java_public')):
89 ('hidden', 'public', 'ndk_public', 'java_public')):
H A Dmetadata_template.mako155 % if value.hidden:
156 hidden="true"
H A Dhtml.mako54 .thead_dummy { visibility: hidden; }
311 % if value.hidden:
312 <span class="entry_type_enum_hidden">[hidden]</span>
H A Dndk_camera_metadata_tags.mako148 print " WARNING: {}_{} is marked as hidden".format(csym(ndk(entry.name)), val.name) + \
149 " enum in NDK. Please double check this value is properly hidden" + \
153 % if val.hidden or val.ndk_hidden:
H A Dmetadata_model.py985 hidden: A boolean, True if the enum should be hidden.
986 ndk_hidden: A boolean, True if the enum should be hidden in NDK
995 id=None, deprecated=False, optional=False, hidden=False, notes=None, sdk_notes=None, ndk_notes=None, ndk_hidden=False, hal_version='3.2'):
1000 self._hidden = hidden # bool
1030 def hidden(self): member in class:EnumValue
1107 visibility: The visibility of this entry ('system', 'hidden', 'public')
1119 glued together at the Java layer from multiple visibiltity=hidden
1191 visibility: A string describing the visibility, eg 'system', 'hidden',
H A Dmetadata_helpers.py758 if not value.hidden:
/system/tpm/tpm_manager/
H A DAndroid.mk23 -fvisibility=hidden \
/system/core/adb/
H A DAndroid.mk77 -fvisibility=hidden \
/system/core/libcutils/arch-x86/
H A Dandroid_memset32.S110 .hidden __x86.get_pc_thunk.bx
H A Dandroid_memset16.S110 .hidden __x86.get_pc_thunk.bx
/system/extras/simpleperf/
H A DAndroid.mk27 -fvisibility=hidden \
/system/update_engine/
H A DAndroid.mk52 -fvisibility=hidden

Completed in 286 milliseconds