Searched refs:dCipher (Results 1 - 2 of 2) sorted by relevance
/openjdk7/hotspot/test/compiler/7184394/ |
H A D | TestAESDecode.java | 35 if (!noReinit) dCipher.init(Cipher.DECRYPT_MODE, key, algParams); 38 decode = dCipher.doFinal(encode, 0, encode.length); 42 decode = new byte[dCipher.getOutputSize(encode.length)]; 43 dCipher.doFinal(encode, 0, encode.length, decode); 54 showCipher(dCipher, "Decryption");
|
H A D | TestAESBase.java | 53 Cipher dCipher; field in class:TestAESBase 90 dCipher = Cipher.getInstance(algorithm + "/" + mode + "/" + paddingStr, "SunJCE"); 101 dCipher.init(Cipher.DECRYPT_MODE, key, algParams); 109 decode = dCipher.doFinal(encode);
|
Completed in 502 milliseconds