Searched refs:ciInput (Results 1 - 8 of 8) sorted by relevance

/openjdk10/jdk/test/com/sun/crypto/provider/CICO/PBEFunc/
H A DCICO_PBE_Test.java56 private final CipherInputStream ciInput; field in class:CICO_PBE_Test
71 ciInput = new CipherInputStream(new ByteArrayInputStream(plainText),
93 return ciInput;
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AES/
H A DTestCICOWithGCM.java63 CipherInputStream ciInput = new CipherInputStream(baInput, encCipher);
69 int len = ciInput.read(buffer);
75 len = ciInput.read(buffer);
84 ciInput.close();
H A DTestCICOWithGCMAndAAD.java80 CipherInputStream ciInput = new CipherInputStream(baInput, encCipher);
86 int len = ciInput.read(buffer);
92 len = ciInput.read(buffer);
101 ciInput.close();
H A DCICO.java118 try (CipherInputStream ciInput = new CipherInputStream(baInput, ci1);
123 if (ciInput.markSupported()) {
132 int buffer0 = ciInput.read();
135 buffer0 = ciInput.read();
140 int len1 = ciInput.read(buffer1);
143 len1 = ciInput.read(buffer1);
152 len2 = ciInput.read(buffer2, offset2, buffer2.length
/openjdk10/jdk/test/com/oracle/security/ucrypto/
H A DTestCICOWithGCM.java73 CipherInputStream ciInput = new CipherInputStream(baInput, encCipher);
79 int len = ciInput.read(buffer);
85 len = ciInput.read(buffer);
94 ciInput.close();
H A DTestCICOWithGCMAndAAD.java96 CipherInputStream ciInput = new CipherInputStream(baInput, encCipher);
102 int len = ciInput.read(buffer);
108 len = ciInput.read(buffer);
117 ciInput.close();
/openjdk10/jdk/test/com/sun/crypto/provider/Cipher/AEAD/
H A DReadWriteSkip.java66 CipherInputStream ciInput; field in class:ReadWriteSkip
121 ciInput = new CipherInputStream(new ByteArrayInputStream(plaintext),
213 int len = ciInput.read(buffer);
216 len = ciInput.read(buffer);
224 int buffer = ciInput.read();
227 buffer = ciInput.read();
290 try (CipherInputStream cis = new CipherInputStream(ciInput,
H A DWrongAAD.java133 CipherInputStream ciInput = new CipherInputStream(baInput,
136 int len = ciInput.read(buffer);
140 len = ciInput.read(buffer);

Completed in 105 milliseconds