Lines Matching refs:cipher
802 OpenSSLCipher cipher; in decryptAll() local
803 cipher.initialize( cipherAlgorithm, key, iv, 0 ); in decryptAll()
804 cipher.setPadding( 0 ); in decryptAll()
809 cipher.update( encryptedData, encryptedDataLength, &decryptedData[ 0 ], &decryptedDataLength ); in decryptAll()
811 cipher.final( &decryptedData[ decryptedDataLength ], &finalDataLength ); in decryptAll()
845 …const EVP_CIPHER* cipher = toOpenSSLCipherAlgorithm( passwordKeyEncryptor.cipherAlgorithm, passwor… in verifyPassword() local
847 … passwordKeyEncryptor.encryptedVerifierHashInput, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
859 … passwordKeyEncryptor.encryptedVerifierHashValue, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
870 … passwordKeyEncryptor.encryptedKeyValue, cipher, passwordKeyEncryptor.keyBits, in verifyPassword()
915 OpenSSLCipher cipher; in decryptStream() local
932 cipher.initialize( cipherAlgorithm, &encryptionKey[ 0 ], &iv[ 0 ], 0 ); in decryptStream()
933 cipher.setPadding( 0 ); in decryptStream()
938 cipher.update( inputBuffer, bytesIn, &outputBuffer[ 0 ], &bytesOut ); in decryptStream()
939 cipher.final( &outputBuffer[ bytesOut ], &finalBytesOut ); in decryptStream()