Home
last modified time | relevance | path

Searched refs:EncryptionRunnerType (Results 1 – 4 of 4) sorted by relevance

/packages/services/Car/EncryptionRunner/src/android/car/encryptionrunner/
DEncryptionRunnerFactory.java32 @IntDef({EncryptionRunnerType.UKEY2, EncryptionRunnerType.OOB_UKEY2})
33 public @interface EncryptionRunnerType { annotation in EncryptionRunnerFactory
43 public static EncryptionRunner newRunner(@EncryptionRunnerType int type) { in newRunner()
45 case EncryptionRunnerType.UKEY2: in newRunner()
47 case EncryptionRunnerType.OOB_UKEY2: in newRunner()
61 return newRunner(EncryptionRunnerType.UKEY2); in newRunner()
/packages/apps/Car/libs/encryption-runner/src/android/car/encryptionrunner/
DEncryptionRunnerFactory.java32 @IntDef({EncryptionRunnerType.UKEY2})
33 public @interface EncryptionRunnerType { annotation in EncryptionRunnerFactory
41 public static EncryptionRunner newRunner(@EncryptionRunnerType int type) { in newRunner()
43 case EncryptionRunnerType.UKEY2: in newRunner()
57 return newRunner(EncryptionRunnerType.UKEY2); in newRunner()
/packages/apps/Car/libs/connected-device-lib/src/com/android/car/connecteddevice/ble/
DAssociationSecureChannel.java19 import static android.car.encryptionrunner.EncryptionRunnerFactory.EncryptionRunnerType;
62 this(stream, storage, newRunner(EncryptionRunnerType.UKEY2)); in AssociationSecureChannel()
/packages/services/Car/tests/carservice_unit_test/src/android/car/encryptionrunner/
DEncryptionRunnerTest.java110 EncryptionRunnerFactory.EncryptionRunnerType.UKEY2); in newRunner()
115 EncryptionRunnerFactory.EncryptionRunnerType.OOB_UKEY2); in newOobRunner()