亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? cryptomanager.cpp

?? dc++(一個曾經大量使用的p2p)的源代碼,dc++,開源的p2p源代碼
?? CPP
字號:
/* 
 * Copyright (C) 2001-2003 Jacek Sieka, j_s@telia.com
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include "stdinc.h"
#include "DCPlusPlus.h"

#include "BitInputStream.h"
#include "BitOutputStream.h"
#include "File.h"

#include "CryptoManager.h"

#include "../bzip2/bzlib.h"


CryptoManager* Singleton<CryptoManager>::instance;

ZCompressor::ZCompressor(File& file, int64_t aMaxBytes /* = -1 */, int aStrength /* = Z_DEFAULT_COMPRESSION */) throw(CryptoException) : 
	state(STATE_RUNNING), inbuf(NULL), inbufLen(0), f(file), maxBytes(aMaxBytes), level(aStrength) {
	
	memset(&zs, 0, sizeof(zs));
	
	if(deflateInit(&zs, level) != Z_OK) {
		throw CryptoException(STRING(COMPRESSION_ERROR));
	}
}

u_int32_t ZCompressor::compress(void* buf, u_int32_t bufLen, u_int32_t& bytesRead) throw(CryptoException) {
	dcassert(buf);
	dcassert(bufLen > 0); 

	if(state == STATE_FINISHED) {
		return 0;
	}
	
	// We make a read buffer four times as large as the out buffer...this should be
	// enough so that we don't need to read multiple times...
	if(inbuf == NULL) {
		inbufLen = bufLen << 2;
		inbuf = new u_int8_t[inbufLen];
	}

	zs.avail_out = bufLen;
	zs.next_out = (u_int8_t*) buf;
	bytesRead = 0;

	// Check if we're compressing at all...if not; set level to 0 to just compute
	// the adler32...we want at least 5% compression, a completely arbitrary value.
	// The 64kb probe zone is also taken out of the air...
	if( (level != 0) && (zs.total_out > 64*1024) && (zs.total_out > ((u_int32_t)((float)zs.total_in*0.95))) ) {
		dcdebug("Disabling compression for 0x%x (%d/%d = %.02f)\n", this, zs.total_out, zs.total_in, ((float)zs.total_out / (float)zs.total_in));
		setStrength(0);
		if(zs.avail_out == 0)
			return bufLen;
	}
	
	while(true) {
		if( (zs.avail_in == 0) && (state == STATE_RUNNING) ) {
			u_int32_t bytes = (maxBytes == -1) ? inbufLen : (u_int32_t) min((int64_t) inbufLen, maxBytes);

			if(bytes == 0) {
				// Alright, that's it folks...
				state = STATE_FINISHING;;
			} else {
				u_int32_t readBytes = f.read(inbuf, bytes);
				bytesRead += readBytes;
				if(readBytes == 0) {
					if(maxBytes != -1 && maxBytes != 0) {
						// This is an error, we didn't read as many bytes as requested
						throw CryptoException(STRING(COMPRESSION_ERROR));
					}

					// Read all we can...
					state = STATE_FINISHING;;
				} else {
					if(maxBytes != -1) {
						maxBytes -= readBytes;
					}
					
					zs.avail_in = readBytes;
					zs.next_in = (u_int8_t*)inbuf;
				}
			}
		}
		
		if(state == STATE_RUNNING) {
			int err = ::deflate(&zs, Z_NO_FLUSH);
			if(err != Z_OK) {
				dcdebug("ZCompressor::compress Error %d while running\n", err);
				throw CryptoException(STRING(COMPRESSION_ERROR));
			}
			if(zs.avail_out == 0) {
				return bufLen;
			}
		} else {
			dcassert(state == STATE_FINISHING);
			int err = ::deflate(&zs, Z_FINISH);
			if(err == Z_OK) {
				// More bytes?
				return bufLen - zs.avail_out;
			} else if(err == Z_STREAM_END) {
				// Good, we're finished...
				state = STATE_FINISHED;
				return bufLen - zs.avail_out;
			} else {
				dcdebug("ZCompressor::compress Error %d while finishing\n", err);
				throw CryptoException(STRING(COMPRESSION_ERROR));
			}
		}
	}
}

