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

/openjdk9/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/
H A DP11RSACipher.java102 private int maxInputSize; field in class:P11RSACipher
235 maxInputSize = ((padType == PAD_PKCS1 && encrypt) ?
259 int inLen = maxInputSize;
271 byte[] tmpBuffer = new byte[maxInputSize];
329 if (bufOfs + inLen > maxInputSize) {
330 bufOfs = maxInputSize + 1;
339 if (bufOfs > maxInputSize) {
341 + "than " + maxInputSize + " bytes");
480 if (wrappedKey.length > maxInputSize) {

Completed in 110 milliseconds