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

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

?? cipherserver.c

?? 一個加密庫代碼
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
 * Copyright 1997-2005 Markus Hahn 
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); 
 * you may not use this file except in compliance with the License. 
 * You may obtain a copy of the License at 
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "CipherServer.h"
#include "cpkernel.h"
#include "Yarrow.h"

#include "AES.h"
#include "Blowfish.h"
#include "cast.h"
#include "arcfour.h"
#include "Serpent.h"
#include "TMS.h"
#include "TripleDES.h"
#include "Twofish.h"

#include <stdlib.h>
#include <string.h>
#include <memory.h>

// fixed key length (i.n.) for extended selftest
#define FIXKEYLEN   16

//////////////////////////////////////////////////////////////////////////////

struct CIPHERCTX
{
	// function addresses
	Cipher_GetCipherInfo*         pGetCipherInfo;
	Cipher_SelfTest*              pSelfTest;
	Cipher_CreateWorkContext*     pCreateWorkContext;
	Cipher_ResetWorkContext*      pResetWorkContext;
	Cipher_DestroyWorkContext*    pDestroyWorkContext;
	Cipher_EncryptBuffer*         pEncryptBuffer;
	Cipher_DecryptBuffer*         pDecryptBuffer;

	//  cipher information
	CIPHERINFOBLOCK infoblock;

	// function reference for random number generation
	Cipher_RandomGenerator* pRandomGenerator;

	// data reference for the random generator
	const void* pRndGenData;

	// to check if the internal random generator is used
	BYTEBOOL blUseInternalRndGen;
};

//////////////////////////////////////////////////////////////////////////////

struct CIPHERSESSION
{
	// crypt mode, see CIPHERSERVER_MODE_xxx constants
	WORD32 lCryptMode;

	// pointer to a cipher context
	PCIPHERCTX pCipherContext;

	// pointer to an algorithm's runtime memory area
	void* pWorkContext;
};

//////////////////////////////////////////////////////////////////////////////

// lookup table to fetch the function addresses

typedef struct
{
	char* szName;
	Cipher_GetCipherInfo*       pGetCipherInfo;
	Cipher_SelfTest*            pSelfTest;
	Cipher_CreateWorkContext*   pCreateWorkContext;
	Cipher_ResetWorkContext*    pResetWorkContext;
	Cipher_DestroyWorkContext*  pDestroyWorkContext;
	Cipher_EncryptBuffer*       pEncryptBuffer;
	Cipher_DecryptBuffer*       pDecryptBuffer;
}
CIPHERLOOKUP;

//////////////////////////////////////////////////////////////////////////////

#define NUM_OF_CIPHERS  7

CIPHERLOOKUP cipherFaces[NUM_OF_CIPHERS] = {

	{       TMS_CIPHERNAME,       TMS_GetCipherInfo,       TMS_SelfTest,       TMS_CreateWorkContext,       TMS_ResetWorkContext,       TMS_DestroyWorkContext,       TMS_EncryptBuffer,       TMS_DecryptBuffer },
	{  BLOWFISH_CIPHERNAME,  Blowfish_GetCipherInfo,  Blowfish_SelfTest,  Blowfish_CreateWorkContext,  Blowfish_ResetWorkContext,  Blowfish_DestroyWorkContext,  Blowfish_EncryptBuffer,  Blowfish_DecryptBuffer },
	{      CAST_CIPHERNAME,      CAST_GetCipherInfo,      CAST_SelfTest,      CAST_CreateWorkContext,      CAST_ResetWorkContext,      CAST_DestroyWorkContext,      CAST_EncryptBuffer,      CAST_DecryptBuffer },
	{   ARCFOUR_CIPHERNAME,   ARCFOUR_GetCipherInfo,   ARCFOUR_SelfTest,   ARCFOUR_CreateWorkContext,   ARCFOUR_ResetWorkContext,   ARCFOUR_DestroyWorkContext,   ARCFOUR_EncryptBuffer,   ARCFOUR_DecryptBuffer },
	{   SERPENT_CIPHERNAME,   Serpent_GetCipherInfo,   Serpent_SelfTest,   Serpent_CreateWorkContext,   Serpent_ResetWorkContext,   Serpent_DestroyWorkContext,   Serpent_EncryptBuffer,   Serpent_DecryptBuffer },
	{       AES_CIPHERNAME,       AES_GetCipherInfo,       AES_SelfTest,       AES_CreateWorkContext,       AES_ResetWorkContext,       AES_DestroyWorkContext,       AES_EncryptBuffer,       AES_DecryptBuffer },
	{ TRIPLEDES_CIPHERNAME, TripleDES_GetCipherInfo, TripleDES_SelfTest, TripleDES_CreateWorkContext, TripleDES_ResetWorkContext, TripleDES_DestroyWorkContext, TripleDES_EncryptBuffer, TripleDES_DecryptBuffer },
	//{   TWOFISH_CIPHERNAME,   Twofish_GetCipherInfo,   Twofish_SelfTest,   Twofish_CreateWorkContext,   Twofish_ResetWorkContext,   Twofish_DestroyWorkContext,   Twofish_EncryptBuffer,   Twofish_DecryptBuffer }
};
//////////////////////////////////////////////////////////////////////////////

