Home
last modified time | relevance | path

Searched refs:kAut (Results 1 – 2 of 2) sorted by relevance

/packages/modules/IPsec/src/java/com/android/internal/net/eap/
DEapSimAkaIdentityTracker.java86 private ReauthInfo(int reauthCount, byte[] mk, byte[] kEncr, byte[] kAut) { in ReauthInfo() argument
90 mKeyAut = kAut.clone(); in ReauthInfo()
100 byte[] kAut, in ReauthInfo() argument
105 mKeyAut = kAut; in ReauthInfo()
180 String reauthId, String permanentId, int count, byte[] mk, byte[] kEncr, byte[] kAut) { in registerReauthCredentials() argument
181 if (mk.length != MASTER_KEY_LENGTH || kEncr.length != KEY_LEN || kAut.length != KEY_LEN) { in registerReauthCredentials()
184 ReauthInfo reauthInfo = new ReauthInfo(count, mk, kEncr, kAut); in registerReauthCredentials()
189 LOG.d(TAG, " K_aut=" + LOG.pii(kAut)); in registerReauthCredentials()
/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/statemachine/
DEapSimAkaMethodStateMachineTest.java758 private EapSimAkaMethodStateMachine buildEapAkaStateMachineWithKAut(byte[] kAut) { in buildEapAkaStateMachineWithKAut() argument
783 System.arraycopy(kAut, 0, stateMachine.mKAut, 0, stateMachine.getKAutLength()); in buildEapAkaStateMachineWithKAut()