Searched defs:unitBytes (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DCipherCore.java69 private int unitBytes = 0; field in class:CipherCore
131 unitBytes = blkSize;
178 unitBytes = 1;
183 unitBytes = getNumOfUnit(mode, "CFB".length(), blockSize);
184 cipher = new CipherFeedback(rawImpl, unitBytes);
188 unitBytes = getNumOfUnit(mode, "OFB".length(), blockSize);
189 cipher = new OutputFeedback(rawImpl, unitBytes);
279 if (unitBytes != blockSize) {
578 len = (len > 0 ? (len - (len%unitBytes)) : 0);
614 if (unitBytes !
[all...]

Completed in 32 milliseconds