Searched refs:outputText (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jdk/test/com/sun/crypto/provider/CICO/PBEFunc/
H A DCICO_PBE_SKIP_Test.java74 private final byte[] outputText; field in class:CICO_PBE_SKIP_Test
84 outputText = new byte[NUMBER_OF_BLOCKS * SAVE];
95 int len1 = ciIn2.read(outputText, index, SAVE);
101 len2 = ciIn2.read(outputText, index, SAVE - len1);
124 outputText[index] = (byte) buffer0;
162 if (!TestUtilities.equalsBlockPartial(plainText, outputText, BLOCK, SAVE)) {
163 throw new RuntimeException("outputText not same with expectedText"
/openjdk9/jdk/test/com/sun/crypto/provider/Cipher/PBE/PBESameBuffer/
H A DAESPBEWrapper.java97 byte[] outputText = ci.doFinal(inputText, offset, len);
105 return equalsBlock(inputText, myoff, outputText, 0,
106 outputText.length);
H A DPBECipherWrapper.java89 byte[] outputText = ci.doFinal(inputText, offset, len);
99 boolean result = equalsBlock(inputText, myoff, outputText, 0,
100 outputText.length);
H A DPBKDF2Wrapper.java95 byte[] outputText = ci.doFinal(inputText, offset, len);
103 return equalsBlock(inputText, myoff, outputText, 0,
104 outputText.length);
/openjdk9/jdk/test/com/sun/crypto/provider/CICO/
H A DCICOSkipTest.java133 byte[] outputText = new byte[numOfBlocks * SAVE];
136 index = whichRead.readByte(ciInput2, outputText, SAVE, index);
149 .equalsBlockPartial(plainText, outputText, BLOCK, SAVE)) {
228 int readByte(CipherInputStream ciIn2, byte[] outputText, int save,
233 outputText[index] = (byte) buffer0;
244 int readByte(CipherInputStream ciIn2, byte[] outputText, int save,
246 int len1 = ciIn2.read(outputText, index, save);
252 len2 = ciIn2.read(outputText, index, save - len1);
261 abstract int readByte(CipherInputStream ciIn2, byte[] outputText, int save, argument
/openjdk9/jdk/test/com/sun/crypto/provider/Cipher/AEAD/
H A DReadWriteSkip.java254 private final byte[] outputText; field in class:ReadWriteSkip.SkipTest
260 outputText = new byte[numberOfBlocks * SAVE];
266 int len = cis.read(outputText, index, SAVE);
270 read = cis.read(outputText, index, SAVE - len);
279 for (int j = 0; j < SAVE && i < outputText.length; j++, i++) {
282 outputText[i] = (byte) b;
314 check(expectedText, outputText);
H A DSameBuffer.java245 byte[] outputText = cipher.doFinal(text, txtOffset, lenght);
257 if (!isEqual(text, myoff, outputText, 0, outputText.length)) {
274 byte[] outputText = cipher.doFinal(array, txtOffset, length);
286 if (!isEqual(array, txtOffset, outputText, 0,
287 outputText.length)) {

Completed in 102 milliseconds