Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapAkaMethodStateMachine.java507 ByteBuffer formattedChallenge = ByteBuffer.allocate(1 + randLen + 1 + autnLen); in getRandChallengeResult() local
508 formattedChallenge.put((byte) randLen); in getRandChallengeResult()
509 formattedChallenge.put(atRandAka.rand); in getRandChallengeResult()
510 formattedChallenge.put((byte) autnLen); in getRandChallengeResult()
511 formattedChallenge.put(atAutn.autn); in getRandChallengeResult()
517 formattedChallenge.array()); in getRandChallengeResult()
DEapSimAkaMethodStateMachine.java194 byte[] processUiccAuthentication(String tag, int authType, byte[] formattedChallenge) throws in processUiccAuthentication() argument
196 String base64Challenge = Base64.encodeToString(formattedChallenge, Base64.NO_WRAP); in processUiccAuthentication()
204 String msg = "UICC authentication failed. Input: " + LOG.pii(formattedChallenge); in processUiccAuthentication()