// simple table storing the cipher names
char* cipherNames[NUM_OF_CIPHERS] =
{
	TMS_CIPHERNAME,
	BLOWFISH_CIPHERNAME,
	CAST_CIPHERNAME,
	ARCFOUR_CIPHERNAME,
	SERPENT_CIPHERNAME,
	AES_CIPHERNAME,
	TRIPLEDES_CIPHERNAME,
	//TWOFISH_CIPHERNAME
};
//
//#define NUM_OF_CIPHERS  2
//
//CIPHERLOOKUP cipherFaces[NUM_OF_CIPHERS] = {
//
//   // {       TMS_CIPHERNAME,       TMS_GetCipherInfo,       TMS_SelfTest,       TMS_CreateWorkContext,       TMS_ResetWorkContext,       TMS_DestroyWorkContext,       TMS_EncryptBuffer,       TMS_DecryptBuffer },
//    {  BLOWFISH_CIPHERNAME,  Blowfish_GetCipherInfo,  Blowfish_SelfTest,  Blowfish_CreateWorkContext,  Blowfish_ResetWorkContext,  Blowfish_DestroyWorkContext,  Blowfish_EncryptBuffer,  Blowfish_DecryptBuffer },
//    //{      CAST_CIPHERNAME,      CAST_GetCipherInfo,      CAST_SelfTest,      CAST_CreateWorkContext,      CAST_ResetWorkContext,      CAST_DestroyWorkContext,      CAST_EncryptBuffer,      CAST_DecryptBuffer },
//    //{   ARCFOUR_CIPHERNAME,   ARCFOUR_GetCipherInfo,   ARCFOUR_SelfTest,   ARCFOUR_CreateWorkContext,   ARCFOUR_ResetWorkContext,   ARCFOUR_DestroyWorkContext,   ARCFOUR_EncryptBuffer,   ARCFOUR_DecryptBuffer },
//    //{   SERPENT_CIPHERNAME,   Serpent_GetCipherInfo,   Serpent_SelfTest,   Serpent_CreateWorkContext,   Serpent_ResetWorkContext,   Serpent_DestroyWorkContext,   Serpent_EncryptBuffer,   Serpent_DecryptBuffer },
//    {       AES_CIPHERNAME,       AES_GetCipherInfo,       AES_SelfTest,       AES_CreateWorkContext,       AES_ResetWorkContext,       AES_DestroyWorkContext,       AES_EncryptBuffer,       AES_DecryptBuffer },
//   // { TRIPLEDES_CIPHERNAME, TripleDES_GetCipherInfo, TripleDES_SelfTest, TripleDES_CreateWorkContext, TripleDES_ResetWorkContext, TripleDES_DestroyWorkContext, TripleDES_EncryptBuffer, TripleDES_DecryptBuffer },
//   // {   TWOFISH_CIPHERNAME,   Twofish_GetCipherInfo,   Twofish_SelfTest,   Twofish_CreateWorkContext,   Twofish_ResetWorkContext,   Twofish_DestroyWorkContext,   Twofish_EncryptBuffer,   Twofish_DecryptBuffer }
//};
////////////////////////////////////////////////////////////////////////////////
//
//// simple table storing the cipher names
//char* cipherNames[NUM_OF_CIPHERS] =
//{
//   // TMS_CIPHERNAME,
//    BLOWFISH_CIPHERNAME,
//   // CAST_CIPHERNAME,
//  //  ARCFOUR_CIPHERNAME,
//  //  SERPENT_CIPHERNAME,
//    AES_CIPHERNAME,
//  //  TRIPLEDES_CIPHERNAME,
//  //  TWOFISH_CIPHERNAME
//};