void ZCompressor::setStrength(int str) throw(CryptoException) {
	if(level != str) {
		u_int32_t x = zs.avail_in;
		zs.avail_in = 0;
		int err = ::deflateParams(&zs, str, Z_DEFAULT_STRATEGY);
		zs.avail_in = x;
		dcassert(err != Z_BUF_ERROR);

		if(err != Z_OK) {
			throw CryptoException(STRING(COMPRESSION_ERROR));
		}
		level = str;
	}
}

ZDecompressor::ZDecompressor() throw(CryptoException) {
	memset(&zs, 0, sizeof(zs));

	if(inflateInit(&zs) != Z_OK)
		throw(CryptoException(STRING(DECOMPRESSION_ERROR)));

	outbufSize = 64*1024;
	outbuf = new u_int8_t[outbufSize];
	
}

u_int32_t ZDecompressor::decompress(const void* inbuf, int& inbytes) throw(CryptoException) {
	zs.avail_in = inbytes;
	zs.avail_out = outbufSize;
	zs.next_in = (u_int8_t*)const_cast<void*>(inbuf);
	zs.next_out = (u_int8_t*)outbuf;

	int err = inflate(&zs, Z_NO_FLUSH);

	if(err == Z_OK || err == Z_STREAM_END) {
		inbytes = zs.avail_in;
		return outbufSize - zs.avail_out;
	} else {
		dcdebug("BZ2Decompressor::compress Error %d while decompressing\n", err);
		throw CryptoException(STRING(DECOMPRESSION_ERROR));
	}
}

void CryptoManager::decodeBZ2(const u_int8_t* is, size_t sz, string& os) throw (CryptoException) {
	bz_stream bs;

	memset(&bs, 0, sizeof(bs));

	if(BZ2_bzDecompressInit(&bs, 0, 0) != BZ_OK)
		throw(CryptoException(STRING(DECOMPRESSION_ERROR)));

	// We assume that the files aren't compressed more than 4:1...if they are it'll work anyway,
	// but we'll have to do multiple passes...
	int bufsize = 4*sz;
	AutoArray<char> buf(bufsize);
	
	bs.avail_in = sz;
	bs.avail_out = bufsize;
	bs.next_in = (char*)(const_cast<u_int8_t*>(is));
	bs.next_out = buf;

	int err;

	os.clear();
	
	while((err = BZ2_bzDecompress(&bs)) == BZ_OK) { 
		if (bs.avail_in == 0 && bs.avail_out > 0) { // error: BZ_UNEXPECTED_EOF 
			BZ2_bzDecompressEnd(&bs); 
			throw CryptoException(STRING(DECOMPRESSION_ERROR)); 
		} 
		os.append(buf, bufsize-bs.avail_out); 
		bs.avail_out = bufsize; 
		bs.next_out = buf; 
	} 

	if(err == BZ_STREAM_END)
		os.append(buf, bufsize-bs.avail_out);
	
	BZ2_bzDecompressEnd(&bs);

	if(err < 0) {
		// This was a real error
		throw CryptoException(STRING(DECOMPRESSION_ERROR));	
	}
}

void CryptoManager::encodeBZ2(const string& is, string& os, int strength /* = 9 */) {
	bz_stream bs;
	
	memset(&bs, 0, sizeof(bs));

	if(BZ2_bzCompressInit(&bs, strength, 0, 30) != BZ_OK) {
		return;
	}

	// This size guarantees that the compressed data will fit (according to the bzip docs)
	int bufsize = (int)((double)is.size() * 1.01) + 600;
	
	AutoArray<char> buf(bufsize);

	bs.next_in = const_cast<char*>(is.data());
	bs.avail_in = is.size();

	bs.next_out = buf;
	bs.avail_out = bufsize;

	int err = BZ2_bzCompress ( &bs, BZ_FINISH );
	dcassert(err != BZ_FINISH);
	if(err == BZ_STREAM_END) {
		os = string(buf, bufsize-bs.avail_out);
	}

	BZ2_bzCompressEnd(&bs);

}

