Lines Matching refs:iv
766 vector< sal_uInt8> iv( salt ); in generateIv() local
767 toBlock36( iv, blockSize ); in generateIv()
768 return iv; in generateIv()
782 vector< sal_uInt8> iv( digest.digestSize() ); in generateIv() local
783 digest.final( &iv[ 0 ], NULL ); in generateIv()
784 toBlock36( iv, blockSize ); in generateIv()
785 return iv; in generateIv()
796 const sal_uInt8* iv, in decryptAll() argument
803 cipher.initialize( cipherAlgorithm, key, iv, 0 ); in decryptAll()
829 vector< sal_uInt8> iv = generateIv( salt, blockSize ); in hashInput() local
833 …return decryptAll( decryptionAlgorithm, &iv[ 0 ], &intermediateKey[ 0 ], &zeroedInput[ 0 ], zeroed… in hashInput()
931 …vector< sal_uInt8 > iv = generateIv( digestAlgorithm, keyData.saltValue, blockBytes, keyData.block… in decryptStream() local
932 cipher.initialize( cipherAlgorithm, &encryptionKey[ 0 ], &iv[ 0 ], 0 ); in decryptStream()