//////////////////////////////////////////////////////////////////////////////

WORD32 CRYPTPAK_API CipherServer_GetCipherNames
(char*** pszList)
{
	*pszList = cipherNames;
	return NUM_OF_CIPHERS;
}

//////////////////////////////////////////////////////////////////////////////

WORD32 CRYPTPAK_API CipherServer_GetCipherInfo
(const char* pCipherName,
 CIPHERINFOBLOCK* pInfoBlock)
{
	Cipher_GetCipherInfo* pGetCipherInfo = NULL;
	int nI;

	// get the selftest function address
	for (nI = 0; nI < NUM_OF_CIPHERS; nI++)
	{
		if (strcmp(cipherFaces[nI].szName, pCipherName) == 0)
		{
			pGetCipherInfo = cipherFaces[nI].pGetCipherInfo;
			break;
		}
	}

	if (pGetCipherInfo == NULL) {
		return CIPHERSERVER_ERROR_CIPHERNOTFOUND;
	}

	// prepare the information block
	pInfoBlock->lSizeOf = sizeof(CIPHERINFOBLOCK);

	// call the retrieved function to get the information block
	switch ((*pGetCipherInfo)(pInfoBlock))
	{
	case CIPHER_ERROR_NOERROR :
		return CIPHERSERVER_ERROR_NOERROR;
	case CIPHER_ERROR_INVALID :
		return CIPHERSERVER_ERROR_INVALIDCIPHER;
	default:
		// unknown return value
		return CIPHERSERVER_ERROR_ERROR;
	}
}

//////////////////////////////////////////////////////////////////////////////

// internal random generator
void CRYPTPAK_CALLCONV _internalRandomGenerator
(WORD8* pTargetBuffer,
 WORD32 lNumOfRandomBytes,
 const void* pData)
{
	// just map the call
	Yarrow_GetData((PYARROWCTX) pData, pTargetBuffer, lNumOfRandomBytes);
}

//////////////////////////////////////////////////////////////////////////////