string CryptoManager::keySubst(const u_int8_t* aKey, int len, int n) {
	u_int8_t* temp = new u_int8_t[len + n * 10];
	
	int j=0;
	
	for(int i = 0; i<len; i++) {
		if(isExtra(aKey[i])) {
			temp[j++] = '/'; temp[j++] = '%'; temp[j++] = 'D';
			temp[j++] = 'C'; temp[j++] = 'N';
			switch(aKey[i]) {
			case 0: temp[j++] = '0'; temp[j++] = '0'; temp[j++] = '0'; break;
			case 5: temp[j++] = '0'; temp[j++] = '0'; temp[j++] = '5'; break;
			case 36: temp[j++] = '0'; temp[j++] = '3'; temp[j++] = '6'; break;
			case 96: temp[j++] = '0'; temp[j++] = '9'; temp[j++] = '6'; break;
			case 124: temp[j++] = '1'; temp[j++] = '2'; temp[j++] = '4'; break;
			case 126: temp[j++] = '1'; temp[j++] = '2'; temp[j++] = '6'; break;
			}
			temp[j++] = '%'; temp[j++] = '/';
		} else {
			temp[j++] = aKey[i];
		}
	}
	string tmp((char*)temp, j);
	delete[] temp;
	return tmp;
}

string CryptoManager::makeKey(const string& aLock) {
	if(aLock.size() < 3)
		return Util::emptyString;

    u_int8_t* temp = new u_int8_t[aLock.length()];
	u_int8_t v1;
	int extra=0;
	
	v1 = (u_int8_t)(aLock[0]^5);
	v1 = (u_int8_t)(((v1 >> 4) | (v1 << 4)) & 0xff);
	temp[0] = v1;
	
	string::size_type i;

	for(i = 1; i<aLock.length(); i++) {
		v1 = (u_int8_t)(aLock[i]^aLock[i-1]);
		v1 = (u_int8_t)(((v1 >> 4) | (v1 << 4))&0xff);
		temp[i] = v1;
		if(isExtra(temp[i]))
			extra++;
	}
	
	temp[0] = (u_int8_t)(temp[0] ^ temp[aLock.length()-1]);
	
	if(isExtra(temp[0])) {
		extra++;
	}
	
	string tmp = keySubst(temp, aLock.length(), extra);
	delete[] temp;
	return tmp;
}

void CryptoManager::decodeHuffman(const u_int8_t* is, string& os) throw(CryptoException) {
//	BitInputStream bis;
	int pos = 0;

	if(is[pos] != 'H' || is[pos+1] != 'E' || !((is[pos+2] == '3') || (is[pos+2] == '0'))) {
		throw CryptoException(STRING(DECOMPRESSION_ERROR));
	}
	pos+=5;

	int size;
	size = *(int*)&is[pos];

	pos+=4;

	dcdebug("Size: %d\n", size);
	
	short treeSize;
	treeSize = *(short*)&is[pos];

	pos+=2;

	Leaf** leaves = new Leaf*[treeSize];

	int i;
	for(i=0; i<treeSize; i++) {
		int chr =  is[pos++];
		int bits = is[pos++];
		leaves[i] = new Leaf(chr, bits);
	}

	BitInputStream bis(is, pos);

	DecNode* root = new DecNode();

	for(i=0; i<treeSize; i++) {
		DecNode* node = root;
		for(int j=0; j<leaves[i]->len; j++) {
			if(bis.get()) {
				if(node->right == NULL)
					node->right = new DecNode();

				node = node->right;
			} else {
				if(node->left == NULL)
					node->left = new DecNode();

				node = node->left;
			}
		}
		node->chr = leaves[i]->chr;
	}
	
	bis.skipToByte();
	
	// We know the size, so no need to use strange STL stuff...
	AutoArray<char> buf(size+1);

	pos = 0;
	for(i=0; i<size; i++) {
		DecNode* node = root;
		while(node->chr == -1) {
			if(bis.get()) {
				node = node->right;
			} else {
				node = node->left;
			}

			if(node == NULL) {
				for(i=0; i<treeSize; i++) {
					delete leaves[i];
				}
				
				delete[] leaves;
				delete root;

				dcdebug("Bad node found!!!\n");
				throw CryptoException(STRING(DECOMPRESSION_ERROR));
			}
		}
		buf[pos++] = (u_int8_t)node->chr;
	}
	buf[pos] = 0;
	os.assign(buf, size);

	for(i=0; i<treeSize; i++) {
		delete leaves[i];
	}
	
	delete[] leaves;
	delete root;
}

