Lines Matching refs:cipherAlgorithm
329 OUString cipherAlgorithm; member
347 OUString cipherAlgorithm; member
535 keyData.cipherAlgorithm = attribs.getString( XML_cipherAlgorithm, OUString() ); in parseKeyData()
563 passwordKeyEncryptor.cipherAlgorithm = attribs.getString( XML_cipherAlgorithm, OUString() ); in parseEncryptedKey()
795 static vector< sal_uInt8 > decryptAll( const EVP_CIPHER* cipherAlgorithm, in decryptAll() argument
803 cipher.initialize( cipherAlgorithm, key, iv, 0 ); in decryptAll()
805 const int blockSize = OpenSSLCipher::blockSize( cipherAlgorithm ); in decryptAll()
845 …const EVP_CIPHER* cipher = toOpenSSLCipherAlgorithm( passwordKeyEncryptor.cipherAlgorithm, passwor… in verifyPassword()
878 …const EVP_CIPHER* keyDataCipher = toOpenSSLCipherAlgorithm( keyData.cipherAlgorithm, keyData.keyBi… in verifyPassword()
913 …const EVP_CIPHER* cipherAlgorithm = toOpenSSLCipherAlgorithm( keyData.cipherAlgorithm, keyData.key… in decryptStream() local
920 vector< sal_uInt8 > outputBuffer( 4096 + 2*OpenSSLCipher::blockSize( cipherAlgorithm ) ); in decryptStream()
932 cipher.initialize( cipherAlgorithm, &encryptionKey[ 0 ], &iv[ 0 ], 0 ); in decryptStream()