/packages/modules/AdServices/adservices/libraries/cobalt/proto/ |
D | encrypted_message.proto | 29 // An EncryptedMessage carries the encrypted bytes of another proto message, 30 // along with information about how it is encrypted. 32 // Observations collected via Cobalt are doubly encrypted. First each individual 33 // message is encrypted to the Analyzer that will process it. Second each 34 // Envelope containing many observations is encrypted to the Shuffler. We use 41 // The message is not encrypted. |ciphertext| contains plaintext bytes of a 73 // All other encrypted messages should not receive a |contribution_id|. 75 // Once an observation is encrypted and assigned a |contribution_id| it
|
D | unencrypted_observation_store.proto | 27 // Unlike the ObservationBatch message, the Observations are not yet encrypted. 32 // Data for Observations that have not yet been encrypted. 38 // EncryptedMessage that contains a serialized and encrypted Observation. 41 // encrypted.
|
D | observation_batch.proto | 65 // A batch of encrypted Observations with common metadata. 66 // The Observations are encrypted to the public key of an Analyzer so the 79 // The common Metadata for all of the encrypted observations in this batch. 83 // been encrypted to the public key of the Analyzer.
|
D | envelope.proto | 31 // An envelope contains multiple ObservationBatches. An encrypted Envelope
|
/packages/modules/adb/pairing_auth/tests/ |
D | aes_128_gcm_test.cpp | 41 uint8_t encrypted[1024]; in TEST() local 50 auto encrypted_size = alice.Encrypt(msg, sizeof(msg), encrypted, sizeof(encrypted)); in TEST() 55 auto decrypted_size = bob.Decrypt(encrypted, *encrypted_size, out_buf, out_size); in TEST()
|
/packages/modules/OnDevicePersonalization/src/com/android/libraries/pcc/chronicle/analysis/ |
D | Utils.kt | 59 if (a.encrypted != b.encrypted) { in compare() 60 if (a.encrypted) return -1 in compare()
|
/packages/modules/adb/pairing_auth/ |
D | pairing_auth.cpp | 171 Data encrypted(cipher_->EncryptedSize(data.size())); in Encrypt() local 172 auto out_size = cipher_->Encrypt(data.data(), data.size(), encrypted.data(), encrypted.size()); in Encrypt() 177 encrypted.resize(*out_size); in Encrypt() 179 return encrypted; in Encrypt()
|
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_scan/ |
D | PeriodicScanNativeInterface.java | 126 void onBigInfoReport(int syncHandle, boolean encrypted) throws Exception { in onBigInfoReport() argument 129 "onBigInfoReport():" + (" syncHandle=" + syncHandle) + (" encrypted=" + encrypted)); in onBigInfoReport() 130 mManager.onBigInfoReport(syncHandle, encrypted); in onBigInfoReport()
|
D | PeriodicScanManager.java | 218 void onBigInfoReport(int syncHandle, boolean encrypted) throws Exception { in onBigInfoReport() argument 225 callback.onBigInfoAdvertisingReport(syncHandle, encrypted); in onBigInfoReport()
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/testutils/shadow/ |
D | ShadowStorageManager.java | 89 public static void setIsFileEncrypted(boolean encrypted) { in setIsFileEncrypted() argument 90 sIsFileEncrypted = encrypted; in setIsFileEncrypted()
|
/packages/modules/Virtualization/guest/encryptedstore/ |
D | README.md | 5 Any data written in encrypted storage is persisted and is available next time the VM is run. 14 the filesystem is also encrypted.
|
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/ |
D | PacketUtils.java | 402 byte[] encrypted = cipher.doFinal(getByteArrayFromBuffer(paddedPayload)); in getCiphertext() 405 ByteBuffer cipherText = ByteBuffer.allocate(AES_CBC_IV_LEN + encrypted.length); in getCiphertext() 407 cipherText.put(encrypted); in getCiphertext()
|
/packages/modules/Bluetooth/framework/java/android/bluetooth/le/ |
D | PeriodicAdvertisingManager.java | 299 public void onBigInfoAdvertisingReport(int syncHandle, boolean encrypted) { in wrap() argument 300 handler.post(() -> callback.onBigInfoAdvertisingReport(syncHandle, encrypted)); in wrap()
|
D | PeriodicAdvertisingCallback.java | 86 public void onBigInfoAdvertisingReport(int syncHandle, boolean encrypted) {} in onBigInfoAdvertisingReport() argument
|
/packages/modules/AdServices/adservices/service-core/jni/cpp/ |
D | ohttp_jni.cpp | 369 std::vector<uint8_t> encrypted(env->GetArrayLength(plaintextArray) + in Java_com_android_adservices_ohttp_OhttpJniWrapper_hpkeCtxSeal() local 373 /* out= */ encrypted.data(), in Java_com_android_adservices_ohttp_OhttpJniWrapper_hpkeCtxSeal() 375 /* max_out_len= */ encrypted.size(), in Java_com_android_adservices_ohttp_OhttpJniWrapper_hpkeCtxSeal() 396 reinterpret_cast<const jbyte *>(encrypted.data())); in Java_com_android_adservices_ohttp_OhttpJniWrapper_hpkeCtxSeal()
|
/packages/modules/Bluetooth/android/app/aidl/android/bluetooth/le/ |
D | IPeriodicAdvertisingCallback.aidl | 32 void onBigInfoAdvertisingReport(in int syncHandle, in boolean encrypted); in onBigInfoAdvertisingReport() argument
|
/packages/modules/OnDevicePersonalization/src/com/android/libraries/pcc/chronicle/api/ |
D | ManagementStrategy.kt | 37 val encrypted: Boolean, constant in com.android.libraries.pcc.chronicle.api.ManagementStrategy.Stored
|
/packages/modules/OnDevicePersonalization/src/com/android/libraries/pcc/chronicle/analysis/impl/ |
D | Annotations.kt | 37 if (encrypted) result.add(ANNOTATION_ENCRYPTED) in toAnnotation()
|
/packages/modules/Bluetooth/system/stack/gatt/ |
D | gatt_auth.cc | 356 bool encrypted = BTM_IsEncrypted(tcb.peer_bda, tcb.transport); in gatt_get_link_encrypt_status() local 360 if (encrypted && link_key_known) { in gatt_get_link_encrypt_status()
|
/packages/modules/Virtualization/guest/pvmfw/src/ |
D | instance.rs | 148 let encrypted = aead_ctx.seal(plaintext, /* nonce */ &[], /* ad */ &[], &mut blk)?; in record_instance_entry() localVariable 149 let payload_size = encrypted.len(); in record_instance_entry()
|
/packages/modules/Bluetooth/android/app/proto/ |
D | keystore.proto | 22 // Holds encrypted, authenticated data.
|
/packages/modules/Connectivity/tests/cts/net/src/android/net/cts/ |
D | PacketUtils.java | 610 final byte[] encrypted = in getCipherText() 614 final ByteBuffer cipherText = ByteBuffer.allocate(mIv.length + encrypted.length); in getCipherText() 616 cipherText.put(encrypted); in getCipherText()
|
/packages/modules/Virtualization/libs/framework-virtualization/ |
D | README.md | 126 - How much encrypted storage the VM has. 326 When configuring a VM you can specify that it should have access to an encrypted 339 directory. The data is encrypted using a key derived from the VM secret, which 359 hold the VM's state (its instance data, configuration, and encrypted storage). 369 and has access to a copy of the original's encrypted storage.
|
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | NetworkListStoreDataTest.java | 1176 String encrypted) throws Exception { in verifySerializeSharedConfigurationsEncrypted() argument 1183 Pattern EncryptPattern = Pattern.compile(encrypted, Pattern.MULTILINE); in verifySerializeSharedConfigurationsEncrypted() 1184 assertTrue("Serialized data " + actual + " did not contain encryption with " + encrypted, in verifySerializeSharedConfigurationsEncrypted()
|
/packages/modules/Bluetooth/system/gd/hci/ |
D | le_scanning_callback.h | 82 virtual void OnBigInfoReport(uint16_t sync_handle, bool encrypted) = 0;
|