Home
last modified time | relevance | path

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

/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/crypto/
DIkeCombinedModeCipher.java87 byte[] data, byte[] additionalAuthData, byte[] keyBytes, byte[] ivBytes, int opmode) in doCipherAction() argument
104 mCipher.init(opmode, key, getParamSpec(nonceBuffer.array())); in doCipherAction()
110 if (opmode == Cipher.ENCRYPT_MODE) outputLen += mChecksumLen; in doCipherAction()
124 Cipher.ENCRYPT_MODE == opmode in doCipherAction()
DIkeNormalModeCipher.java62 private byte[] doCipherAction(byte[] data, byte[] keyBytes, byte[] ivBytes, int opmode) in doCipherAction() argument
82 mCipher.init(opmode, key, iv); in doCipherAction()
94 Cipher.ENCRYPT_MODE == opmode in doCipherAction()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttribute.java1300 private byte[] doCipherOperation(byte[] inputBytes, byte[] key, byte[] iv, int opmode) in doCipherOperation() argument
1312 cipherAlgorithm.init(opmode, secretKey, ivParam); in doCipherOperation()