Home
last modified time | relevance | path

Searched refs:mEncryptionKey (Results 1 – 3 of 3) sorted by relevance

/packages/services/Car/service/src/com/android/car/trust/
DCarTrustAgentUnlockService.java138 private Key mEncryptionKey; field in CarTrustAgentUnlockService
294 if (mEncryptionKey == null) { in onUnlockDataReceived()
305 mEncryptionKey.asBytes()); in onUnlockDataReceived()
309 decryptedCredentials = mEncryptionKey.decryptData(value); in onUnlockDataReceived()
334 byte[] ack = isEncrypted ? mEncryptionKey.encryptData(ACKNOWLEDGEMENT_MESSAGE) in sendAckToClient()
402 mEncryptionKey = handshakeMessage.getKey(); in processKeyExchangeHandshakeMessage()
480 mEncryptionKey = null; in resetEncryptionState()
DCarTrustAgentEnrollmentService.java144 private Key mEncryptionKey; field in CarTrustAgentEnrollmentService
590 mEncryptionKey.encryptData(Utils.longToBytes(handle)), in onEscrowTokenActiveStateChanged()
737 mEncryptionKey.decryptData(token), ActivityManager.getCurrentUser()); in notifyEscrowTokenReceived()
854 mEncryptionKey = null; in resetEncryptionState()
882 mEncryptionKey = message.getKey(); in setEnrollmentHandshakeAccepted()
884 mEncryptionKey.asBytes())) { in setEnrollmentHandshakeAccepted()
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ble/
DSecureBleChannel.java80 private final AtomicReference<Key> mEncryptionKey = new AtomicReference<>(); field in SecureBleChannel
112 mEncryptionKey.set(encryptionKey); in setEncryptionKey()
131 Key key = mEncryptionKey.get(); in encryptMessage()
197 Key key = mEncryptionKey.get(); in processMessage()