Home
last modified time | relevance | path

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

/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ble/
DSecureBleChannel.java139 HandshakeMessage handshakeMessage = mEncryptionRunner.respondToInitRequest(message); in processHandshakeUnknown() local
140 mState = handshakeMessage.getHandshakeState(); in processHandshakeUnknown()
141 sendHandshakeMessage(handshakeMessage.getNextMessage()); in processHandshakeUnknown()
161 HandshakeMessage handshakeMessage = mEncryptionRunner.continueHandshake(message); in processHandshakeInProgress() local
162 mState = handshakeMessage.getHandshakeState(); in processHandshakeInProgress()
179 String code = handshakeMessage.getVerificationCode(); in processHandshakeInProgress()
209 HandshakeMessage handshakeMessage = mEncryptionRunner.authenticateReconnection(message, in processHandshakeResumingSession() local
211 mState = handshakeMessage.getHandshakeState(); in processHandshakeResumingSession()
218 Key newKey = handshakeMessage.getKey(); in processHandshakeResumingSession()
228 sendServerAuthToClient(handshakeMessage.getNextMessage()); in processHandshakeResumingSession()
/packages/services/Car/service/src/com/android/car/trust/
DCarTrustAgentUnlockService.java432 HandshakeMessage handshakeMessage; in showVerificationCode() local
436 handshakeMessage = mEncryptionRunner.verifyPin(); in showVerificationCode()
443 if (handshakeMessage.getHandshakeState() != HandshakeMessage.HandshakeState.FINISHED) { in showVerificationCode()
445 + handshakeMessage.getHandshakeState()); in showVerificationCode()
451 mEncryptionKey = handshakeMessage.getKey(); in showVerificationCode()
/packages/apps/Car/libs/EncryptionRunner/src/android/car/encryptionrunner/
DUkey2EncryptionRunner.java144 HandshakeMessage handshakeMessage = verifyPin(); in continueHandshake() local
146 .setHandshakeState(handshakeMessage.getHandshakeState()) in continueHandshake()