- uint32 rawBytes = inSize + inBufSize();
- uint32 rawBlocks = (rawBytes + inBlockSize() - 1) / inBlockSize();
- rbprintf("--- RSA_CryptContext::outputSize inSize 0x%lx outSize 0x%lx mInBufSize 0x%lx",
- inSize, rawBlocks * outBlockSize(), inBufSize());
+ size_t rawBytes = inSize + inBufSize();
+ size_t rawBlocks = (rawBytes + inBlockSize() - 1) / inBlockSize();
+ rbprintf("--- RSA_CryptContext::outputSize inSize 0x%lux outSize 0x%lux mInBufSize 0x%lux",
+ (unsigned long)inSize, (unsigned long)(rawBlocks * outBlockSize()), (unsigned long)inBufSize());