/**
 * Counts the occurances of each characters, and adds the total number of
 * different characters to the end of the array.
 */
int CryptoManager::countChars(const string& aString, int* c, u_int8_t& csum) {
	int chars = 0;
	const u_int8_t* a = (const u_int8_t*)aString.data();
	string::size_type len = aString.length();
	for(string::size_type i=0; i<len; i++) {

		if(c[a[i]] == 0)
			chars++;

		c[a[i]]++;
		csum^=a[i];
	}
	return chars;
}

void CryptoManager::walkTree(list<Node*>& aTree) {
	while(aTree.size() > 1) {
		// Merge the first two nodes
		Node* node = new Node(aTree.front(), *(++aTree.begin()));
		aTree.pop_front();
		aTree.pop_front();

		bool done = false;
		for(list<Node*>::iterator i=aTree.begin(); i != aTree.end(); ++i) {
			if(*node <= *(*i)) {
				aTree.insert(i, node);
				done = true;
				break;
			}
		}

		if(!done)
			aTree.push_back(node);

	}
}

/**
 * @todo Make more effective in terms of memory allocations and copies...
 */
void CryptoManager::recurseLookup(vector<u_int8_t>* table, Node* node, vector<u_int8_t>& u_int8_ts) {
	if(node->chr != -1) {
		table[node->chr] = u_int8_ts;
		return;
	}

	vector<u_int8_t> left = u_int8_ts;
	vector<u_int8_t> right = u_int8_ts;
	
	left.push_back(0);
	right.push_back(1);

	recurseLookup(table, node->left, left);
	recurseLookup(table, node->right, right);
}

/**
 * Builds a table over the characters available (for fast lookup).
 * Stores each character as a set of u_int8_ts with values {0, 1}.
 */
void CryptoManager::buildLookup(vector<u_int8_t>* table, Node* aRoot) {
	vector<u_int8_t> left;
	vector<u_int8_t> right;

	left.push_back(0);
	right.push_back(1);

	recurseLookup(table, aRoot->left, left);
	recurseLookup(table, aRoot->right, right);
}


class greaterNode { 
public:
	bool operator() (Node*& a, Node*& b) const { 
		return *a < *b; 
	}; 
};

/**
 * Encodes a set of data with DC's version of huffman encoding..
 * @todo Use real streams maybe? or something else than string (operator[] contains a compare, slow...)
 */
void CryptoManager::encodeHuffman(const string& is, string& os) {
	
	// We might as well expect this much data as huffman encoding doesn't go very far...
	os.reserve(is.size());
	if(is.length() == 0) {
		os.append("HE3\x0d");
		
		// Nada...
		os.append(7, 0);
		return;
	}
	// First, we count all characters
	u_int8_t csum = 0;
	int count[256];
	memset(count, 0, sizeof(count));
	int chars = countChars(is, count, csum);

	// Next, we create a set of nodes and add it to a list, removing all characters that never occur.
	
	list<Node*> nodes;

	int i;
	for(i=0; i<256; i++) {
		if(count[i] > 0) {
			nodes.push_back(new Node(i, count[i]));
		}
	}

	nodes.sort(greaterNode());
	dcdebug("\n");
#ifdef _DEBUG
	for(list<Node*>::iterator it = nodes.begin(); it != nodes.end(); ++it) dcdebug("%.02x:%d, ", (*it)->chr, (*it)->weight);
#endif
	
	walkTree(nodes);
	dcassert(nodes.size() == 1);

	Node* root = nodes.front();
	vector<u_int8_t> lookup[256];
	
	// Build a lookup table for fast character lookups
	buildLookup(lookup, root);
	delete root;

	// Reserve some memory to avoid all those copies when appending...
	os.reserve(is.size() * 3 / 4);

	os.append("HE3\x0d");
	
	// Checksum
	os.append(1, csum);
	string::size_type sz = is.size();
	os.append((char*)&sz, 4);

	// Character count
	os.append((char*)&chars, 2);

	// The characters and their bitlengths
	for(i=0; i<256; i++) {
		if(count[i] > 0) {
			os.append(1, (u_int8_t)i);
			os.append(1, (u_int8_t)lookup[i].size());
		}
	}
	
	BitOutputStream bos(os);
	// The tree itself, ie the bits of each character
	for(i=0; i<256; i++) {
		if(count[i] > 0) {
			bos.put(lookup[i]);
		}
	}
	
	dcdebug("\nu_int8_ts: %d", os.size());
	bos.skipToByte();

	for(string::size_type j=0; j<is.size(); j++) {
		dcassert(lookup[(u_int8_t)is[j]].size() != 0);
		bos.put(lookup[(u_int8_t)is[j]]);
	}
	bos.skipToByte();
}

