Searched refs:bytesOut (Results 1 – 1 of 1) sorted by relevance
899 int bytesOut; in decryptStream() local915 cipher.update( inputBuffer, bytesIn, &outputBuffer[ 0 ], &bytesOut ); in decryptStream()916 cipher.final( &outputBuffer[ bytesOut ], &finalBytesOut ); in decryptStream()917 bytesOut += finalBytesOut; in decryptStream()918 if( decryptedSize < (totalBytesWritten + bytesOut) ) in decryptStream()920 bytesOut = decryptedSize % sizeof( inputBuffer ); in decryptStream()923 aDecryptedPackage.writeMemory( &outputBuffer[ 0 ], bytesOut ); in decryptStream()924 totalBytesWritten += bytesOut; in decryptStream()