Lines Matching refs:debugBuf

73     private static StringBuffer debugBuf;  field in TestSymmCiphersNoPad
113 if (debugBuf != null) { in main()
114 System.out.println(debugBuf.toString()); in main()
124 debugBuf = new StringBuffer(); in test()
127 debugBuf.append("Estimated output size = " + outLen + "\n"); in test()
140 debugBuf.append("Test#1:\n"); in test()
150 debugBuf.append("Test#2:\n"); in test()
151 debugBuf.append("inputBuf: " + inBuf + "\n"); in test()
152 debugBuf.append("outputBuf: " + outBuf + "\n"); in test()
158 debugBuf.append("Test#3:\n"); in test()
159 debugBuf.append("(pre) inputBuf: " + inDirectBuf + "\n"); in test()
160 debugBuf.append("(pre) outputBuf: " + outDirectBuf + "\n"); in test()
164 debugBuf.append("(post) inputBuf: " + inDirectBuf + "\n"); in test()
165 debugBuf.append("(post) outputBuf: " + outDirectBuf + "\n"); in test()
169 debugBuf.append("Test#4:\n"); in test()
172 debugBuf.append("inputBuf: " + inDirectBuf + "\n"); in test()
173 debugBuf.append("outputBuf: " + outBuf + "\n"); in test()
179 debugBuf.append("Test#5:\n"); in test()
183 debugBuf.append("(pre) inputBuf: " + inBuf + "\n"); in test()
184 debugBuf.append("(pre) outputBuf: " + outDirectBuf + "\n"); in test()
189 debugBuf.append("(post) inputBuf: " + inBuf + "\n"); in test()
190 debugBuf.append("(post) outputBuf: " + outDirectBuf + "\n"); in test()
194 debugBuf.append("Test#6: Streaming\n"); in test()
205 debugBuf.append("bytesRead: " + bytesRead); in test()
206 debugBuf.append("\toutBuf.position(): " + outBuf.position() + in test()
211 debugBuf.append("Caught Exception during stream reading\n"); in test()
216 debugBuf = null; in test()
221 debugBuf.append("got len : " + b1.length + "\n"); in match()
222 debugBuf.append("expect len: " + b2.length + "\n"); in match()
227 debugBuf.append("got : " + toString(b1) + "\n"); in match()
228 debugBuf.append("expect: " + toString(b2) + "\n"); in match()