I Hope you expose these functions in sqlite swift API to encrypt plain text DB ``` try dbConnection.execute("ATTACH DATABASE '\(encryptedPath)' AS encrypted KEY '\(password)';") try dbConnection.execute("SELECT sqlcipher_export('encrypted');") try dbConnection.execute("DETACH DATABASE encrypted;") ```