Home
last modified time | relevance | path

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

/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
DCCMBlockCipher.java30 private CipherParameters keyParam; field in CCMBlockCipher
74 keyParam = param.getKey(); in init()
83 keyParam = param.getParameters(); in init()
166 if (keyParam == null) in processPacket()
179 ctrCipher.init(forEncryption, new ParametersWithIV(keyParam, iv)); in processPacket()
259 cMac.init(keyParam); in calculateMac()
DGCMBlockCipher.java34 private KeyParameter keyParam; field in GCMBlockCipher
100 keyParam = param.getKey(); in init()
109 keyParam = (KeyParameter)param.getParameters(); in init()
131 cipher.init(true, keyParam); in init()
/external/bouncycastle/src/main/java/org/bouncycastle/openssl/
DPEMUtilities.java270 KeyParameter keyParam; in getKey() local
271 keyParam = (KeyParameter) pGen.generateDerivedParameters(keyLength * 8); in getKey()
272 byte[] key = keyParam.getKey(); in getKey()