WORD32 CRYPTPAK_API CipherServer_Create
(const char* pCipherName,
 PCIPHERCTX* pCtxPtr,
 Cipher_RandomGenerator* pRandGenFunc,
 const void* pRandGenData,
 const void* pRandSeed,
 WORD32 lRandSeedLen)
{
	PCIPHERCTX pNewCtx;
	WORD32 lRetCode;
	PYARROWCTX pYrwCtx;
	int nI;

	// create a new cipher context
#ifdef KERNEL_COMPILE
	pNewCtx = ( PCIPHERCTX )ExAllocatePool( NonPagedPool, sizeof(CIPHERCTX)  );
#else
	pNewCtx = (PCIPHERCTX) malloc(sizeof(CIPHERCTX));
#endif
	if (pNewCtx == NULL)
		return CIPHERSERVER_ERROR_OUTOFMEMORY;

	// get the function addresses
	nI = 0;
	while (nI < NUM_OF_CIPHERS)
	{
		if (strcmp(cipherFaces[nI].szName, pCipherName) == 0)
			break;
		nI++;
	}
	if (nI == NUM_OF_CIPHERS)
	{
		return CIPHERSERVER_ERROR_CIPHERNOTFOUND;
	}

	pNewCtx->pGetCipherInfo      = cipherFaces[nI].pGetCipherInfo;
	pNewCtx->pSelfTest           = cipherFaces[nI].pSelfTest;
	pNewCtx->pCreateWorkContext  = cipherFaces[nI].pCreateWorkContext;
	pNewCtx->pResetWorkContext   = cipherFaces[nI].pResetWorkContext;
	pNewCtx->pDestroyWorkContext = cipherFaces[nI].pDestroyWorkContext;
	pNewCtx->pEncryptBuffer      = cipherFaces[nI].pEncryptBuffer;
	pNewCtx->pDecryptBuffer      = cipherFaces[nI].pDecryptBuffer;

	// call the info function to get the information block
	pNewCtx->infoblock.lSizeOf = sizeof(CIPHERINFOBLOCK);
	switch ((*pNewCtx->pGetCipherInfo)(&pNewCtx->infoblock))
	{
	case CIPHER_ERROR_NOERROR :
		lRetCode = CIPHERSERVER_ERROR_NOERROR;
		break;
	case CIPHER_ERROR_INVALID :
		lRetCode = CIPHERSERVER_ERROR_INVALIDCIPHER;
		break;
	default:
		// unknown return value
		lRetCode = CIPHERSERVER_ERROR_ERROR;
	}
	if (lRetCode != CIPHERSERVER_ERROR_NOERROR)
	{
#ifdef KERNEL_COMPILE
		ExFreePool( pNewCtx );
#else
		free(pNewCtx);
#endif
		return lRetCode;
	}

	// must we create our own random generator?
	if (pRandGenFunc == CIPHER_NULL)
	{
		// create a random context
		pYrwCtx = Yarrow_Create(pRandSeed, lRandSeedLen);
		if (pYrwCtx == NULL)
		{
#ifdef KERNEL_COMPILE
			ExFreePool( pNewCtx );
#else
			free(pNewCtx);
#endif
			return CIPHERSERVER_ERROR_OUTOFMEMORY;
		}

		// store the context pointer
		pNewCtx->pRndGenData = pYrwCtx;

		// store the address of the internal random generator
		pNewCtx->pRandomGenerator = _internalRandomGenerator;

		// set the internal usage flag
		pNewCtx->blUseInternalRndGen = BOOL_TRUE;
	}
	else
	{
		// just link to the external random generator
		pNewCtx->pRandomGenerator = pRandGenFunc;
		pNewCtx->pRndGenData = pRandGenData;
		pNewCtx->blUseInternalRndGen = BOOL_FALSE;
	}

	// return the cipher handle
	*pCtxPtr = pNewCtx;

	// cipher successfully loaded
	return CIPHERSERVER_ERROR_NOERROR;
}

//////////////////////////////////////////////////////////////////////////////

WORD32 CRYPTPAK_API CipherServer_Destroy
(PCIPHERCTX pCtx)
{
	// release the internal rng, if necessary
	PYARROWCTX yctx;

	if (pCtx->blUseInternalRndGen)
	{
		yctx = (PYARROWCTX) pCtx->pRndGenData;

		if (yctx)
		{
			Yarrow_Destroy(yctx);
		}
	}

	// clear the context
	memset(pCtx, 0, sizeof(CIPHERCTX));

	// free the context and quit
#ifdef KERNEL_COMPILE
	ExFreePool( pCtx );
#else
	free(pCtx);
#endif
	return CIPHERSERVER_ERROR_NOERROR;
}

//////////////////////////////////////////////////////////////////////////////