/**
 * @file
 * $Id: CryptoManager.cpp,v 1.32 2003/05/13 11:34:07 arnetheduck Exp $
 */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本大道久久a久久精品综合| 国产精品亚洲人在线观看| 中文一区二区完整视频在线观看| 欧美一区二区视频在线观看| 在线播放欧美女士性生活| 欧美日韩色综合| 555夜色666亚洲国产免| 日韩欧美国产一区在线观看| 6080国产精品一区二区| 精品国产乱码久久久久久免费| 日韩欧美一级片| 久久综合九色综合欧美就去吻| 欧美激情自拍偷拍| 亚洲美女屁股眼交3| 一区二区三区不卡在线观看| 亚洲3atv精品一区二区三区| 欧美一级午夜免费电影| 欧美天堂亚洲电影院在线播放| 欧美日韩一区国产| 在线电影国产精品| 国产亚洲成aⅴ人片在线观看| 欧美国产视频在线| 亚洲午夜一区二区| 精品一区二区三区香蕉蜜桃| 国产成人精品免费在线| 91福利国产精品| 欧美日韩国产片| 精品免费国产一区二区三区四区| 中文字幕乱码日本亚洲一区二区| 一区二区三区91| 国内偷窥港台综合视频在线播放| 91在线无精精品入口| 欧美精品日韩一区| 久久亚洲精华国产精华液| 亚洲视频在线观看一区| 日韩经典一区二区| 成人免费黄色在线| 欧美日韩国产一级二级| 欧美国产成人在线| 日韩精品一二三四| 成人美女视频在线观看18| 欧美电影影音先锋| 国产精品护士白丝一区av| 日韩 欧美一区二区三区| 99视频在线观看一区三区| 欧美大片日本大片免费观看| 亚洲视频电影在线| 国产自产v一区二区三区c| 欧美在线|欧美| 国产精品三级视频| 美女一区二区三区| 日本韩国欧美一区| 日本一区二区三区久久久久久久久不 | 亚洲午夜日本在线观看| 激情久久久久久久久久久久久久久久| 99精品偷自拍| 久久久久国产精品免费免费搜索| 日韩高清一级片| 色国产精品一区在线观看| 国产女人18水真多18精品一级做| 捆绑调教美女网站视频一区| 欧美在线制服丝袜| 性做久久久久久久免费看| 99re视频精品| 国产精品无遮挡| 国产一区福利在线| 精品福利在线导航| 日本午夜精品视频在线观看 | 538在线一区二区精品国产| 亚洲一区二区视频在线观看| 91啪九色porn原创视频在线观看| 欧美激情一区二区三区四区| 国产精品 日产精品 欧美精品| 久久免费午夜影院| 蜜桃一区二区三区在线观看| 国产欧美精品区一区二区三区| 久久精品国内一区二区三区| 91.麻豆视频| 日日摸夜夜添夜夜添国产精品| 欧美喷水一区二区| 午夜一区二区三区在线观看| 精品视频一区二区不卡| 爽爽淫人综合网网站| 欧美精品三级日韩久久| 麻豆久久久久久久| 精品国产一区二区三区久久影院 | 日本中文字幕一区二区视频| 91精品国产综合久久香蕉的特点| 日韩国产精品91| 日韩午夜激情视频| 国产精品综合一区二区三区| 久久久影视传媒| gogo大胆日本视频一区| 亚洲精品少妇30p| 欧美色精品天天在线观看视频| 日韩电影一二三区| 久久影院电视剧免费观看| 99热在这里有精品免费| 午夜欧美视频在线观看| 91麻豆精品国产综合久久久久久 | 国产盗摄视频一区二区三区| 自拍偷拍国产亚洲| 欧美老女人第四色| 国产一区二区三区不卡在线观看| 中文字幕在线观看一区二区| 欧美日韩在线电影| 国产最新精品精品你懂的| 专区另类欧美日韩| 日韩午夜电影av| 成人午夜在线免费| 视频一区二区三区入口| 久久久www免费人成精品| 欧美在线免费播放| 国产成人小视频| 亚洲va韩国va欧美va精品| 久久久亚洲午夜电影| 欧美亚洲高清一区二区三区不卡| 韩国v欧美v亚洲v日本v| 亚洲最大成人网4388xx| 久久婷婷久久一区二区三区| 欧美日韩精品系列| 国产aⅴ综合色| 日韩高清不卡一区| 亚洲欧美一区二区三区孕妇| 久久蜜桃av一区精品变态类天堂| 91看片淫黄大片一级在线观看| 九九视频精品免费| 天天综合日日夜夜精品| 国产精品不卡视频| 久久久久国产精品人| 日韩一区二区三区三四区视频在线观看| 成人午夜视频在线观看| 国产中文字幕一区| 日产国产高清一区二区三区| 亚洲一级不卡视频| 中文字幕日韩精品一区| 国产日产欧美一区二区三区| 日韩欧美国产午夜精品| 日本韩国一区二区三区视频| www.色综合.com| 国产成人免费xxxxxxxx| 精品亚洲国产成人av制服丝袜| 亚洲大型综合色站| 亚洲天堂中文字幕| 国产精品二区一区二区aⅴ污介绍| 精品剧情v国产在线观看在线| 欧美日韩国产高清一区二区| 欧美在线视频全部完| 在线观看不卡视频| 日本大香伊一区二区三区| 91在线视频播放地址| av综合在线播放| 成人黄色软件下载| 成人网在线播放| 成人动漫一区二区在线| 97久久超碰精品国产| 91影视在线播放| 91在线云播放| 欧美三级一区二区| 7777精品伊人久久久大香线蕉超级流畅 | 欧美一级专区免费大片| 欧美美女喷水视频| 在线综合+亚洲+欧美中文字幕| 欧美乱妇23p| 欧美电影免费提供在线观看| 久久天堂av综合合色蜜桃网| 久久久午夜精品理论片中文字幕| 久久精品人人做| 中文字幕中文字幕一区| 亚洲免费观看高清| 日日夜夜免费精品视频| 美女看a上一区| 国产成人亚洲综合色影视| 99精品欧美一区二区蜜桃免费| 一本久久综合亚洲鲁鲁五月天| 欧美日韩不卡在线| 久久亚洲综合色| 亚洲精品美国一| 奇米影视一区二区三区| 国产精品一区二区不卡| 91社区在线播放| 欧美日韩国产电影| 国产女同互慰高潮91漫画| 亚洲一区二区三区在线播放| 日韩精品91亚洲二区在线观看| 国产一区高清在线| 欧美三级中文字| 欧美精品一区二区久久婷婷| 日韩码欧中文字| 青青国产91久久久久久 | 亚洲精品五月天| 青青草原综合久久大伊人精品优势| 久久99热狠狠色一区二区| 99久久精品国产麻豆演员表| 欧美日韩国产区一| 成人欧美一区二区三区黑人麻豆| 日韩成人免费在线| 99r国产精品| 精品国产乱码久久久久久久久| 亚洲最新视频在线观看|