Searched defs:hidden (Results 1 - 5 of 5) sorted by relevance

/system/keymaster/
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 Dintegrity_assured_key_blob.cpp53 const AuthorizationSet& hidden, uint8_t hmac[HMAC_SIZE]) {
54 size_t hidden_bytes_size = hidden.SerializedSize();
58 hidden.Serialize(hidden_bytes.get(), hidden_bytes.get() + hidden_bytes_size);
81 const AuthorizationSet& hidden,
100 return ComputeHmac(key_blob->key_material, p - key_blob->key_material, hidden, p);
104 const AuthorizationSet& hidden,
116 hidden, computed_hmac);
52 ComputeHmac(const uint8_t* serialized_data, size_t serialized_data_size, const AuthorizationSet& hidden, uint8_t hmac[HMAC_SIZE]) argument
80 SerializeIntegrityAssuredBlob(const KeymasterKeyBlob& key_material, const AuthorizationSet& hidden, const AuthorizationSet& hw_enforced, const AuthorizationSet& sw_enforced, KeymasterKeyBlob* key_blob) argument
103 DeserializeIntegrityAssuredBlob(const KeymasterKeyBlob& key_blob, const AuthorizationSet& hidden, KeymasterKeyBlob* key_material, AuthorizationSet* hw_enforced, AuthorizationSet* sw_enforced) argument
H A Dsoft_keymaster_context.cpp427 // These are hidden.
460 AuthorizationSet hidden;
461 error = BuildHiddenAuthorizations(key_description, &hidden);
465 return SerializeIntegrityAssuredBlob(key_material, hidden, *hw_enforced, *sw_enforced, blob);
520 AuthorizationSet hidden;
521 error = BuildHiddenAuthorizations(upgrade_params, &hidden);
524 return SerializeIntegrityAssuredBlob(key_material, hidden, tee_enforced, sw_enforced,
529 const AuthorizationSet& hidden,
543 return OcbDecryptKey(*hw_enforced, *sw_enforced, hidden, MASTER_KEY, encrypted_key_material,
660 AuthorizationSet hidden; local
528 ParseOcbAuthEncryptedBlob(const KeymasterKeyBlob& blob, const AuthorizationSet& hidden, KeymasterKeyBlob* key_material, AuthorizationSet* hw_enforced, AuthorizationSet* sw_enforced) argument
[all...]
/system/netd/server/
H A DSoftapController.cpp124 int hidden = 0; local
129 ALOGE("softap <wlan iface> <SSID> <hidden/broadcast> <channel> <wpa2?-psk|open> <passphrase>");
133 if (!strcasecmp(argv[4], "hidden"))
134 hidden = 1;
151 argv[2], argv[3], channel, (channel <= 14) ? 'g' : 'a', hidden));
/system/media/camera/docs/
H A Dmetadata_model.py963 hidden: A boolean, True if the enum should be hidden.
964 ndk_hidden: A boolean, True if the enum should be hidden in NDK
969 id=None, deprecated=False, optional=False, hidden=False, notes=None, ndk_hidden=False):
974 self._hidden = hidden # bool
992 def hidden(self): member in class:EnumValue
1051 visibility: The visibility of this entry ('system', 'hidden', 'public')
1063 glued together at the Java layer from multiple visibiltity=hidden
1125 visibility: A string describing the visibility, eg 'system', 'hidden',

Completed in 94 milliseconds