WORD32 CRYPTPAK_API CipherServer_ExecuteSelfTest
(PCIPHERCTX pCtx,
 BYTEBOOL blExtendedTest)
{
	void* pTempWorkCtx;
	void* pInitData;
	WORD32 lResult;
	WORD32 lKeySize;
	WORD32 lI, lJ, lModeFlags;
	WORD8* keybuf;
	WORD8* twoblocks;
	int nTestBlockSize;
	int nI;
	PCIPHERSESSION chandle;

	// create a temporary work context
	if (pCtx->infoblock.lContextSize)
	{
#ifdef KERNEL_COMPILE
		pTempWorkCtx = ExAllocatePool( NonPagedPool, pCtx->infoblock.lContextSize  );
#else
		pTempWorkCtx = malloc(pCtx->infoblock.lContextSize);
#endif
		
		if (pTempWorkCtx == NULL)
			return CIPHERSERVER_ERROR_OUTOFMEMORY;
	}
	else
	{
		pTempWorkCtx = NULL;
	}

	// execute the cipher selftest
	if ((*pCtx->pSelfTest)(pTempWorkCtx) == CIPHER_ERROR_INVALID)
	{
		// selftest failed
#ifdef KERNEL_COMPILE
		ExFreePool( pTempWorkCtx );
#else
		free(pTempWorkCtx);
#endif
		return CIPHERSERVER_ERROR_INVALIDCIPHER;
	}

	// free the temporary work context
#ifdef KERNEL_COMPILE
	ExFreePool( pTempWorkCtx );
#else
	free(pTempWorkCtx);
#endif

	// execute the extended test, i.n.
	if (blExtendedTest)
	{
		// test both legacy and standard implementation
		for (lJ = 0, lModeFlags = 0; lJ < 2; lJ++)
		{
			if (lJ)
			{
				lModeFlags |= CIPHER_MODE_FLAG_LEGACY;
			}

			// encrypt two blocks using a simple key
			if (pCtx->infoblock.blOwnHasher)
				lKeySize = FIXKEYLEN;
			else
				lKeySize = pCtx->infoblock.lKeySize;

			if (lKeySize)
			{
#ifdef KERNEL_COMPILE
				keybuf = ( WORD8* )ExAllocatePool( NonPagedPool, lKeySize  );
#else
				keybuf = (WORD8*) malloc(lKeySize);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99re成人精品视频| 成+人+亚洲+综合天堂| 3atv在线一区二区三区| 午夜精品久久久久久不卡8050| 在线免费一区三区| 亚洲影视资源网| 91精品国产一区二区| 蜜桃精品视频在线| 亚洲国产精品黑人久久久| 91在线观看高清| 一区二区三区在线影院| 8x8x8国产精品| 国产一区二区三区在线观看免费| 亚洲国产高清在线观看视频| 色综合久久久久久久| 午夜视频一区在线观看| 精品国产sm最大网站| 成人福利视频在线看| 亚洲一二三专区| 日韩一区二区三区电影| 成人在线一区二区三区| 一二三四社区欧美黄| 精品区一区二区| 成人激情av网| 丝瓜av网站精品一区二区| 久久久久久久久久久久久女国产乱| 99久久精品国产一区| 日本欧美一区二区| 国产精品久久久久天堂| 91精选在线观看| 精品国产乱码久久久久久1区2区 | 久久精品国产网站| 久久久久久免费| 色综合久久中文综合久久97| 日韩vs国产vs欧美| 中文字幕第一区综合| 欧美巨大另类极品videosbest| 国产成人午夜视频| 亚洲一级二级三级| 国产天堂亚洲国产碰碰| 7777精品久久久大香线蕉 | 精品一区二区三区在线播放视频| 中文字幕日本不卡| 久久一夜天堂av一区二区三区 | 3d动漫精品啪啪一区二区竹菊| 国产成人h网站| 青青草国产成人av片免费| 亚洲天堂网中文字| 久久久久99精品国产片| 欧美人体做爰大胆视频| 99热这里都是精品| 国产乱子轮精品视频| 亚洲成av人片一区二区三区| 国产精品久久久久久久久晋中| 日韩午夜精品电影| 久久先锋资源网| 欧美一区二区大片| 色噜噜狠狠色综合中国| 成人福利视频在线看| 国产精品白丝av| 麻豆精品一区二区av白丝在线| 亚洲一区二区av在线| 亚洲日韩欧美一区二区在线| 国产视频一区在线观看| 久久久久高清精品| 欧美精品一区二区在线播放| 欧美一区二区成人6969| 91精品国产综合久久小美女| 欧美日韩黄视频| 欧美日韩亚洲高清一区二区| 欧美唯美清纯偷拍| 欧美视频一二三区| 欧美三级视频在线播放| 欧洲视频一区二区| 欧美在线观看视频在线| 欧美无乱码久久久免费午夜一区| 91国产视频在线观看| 91福利社在线观看| 欧美午夜精品久久久久久孕妇 | 日韩不卡免费视频| 日本成人在线网站| 男人的天堂久久精品| 99久久亚洲一区二区三区青草| 激情小说亚洲一区| 国产综合色在线视频区| 国产一区二区视频在线播放| 国产综合色视频| 高清在线观看日韩| caoporm超碰国产精品| 99久久久久免费精品国产 | 色婷婷久久久亚洲一区二区三区 | 6080yy午夜一二三区久久| 在线成人午夜影院| 欧美一区二区女人| 久久欧美一区二区| 亚洲欧洲美洲综合色网| 亚洲你懂的在线视频| 亚洲成av人片在线| 精品一区二区三区香蕉蜜桃| 国产精品18久久久久久久网站| 成人午夜电影网站| 欧美亚男人的天堂| 欧美一区二区视频在线观看2020| 精品精品欲导航| 1000部国产精品成人观看| 亚洲国产精品一区二区www| 免费观看在线综合色| 国产高清不卡一区二区| 色老汉av一区二区三区| 在线播放/欧美激情| 中文字幕免费一区| 日日夜夜免费精品| 成人精品免费视频| 91精品国产综合久久精品图片| 国产嫩草影院久久久久| 午夜欧美一区二区三区在线播放| 韩国v欧美v亚洲v日本v| 在线精品视频小说1| 日韩精品一区二区三区在线| 亚洲猫色日本管| 国产综合色在线| 欧美日韩久久久一区| 久久精品综合网| 五月天婷婷综合| 99久久er热在这里只有精品15 | 精品国产一区久久| 亚洲精品中文字幕乱码三区| 精品在线一区二区三区| 一本一本大道香蕉久在线精品| 亚洲精品一线二线三线无人区| 国产一区二三区| 欧洲色大大久久| 欧美激情综合网| 麻豆精品国产传媒mv男同| eeuss鲁片一区二区三区在线看| 日韩欧美中文字幕一区| 一区二区三区在线视频免费 | 日韩vs国产vs欧美| 色悠悠久久综合| 国产欧美日韩亚州综合| 免费看欧美美女黄的网站| 欧洲色大大久久| 国产精品久久久久久久蜜臀| 狠狠久久亚洲欧美| 欧美人与z0zoxxxx视频| 亚洲激情av在线| 成人成人成人在线视频| 久久综合久久综合亚洲| 日本不卡123| 欧美猛男gaygay网站| 亚洲欧美日韩电影| 成人一区二区三区视频 | 国产精品福利影院| 国产精品综合视频| 精品国产乱子伦一区| 日韩国产一二三区| 欧美精品一卡两卡| 偷拍与自拍一区| 欧美日韩精品是欧美日韩精品| 亚洲美女一区二区三区| 91在线播放网址| 亚洲日本乱码在线观看| 99综合电影在线视频| 美脚の诱脚舐め脚责91| 日韩视频永久免费| 六月丁香婷婷色狠狠久久| 欧美一区二区三区不卡| 日韩经典中文字幕一区| 777精品伊人久久久久大香线蕉| 日韩精品久久久久久| 欧美一区二区视频在线观看2022| 丝袜a∨在线一区二区三区不卡| 欧美老人xxxx18| 蜜桃一区二区三区四区| 精品国产乱码久久久久久蜜臀 | 人人精品人人爱| 91精品国产色综合久久不卡蜜臀| 日日夜夜免费精品| 欧美一级生活片| 国产一区二区三区免费看| 国产日韩精品视频一区| 成人精品免费视频| 久久成人av少妇免费| 欧美精品日韩一区| 偷拍亚洲欧洲综合| 91.xcao| 久久草av在线| 久久久噜噜噜久久中文字幕色伊伊| 久久99九九99精品| 国产欧美一区二区精品性色超碰| k8久久久一区二区三区| 一区二区三区在线看| 69堂精品视频| 国产成人啪免费观看软件| 亚洲欧美成人一区二区三区| 欧美人动与zoxxxx乱| 国产精品一区二区在线观看网站| 国产精品不卡一区二区三区| 欧美日韩一区国产| 国产成人午夜99999|