Lines Matching refs:passwordKeyEncryptor

386     AgilePasswordKeyEncryptor passwordKeyEncryptor;  member in oox::core::AgileEncryptionInfo
399 passwordKeyEncryptor( aPasswordKeyEncryptor ) in AgileEncryptionHandler()
430 AgilePasswordKeyEncryptor &passwordKeyEncryptor; member in oox::core::AgileEncryptionHandler
558 passwordKeyEncryptor.spinCount = attribs.getInteger( XML_spinCount, 0 ); in parseEncryptedKey()
559 passwordKeyEncryptor.saltSize = attribs.getInteger( XML_saltSize, 0 ); in parseEncryptedKey()
560 passwordKeyEncryptor.blockSize = attribs.getInteger( XML_blockSize, 0 ); in parseEncryptedKey()
561 passwordKeyEncryptor.keyBits = attribs.getInteger( XML_keyBits, 0 ); in parseEncryptedKey()
562 passwordKeyEncryptor.hashSize = attribs.getInteger( XML_hashSize, 0 ); in parseEncryptedKey()
563 passwordKeyEncryptor.cipherAlgorithm = attribs.getString( XML_cipherAlgorithm, OUString() ); in parseEncryptedKey()
564 passwordKeyEncryptor.cipherChaining = attribs.getString( XML_cipherChaining, OUString() ); in parseEncryptedKey()
565 passwordKeyEncryptor.hashAlgorithm = attribs.getString( XML_hashAlgorithm, OUString() ); in parseEncryptedKey()
567 if( !decodeBase64( saltValue, passwordKeyEncryptor.saltValue ) ) in parseEncryptedKey()
570 … if( !decodeBase64( encryptedVerifierHashInput, passwordKeyEncryptor.encryptedVerifierHashInput ) ) in parseEncryptedKey()
573 … if( !decodeBase64( encryptedVerifierHashValue, passwordKeyEncryptor.encryptedVerifierHashValue ) ) in parseEncryptedKey()
576 if( !decodeBase64( encryptedKeyValue, passwordKeyEncryptor.encryptedKeyValue ) ) in parseEncryptedKey()
603 …gileEncryptionHandler = new AgileEncryptionHandler( keyData, dataIntegrity, passwordKeyEncryptor ); in AgileEncryptionInfo()
840 const EVP_MD *digestAlgorithm = toOpenSSLDigestAlgorithm( passwordKeyEncryptor.hashAlgorithm ); in verifyPassword()
841 …rdHash = hashPassword( password, digestAlgorithm, passwordKeyEncryptor.saltValue, passwordKeyEncry… in verifyPassword()
845 …her = toOpenSSLCipherAlgorithm( passwordKeyEncryptor.cipherAlgorithm, passwordKeyEncryptor.keyBits… in verifyPassword()
846 …vector< sal_uInt8 > encryptedVerifierHash = hashInput( passwordHash, passwordKeyEncryptor.saltValu… in verifyPassword()
847passwordKeyEncryptor.encryptedVerifierHashInput, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
848 passwordKeyEncryptor.blockSize ); in verifyPassword()
858 …vector< sal_uInt8 > verifierHashDec = hashInput( passwordHash, passwordKeyEncryptor.saltValue, dig… in verifyPassword()
859passwordKeyEncryptor.encryptedVerifierHashValue, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
860 passwordKeyEncryptor.blockSize ); in verifyPassword()
869 …encryptionKey = hashInput( passwordHash, passwordKeyEncryptor.saltValue, digestAlgorithm, cryptoKe… in verifyPassword()
870passwordKeyEncryptor.encryptedKeyValue, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
871 passwordKeyEncryptor.blockSize ); in verifyPassword()
872 toBlock0( encryptionKey, passwordKeyEncryptor.keyBits / 8 ); in verifyPassword()