Home | History | Annotate | Download | only in conscrypt

Lines Matching defs:modeBlockSize

495         private int modeBlockSize;
555 modeBlockSize = NativeCrypto.EVP_CIPHER_CTX_block_size(cipherCtx);
616 if (modeBlockSize == 1) {
626 int totalLen = inputLen + buffered + (finalUsed ? modeBlockSize : 0);
630 totalLen += ((totalLen % modeBlockSize != 0) || isEncrypting())
631 ? modeBlockSize : 0;
632 // The minimum multiple of {@code modeBlockSize} that can hold all the bytes.
633 return totalLen - (totalLen % modeBlockSize);