Home
last modified time | relevance | path

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

/packages/modules/RemoteKeyProvisioning/app/tests/unit/src/com/android/rkpdapp/unittest/
DCborUtilsTest.java196 assertArrayEquals(mEncodedmGeekChain1, resp.getGeekChain(CborUtils.EC_CURVE_25519)); in testParseGeekResponseFakeData()
197 assertArrayEquals(mEncodedGeekChain2, resp.getGeekChain(CborUtils.EC_CURVE_P256)); in testParseGeekResponseFakeData()
253 assertArrayEquals(mEncodedmGeekChain1, resp.getGeekChain(CborUtils.EC_CURVE_25519)); in testExtraDeviceConfigEntriesDontFail()
254 assertArrayEquals(mEncodedGeekChain2, resp.getGeekChain(CborUtils.EC_CURVE_P256)); in testExtraDeviceConfigEntriesDontFail()
280 assertArrayEquals(mEncodedmGeekChain1, resp.getGeekChain(CborUtils.EC_CURVE_25519)); in testMissingDeviceConfigDoesntFail()
281 assertArrayEquals(mEncodedGeekChain2, resp.getGeekChain(CborUtils.EC_CURVE_P256)); in testMissingDeviceConfigDoesntFail()
311 assertArrayEquals(mEncodedmGeekChain1, resp.getGeekChain(CborUtils.EC_CURVE_25519)); in testMissingDeviceConfigEntriesDoesntFail()
312 assertArrayEquals(mEncodedGeekChain2, resp.getGeekChain(CborUtils.EC_CURVE_P256)); in testMissingDeviceConfigEntriesDoesntFail()
DServerInterfaceTest.java102 assertThat(response.getGeekChain(2)).isNotNull(); in testFetchGeekRkpDisabled()
145 assertThat(response.getGeekChain(CborUtils.EC_CURVE_25519)).isEqualTo(ed25519GeekChain); in testFetchGeekRkpEnabled()
146 assertThat(response.getGeekChain(CborUtils.EC_CURVE_P256)).isEqualTo(p256GeekChain); in testFetchGeekRkpEnabled()
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/
DGeekResponse.java84 public byte[] getGeekChain(int curve) { in getGeekChain() method in GeekResponse
/packages/modules/RemoteKeyProvisioning/app/src/com/android/rkpdapp/interfaces/
DSystemInterface.java123 byte[] geekChain = geekResponse.getGeekChain(mSupportedCurve); in generateCsr()