Lines Matching refs:vector

50 using ::std::vector;
93 vector< sal_uInt8> encryptionKey;
209 vector< sal_uInt8 > key( mnKeySize / 8 ); in verifyPassword()
242 encryptionKey = vector< sal_uInt8 >( &pnKey[ 0 ], &pnKey[ nKeySize ] ); in verifyEncryptionData()
332 vector< sal_uInt8 > saltValue;
337 vector< sal_uInt8 > encryptedHmacKey;
338 vector< sal_uInt8 > encryptedHmacValue;
350 vector< sal_uInt8 > saltValue;
352 vector< sal_uInt8 > encryptedVerifierHashInput;
353 vector< sal_uInt8 > encryptedVerifierHashValue;
354 vector< sal_uInt8 > encryptedKeyValue;
357 static bool decodeBase64( OUString& base64, vector< sal_uInt8 >& bytes ) in decodeBase64()
387 vector< sal_uInt8> encryptionKey;
388 vector< sal_uInt8> hmacKey;
389 vector< sal_uInt8> hmacValue;
426 vector< sal_Int32 > stack;
688 static vector< sal_uInt8 > hashPassword( const OUString& password, const EVP_MD *digestAlgorithm, v… in hashPassword()
695 vector< sal_uInt8 > passwordLE( 2 * password.getLength() ); in hashPassword()
699 vector< sal_uInt8> digestBuffer( digestSize ); in hashPassword()
717 static void toBlock36( vector< sal_uInt8 >& digest, sal_uInt32 size ) in toBlock36()
731 static void toBlock0( vector< sal_uInt8 >& digest, sal_uInt32 size ) in toBlock0()
745 static vector< sal_uInt8 > generateKey( const vector< sal_uInt8 >& passwordHash, in generateKey()
747 const vector< sal_uInt8 >& blockKey, in generateKey()
755 vector< sal_uInt8> key( digest.digestSize() ); in generateKey()
762 static vector< sal_uInt8> generateIv( const vector< sal_uInt8 >& salt, in generateIv()
766 vector< sal_uInt8> iv( salt ); in generateIv()
772 static vector< sal_uInt8> generateIv( const EVP_MD *digestAlgorithm, in generateIv()
773 const vector< sal_uInt8 >& salt, in generateIv()
774 const vector< sal_uInt8 >& blockKey, in generateIv()
782 vector< sal_uInt8> iv( digest.digestSize() ); in generateIv()
795 static vector< sal_uInt8 > decryptAll( const EVP_CIPHER* cipherAlgorithm, in decryptAll()
806 vector< sal_uInt8 > decryptedData( encryptedDataLength + 2*blockSize ); in decryptAll()
818 static vector< sal_uInt8 > hashInput( const vector< sal_uInt8 >& passwordHash, in hashInput()
819 const vector< sal_uInt8 >& salt, in hashInput()
821 const vector< sal_uInt8 >& blockKey, in hashInput()
822 const vector< sal_uInt8 >& inputKey, in hashInput()
828vector< sal_uInt8 > intermediateKey = generateKey( passwordHash, digestAlgorithm, blockKey, keySiz… in hashInput()
829 vector< sal_uInt8> iv = generateIv( salt, blockSize ); in hashInput()
830 vector< sal_uInt8 > zeroedInput( inputKey.size() ); in hashInput()
841vector< sal_uInt8 > passwordHash = hashPassword( password, digestAlgorithm, passwordKeyEncryptor.s… in verifyPassword()
844vector< sal_uInt8 > verifierInputBlock( &verifierInputBlockData[ 0 ], &verifierInputBlockData[ siz… in verifyPassword()
846vector< sal_uInt8 > encryptedVerifierHash = hashInput( passwordHash, passwordKeyEncryptor.saltValu… in verifyPassword()
857vector< sal_uInt8 > verifierHashBlock( &verifierHashBlockData[ 0 ], &verifierHashBlockData[ sizeof… in verifyPassword()
858vector< sal_uInt8 > verifierHashDec = hashInput( passwordHash, passwordKeyEncryptor.saltValue, dig… in verifyPassword()
868vector< sal_uInt8 > cryptoKeyBlock( &cryptoKeyBlockData[ 0 ], &cryptoKeyBlockData[ sizeof( cryptoK… in verifyPassword()
880vector< sal_uInt8 > integrityKeyBlock( &integrityKeyBlockData[ 0 ], &integrityKeyBlockData[ sizeof… in verifyPassword()
881vector< sal_uInt8 > integrityKeyIv = generateIv( keyDataDigestAlgorithm, keyData.saltValue, integr… in verifyPassword()
886vector< sal_uInt8 > integrityValueBlock( &integrityValueBlockData[ 0 ], &integrityValueBlockData[ … in verifyPassword()
887vector< sal_uInt8 > integrityValueIv = generateIv( keyDataDigestAlgorithm, keyData.saltValue, inte… in verifyPassword()
920 vector< sal_uInt8 > outputBuffer( 4096 + 2*OpenSSLCipher::blockSize( cipherAlgorithm ) ); in decryptStream()
926 vector< sal_uInt8 > blockBytes( 4 ); in decryptStream()
931vector< sal_uInt8 > iv = generateIv( digestAlgorithm, keyData.saltValue, blockBytes, keyData.block… in decryptStream()