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

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

?? zdmwrite.c

?? IBE是一種非對稱密碼技術
?? C
?? 第 1 頁 / 共 4 頁
字號:
/* Copyright 2003-2006, Voltage Security, all rights reserved.
 */
#include "vibe.h"
#include "environment.h"
#include "base.h"
#include "libctx.h"
#include "securemail.h"
#include "zdm.h"
#include "idobj.h"
#include "policy.h"
#include "derhelp.h"
#include "oidlist.h"
#include "errorctx.h"

/* Given a ZDM template, build the header and footer to the ZDM data.
 * <p>This function will allocate two buffers, one to hold the header,
 * another the footer. It is the responsibility of the caller to free
 * that memory.
 * <p>The policy, storage, and transport contexts will almost certainly
 * not be needed. But because this function will call VtEncodeIdentity,
 * include them int the arg list so that the contexts to use are
 * explicitly passed to the Encode function.
 * <p>This routine does no argument checking. It is the responsibility
 * of the caller not to make mistakes.
 *
 * @param libCtx The libCtx to use (to allocate, for instance).
 * @param obj
 * @param writeCtx
 * @param header Where the function will deposit the pointer to the
 * allocated memory containing the header.
 * @param headerLen Where the function will deposit the length of the
 * header.
 * @param footer Where the function will deposit the pointer to the
 * allocated memory containing the footer.
 * @param footerLen Where the function will deposit the length of the
 * footer.
 * @return an int, 0 if the function completed successfully or a
 * non-zero error code.
 */
static int VOLT_CALLING_CONV BuildZDMHeaderFooterAlloc VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   VtPolicyCtx policyCtx,
   VtStorageCtx storageCtx,
   VtTransportCtx transportCtx,
   VtItem *zdmTemplate,
   unsigned char **header,
   unsigned int *headerLen,
   unsigned char **footer,
   unsigned int *footerLen
));

int VoltOldZDMWriteInit (
   VtZDMObject zdmObj,
   VtPolicyCtx policyCtx,
   VtStorageCtx storageCtx,
   VtTransportCtx transportCtx,
   VtRandomObject random
   )
{
  int status;
  VoltZDMObject *zObj = (VoltZDMObject *)zdmObj;
  VOLT_DECLARE_FNCT_LINE (fnctLine)

  VOLT_SET_FNCT_LINE (fnctLine)
  status = VoltZDMWriteInit (
    (VtSecureMailObject)(zObj->localCtx), policyCtx, storageCtx,
    transportCtx, random);

  VOLT_LOG_ERROR_INFO_COMPARE (
    status, 0, zdmObj, status, 0, 0,
    (char *)0, "VoltOldZDMWriteInit", fnctLine, (char *)0)

  return (status);
}

int VoltOldZDMWriteUpdate(
   VtZDMObject zdmObj,
   VtRandomObject random,
   unsigned char *inputData,
   unsigned int inputDataLen,
   unsigned char *message,
   unsigned int bufferSize,
   unsigned int *messageLen
   )
{
  int status;
  VoltZDMObject *zObj = (VoltZDMObject *)zdmObj;
  VOLT_DECLARE_FNCT_LINE (fnctLine)

  VOLT_SET_FNCT_LINE (fnctLine)
  status = VoltSecureMailWriteUpdate (
    (VtSecureMailObject)(zObj->localCtx), random, inputData, inputDataLen,
    message, bufferSize, messageLen);

  VOLT_LOG_ERROR_INFO_COMPARE (
    status, 0, zdmObj, status, 0, 0,
    (char *)0, "VoltOldZDMWriteUpdate", fnctLine, (char *)0)

  return (status);
}

int VoltOldZDMWriteFinal (
   VtZDMObject zdmObj,
   VtRandomObject random,
   unsigned char *inputData,
   unsigned int inputDataLen,
   unsigned char *message,
   unsigned int bufferSize,
   unsigned int *messageLen
   )
{
  int status;
  VoltZDMObject *zObj = (VoltZDMObject *)zdmObj;
  VOLT_DECLARE_FNCT_LINE (fnctLine)

  VOLT_SET_FNCT_LINE (fnctLine)
  status = VoltSecureMailWriteFinal (
    (VtSecureMailObject)(zObj->localCtx), random, inputData, inputDataLen,
    message, bufferSize, messageLen);

  VOLT_LOG_ERROR_INFO_COMPARE (
    status, 0, zdmObj, status, 0, 0,
    (char *)0, "VoltOldZDMWriteFinal", fnctLine, (char *)0)

  return (status);
}

int VoltZDMWriteInit (
   VtSecureMailObject secureMailObj,
   VtPolicyCtx policyCtx,
   VtStorageCtx storageCtx,
   VtTransportCtx transportCtx,
   VtRandomObject random
   )
{
  int status;
  unsigned int index, elementLen, newLineLen, headerLen, footerLen;
  VoltSecureMailObject *obj = (VoltSecureMailObject *)secureMailObj;
  VoltSecureMailWriteCtx *writeCtx = (VoltSecureMailWriteCtx *)(obj->localCtx);
  VoltLibCtx *libCtx = (VoltLibCtx *)(obj->voltObject.libraryCtx);
  VoltPolicyCtx *pCtx;
  unsigned char *header = (unsigned char *)0;
  unsigned char *footer = (unsigned char *)0;
  VtItem *getItem = (VtItem *)0;
  unsigned char *newLine =
    writeCtx->itemArray[VOLT_WRITE_SM_ITEM_NEW_LINE].data;
  char *contentType = VOLT_DEFAULT_CONTENT_TYPE;
  VtBase64Info b64Info;
  VOLT_DECLARE_ERROR_TYPE (errorType)
  VOLT_DECLARE_FNCT_LINE (fnctLine)

  newLineLen = writeCtx->itemArray[VOLT_WRITE_SM_ITEM_NEW_LINE].len;

  do
  {
    /* Get the ZDM template out of the policy ctx. If there is no
     * policy ctx, error.
     */
    VOLT_SET_ERROR_TYPE (errorType, VT_ERROR_TYPE_PRIMARY)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = VT_ERROR_INVALID_PROVIDER_USE;
    if (policyCtx == (VtPolicyCtx)0)
      break;

    pCtx = (VoltPolicyCtx *)policyCtx;

    /* Get the ZDR template.
     */
    VOLT_SET_ERROR_TYPE (errorType, 0)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = pCtx->PolicyGetInfoAlloc (
      policyCtx, VOLT_POLICY_GET_ZERO_DOWNLOAD_TEMPLATE,
      (Pointer)0, (Pointer *)&getItem);
    if (status != 0)
      break;

    /* If the policy provider has no template, error.
     */
    VOLT_SET_ERROR_TYPE (errorType, VT_ERROR_TYPE_PRIMARY)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = VT_ERROR_INVALID_ZDM_TEMPLATE;
    if (getItem == (VtItem *)0)
      break;

    /* If this is ZDM, Init subordinate objects. If this is ZDM from
     * SecureMail or SecureFile, there are no subordinate objects.
     */
    if (obj->p7SignedData != (VtPkcs7Object)0)
    {
      b64Info.base64BlockSize = 76;
      b64Info.newLineCharacter = VT_BASE64_NEW_LINE_LF;
      if (writeCtx->itemArray[VOLT_WRITE_SM_ITEM_NEW_LINE].len == 2)
        b64Info.newLineCharacter = VT_BASE64_NEW_LINE_CR_LF;
      b64Info.errorCheck = VT_BASE64_NO_ERROR_CHECK;
      VOLT_SET_ERROR_TYPE (errorType, 0)
      VOLT_SET_FNCT_LINE (fnctLine)
      status = VtCreateAlgorithmObject (
        (VtLibCtx)libCtx, VtAlgorithmImplBase64, (Pointer)&b64Info,
        &(obj->base64));
      if (status != 0)
        break;

      VOLT_SET_FNCT_LINE (fnctLine)
      status = VtPkcs7WriteInit (
        obj->p7SignedData, policyCtx, storageCtx, transportCtx, random);
      if (status != 0)
        break;

      VOLT_SET_FNCT_LINE (fnctLine)
      status = VtPkcs7WriteInit (
        obj->p7EnvelopedData, policyCtx, storageCtx, transportCtx, random);
      if (status != 0)
        break;

      VOLT_SET_FNCT_LINE (fnctLine)
      status = VtEncodeInit (obj->base64);
      if (status != 0)
        break;
    }

    /* If there's no content type, use the default.
     */
    if ( (obj->contentInfo.data == (unsigned char *)0) &&
         (obj->formatType != VOLT_MESSAGE_FORMAT_ZDM_ATTACHMENT) )
    {
      VOLT_SET_ERROR_TYPE (errorType, VT_ERROR_TYPE_PRIMARY)
      VOLT_SET_FNCT_LINE (fnctLine)
      status = VT_ERROR_MEMORY;
      obj->contentInfo.data = (unsigned char *)Z2Malloc (
        VOLT_DEFAULT_CONTENT_TYPE_LEN + 1, 0);
      if (obj->contentInfo.data == (unsigned char *)0)
        break;
      Z2Memcpy (
        obj->contentInfo.data, contentType, VOLT_DEFAULT_CONTENT_TYPE_LEN);
      obj->contentInfo.data[VOLT_DEFAULT_CONTENT_TYPE_LEN] = 0;
      obj->contentInfo.len = VOLT_DEFAULT_CONTENT_TYPE_LEN;
    }

    /* If this is an attachment, get rid of the "regular" headers and
     * footers.
     */
    if (obj->formatType == VOLT_MESSAGE_FORMAT_ZDM_ATTACHMENT)
    {
      for (index = VOLT_WRITE_SM_HEAD_INDEX_START + 1;
           index <= VOLT_WRITE_SM_HEAD_INDEX_END; ++index)
        writeCtx->itemArray[index].len = 0;

      for (index = VOLT_WRITE_SM_FOOT_INDEX_START;
           index <= VOLT_WRITE_SM_FOOT_INDEX_END; ++index)
        writeCtx->itemArray[index].len = 0;
    }

    /* The ZDM headers and footers need info from the encoded sender
     * and recipients, so call this function after P7 Inits, so the
     * objects are ready.
     */
    VOLT_SET_ERROR_TYPE (errorType, 0)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = BuildZDMHeaderFooterAlloc (
      libCtx, obj, writeCtx, policyCtx, storageCtx, transportCtx,
      getItem, &header, &headerLen, &footer, &footerLen);
    if (status != 0)
      break;

    /* If this is an attachment, the footer has an extra line return.
     */
    if (obj->formatType == VOLT_MESSAGE_FORMAT_ZDM_ATTACHMENT)
    {
      Z2Memmove (
        writeCtx->itemArray[VOLT_WRITE_SM_ITEM_END_MSG].data,
        writeCtx->itemArray[VOLT_WRITE_SM_ITEM_END_MSG].data + newLineLen,
        writeCtx->itemArray[VOLT_WRITE_SM_ITEM_END_MSG].len - newLineLen);
      writeCtx->itemArray[VOLT_WRITE_SM_ITEM_END_MSG].len -= newLineLen;
    }

    /* How much header and footer data will we be writing out?
     */
    for (index = VOLT_WRITE_SM_HEAD_INDEX_START;
         index <= VOLT_WRITE_SM_HEAD_INDEX_END; ++index)
    {
      /* Add in the length of the actual data to write out.
       * If there is data to write out, add a newLine.
       */
      elementLen = writeCtx->itemArray[index].len;
      if (elementLen != 0)
        elementLen += newLineLen;
      writeCtx->prelimLen += elementLen;
    }

    for (index = VOLT_WRITE_SM_FOOT_INDEX_START;
         index <= VOLT_WRITE_SM_FOOT_INDEX_END; ++index)
    {
      /* Add in the length of the actual data to write out.
       * If there is data to write out, add a newLine.
       */
      elementLen = writeCtx->itemArray[index].len;
      if (elementLen != 0)
        elementLen += newLineLen;
      writeCtx->trailLen += elementLen;
    }

    obj->state = VOLT_SECURE_MAIL_STATE_WRITE_INIT;

  } while (0);

  if (getItem != (VtItem *)0)
    pCtx->PolicyGetInfoFree (policyCtx, (Pointer)getItem);

  if (header != (unsigned char *)0)
    Z2Free (header);
  if (footer != (unsigned char *)0)
    Z2Free (footer);

  VOLT_LOG_ERROR_INFO_COMPARE (
    status, 0, secureMailObj, status, 0, errorType,
    (char *)0, "VoltZDMWriteInit", fnctLine, (char *)0)

  return (status);
}

#define VOLT_ZDM_TEMPLATE_NUM_TERMS  3

typedef struct
{
  int start;
  int finish;
  int index;
} SearchT;

static int VOLT_CALLING_CONV FindSort VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx, char **terms, unsigned int termCount, 
   SearchT *search, int *count, char *templateData
));

static int VOLT_CALLING_CONV AddZDMHeaderFooterData VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   int headerFooter,
   char *theData,
   unsigned int theDataLen
));

static int VOLT_CALLING_CONV BuildZDMDataFromMETA VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   int headerFooter
));

static int VOLT_CALLING_CONV BuildZDMDataFromSCRIPT VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   int headerFooter
));

static int VOLT_CALLING_CONV BuildZDMDataFromFORM VOLT_PROTO_LIST ((
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   VtPolicyCtx policyCtx,
   VtStorageCtx storageCtx,
   VtTransportCtx transportCtx,
   int headerFooter
));

static int BuildZDMHeaderFooterAlloc(
   VoltLibCtx *libCtx,
   VoltSecureMailObject *obj,
   VoltSecureMailWriteCtx *writeCtx,
   VtPolicyCtx policyCtx,
   VtStorageCtx storageCtx,
   VtTransportCtx transportCtx,
   VtItem *zdmTemplate,
   unsigned char **header,
   unsigned int *headerLen,
   unsigned char **footer,
   unsigned int *footerLen
   )
{
  int status, index, indexT, count, headerFooter;
  char *begin, *end;
  SearchT search[VOLT_ZDM_TEMPLATE_NUM_TERMS];
  char *terms[VOLT_ZDM_TEMPLATE_NUM_TERMS] =
    { "$(META)", "$(SCRIPT)", "$(FORM)" };
  VOLT_DECLARE_ERROR_TYPE (errorType)
  VOLT_DECLARE_FNCT_LINE (fnctLine)

  *header = (unsigned char *)0;
  *headerLen = 0;
  *footer = (unsigned char *)0;
  *footerLen = 0;

  headerFooter = 0;

  do
  {
    /* First, find the terms in the template.
     */
    Z2Memset (&search, 0, sizeof (search));
    VOLT_SET_ERROR_TYPE (errorType, 0)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = FindSort (
      libCtx, terms, VOLT_ZDM_TEMPLATE_NUM_TERMS,
      search, &count, (char *)(zdmTemplate->data));
    if (status != 0)
      break;

    /* There must be META and FORM.
     */
    VOLT_SET_ERROR_TYPE (errorType, VT_ERROR_TYPE_PRIMARY)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = VT_ERROR_INVALID_ZDM_TEMPLATE;
    if ( (search[0].index == -1) || (search[2].index == -1) )
      break;

    /* Write out the data up to the first tag. Then do that tag. Then
     * write the data after that tag up to the next. Then that tag. And
     * then up to the last tag, that tag and any data after.
     */
    begin = (char *)(zdmTemplate->data);
    for (index = 0; index < count; ++index)
    {
      for (indexT = 0; indexT < VOLT_ZDM_TEMPLATE_NUM_TERMS; ++indexT)
      {
        if (search[indexT].index != index)
          continue;

        end = (char *)(zdmTemplate->data + search[indexT].start);
        break;
      }

      VOLT_SET_ERROR_TYPE (errorType, 0)
      VOLT_SET_FNCT_LINE (fnctLine)
      status = AddZDMHeaderFooterData (
        libCtx, obj, writeCtx, headerFooter,
        begin, (unsigned int)(end - begin));
      if (status != 0)
        break;

      /* Place the data for the tag.
       */
      if (indexT == 0)
      {
        VOLT_SET_FNCT_LINE (fnctLine)
        status = BuildZDMDataFromMETA (libCtx, obj, writeCtx, headerFooter);
      }
      else if (indexT == 1)
      {
        VOLT_SET_FNCT_LINE (fnctLine)
        status = BuildZDMDataFromSCRIPT (libCtx, obj, writeCtx, headerFooter);
      }
      else
      {
        VOLT_SET_FNCT_LINE (fnctLine)
        status = BuildZDMDataFromFORM (
          libCtx, obj, writeCtx, policyCtx, storageCtx, transportCtx, 0);
        headerFooter = 1;
      }
      if (status != 0)
        break;

      begin = (char *)(zdmTemplate->data + search[indexT].finish);
    }
    if (status != 0)
      break;

    end = (char *)(zdmTemplate->data + zdmTemplate->len);
    VOLT_SET_ERROR_TYPE (errorType, 0)
    VOLT_SET_FNCT_LINE (fnctLine)
    status = AddZDMHeaderFooterData (
      libCtx, obj, writeCtx, headerFooter, begin, (unsigned int)(end - begin));

  } while (0);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人一区二区三区| 91精品国产福利| 懂色av一区二区三区蜜臀| 精品一区二区三区免费观看| 美女网站在线免费欧美精品| 蓝色福利精品导航| 久久av中文字幕片| 国产suv一区二区三区88区| 国产不卡一区视频| 成人国产精品免费观看动漫 | 不卡的电影网站| 伊人性伊人情综合网| 亚洲柠檬福利资源导航| 亚洲在线免费播放| 肉肉av福利一精品导航| 全国精品久久少妇| 精品一区二区三区免费视频| 国产老女人精品毛片久久| av在线不卡免费看| 欧美性色黄大片手机版| 制服丝袜亚洲播放| 亚洲精品一区二区三区香蕉| 欧美韩国一区二区| 亚洲曰韩产成在线| 亚洲一本大道在线| 久久精品国内一区二区三区| 国产精品18久久久久久久久| 99re在线视频这里只有精品| 欧美性猛交xxxx乱大交退制版 | 国产午夜亚洲精品不卡| 日韩一区欧美小说| 婷婷久久综合九色综合绿巨人| 捆绑紧缚一区二区三区视频| 国产又粗又猛又爽又黄91精品| 成人性生交大片免费看视频在线| 色94色欧美sute亚洲线路一久| 欧美一区二区三区四区久久| 久久久亚洲午夜电影| 亚洲自拍偷拍欧美| 国产麻豆精品在线| 色妹子一区二区| 精品免费99久久| 亚洲日本va午夜在线影院| 日韩 欧美一区二区三区| 成人激情免费网站| 在线观看91av| 日本一区二区三区高清不卡| 偷窥国产亚洲免费视频| 福利一区二区在线| 欧美日韩精品三区| 国产蜜臀av在线一区二区三区| 亚洲二区视频在线| 国产成人午夜99999| 欧美三级韩国三级日本三斤| 久久婷婷综合激情| 午夜精品福利视频网站| 国产福利一区在线| 欧美日韩视频一区二区| 国产欧美精品区一区二区三区 | 国产剧情av麻豆香蕉精品| 成人激情校园春色| 欧美一区二区精美| 亚洲精品成人天堂一二三| 国产综合久久久久久鬼色 | 日韩精品在线一区二区| 亚洲日本一区二区三区| 国产一区不卡视频| 欧美精品第一页| 亚洲欧美精品午睡沙发| 国产精品一二三四五| 这里只有精品99re| 亚洲精品视频在线看| 成人综合婷婷国产精品久久蜜臀 | 日韩精品一区二区三区视频播放| 亚洲另类在线视频| 国产xxx精品视频大全| 欧美大片在线观看| 天天色天天操综合| 色94色欧美sute亚洲线路一ni | 国产精品 欧美精品| 欧美mv日韩mv| 青青草91视频| 在线成人免费视频| 亚洲国产精品一区二区尤物区| 99在线精品视频| 国产精品麻豆欧美日韩ww| 激情成人综合网| 日韩视频在线你懂得| 日本亚洲天堂网| 欧美日韩亚洲高清一区二区| 亚洲国产精品久久久男人的天堂 | 精品国产免费人成电影在线观看四季| 日韩精品一二三| 欧美福利电影网| 爽爽淫人综合网网站| 制服视频三区第一页精品| 午夜精品久久久久久久| 欧美日韩国产欧美日美国产精品| 樱桃视频在线观看一区| 91社区在线播放| 亚洲女同ⅹxx女同tv| 色综合天天综合网天天看片| 亚洲人妖av一区二区| 日本高清不卡aⅴ免费网站| 亚洲色图在线播放| 91香蕉视频mp4| 亚洲在线一区二区三区| 欧美网站一区二区| 五月天亚洲精品| 91麻豆精品国产| 老司机免费视频一区二区三区| 精品国产1区2区3区| 亚洲va中文字幕| 91成人在线精品| 亚洲午夜精品网| 欧美肥胖老妇做爰| 久久国产剧场电影| 国产亚洲一二三区| 99久久久久久| 亚洲午夜成aⅴ人片| 在线播放视频一区| 国精产品一区一区三区mba视频| 久久精品无码一区二区三区| 99精品视频在线观看免费| 一区二区三区四区不卡在线 | 9i看片成人免费高清| 亚洲精品免费在线观看| 欧美日韩精品三区| 精品影视av免费| 亚洲欧美在线视频观看| 欧美久久久久久蜜桃| 国产一区 二区| 亚洲欧洲国产日韩| 欧美精品乱码久久久久久| 国产一区二区三区免费观看| 国产精品久久久久一区二区三区| 欧美在线免费播放| 国产一区 二区| 一区二区三区中文免费| 日韩亚洲欧美高清| 97se亚洲国产综合自在线| 五月开心婷婷久久| 国产欧美精品一区二区三区四区 | 亚洲人成在线播放网站岛国| 91精品中文字幕一区二区三区| 激情另类小说区图片区视频区| 国产精品护士白丝一区av| 欧美日本免费一区二区三区| 国产成人久久精品77777最新版本| 亚洲品质自拍视频| 精品福利在线导航| 欧美四级电影网| 国产精品88av| 日韩精品一二三四| 亚洲色图.com| 久久女同精品一区二区| 欧美丝袜丝交足nylons图片| 国产高清精品久久久久| 五月婷婷激情综合网| 中文字幕日本乱码精品影院| 欧美大片在线观看一区| 精品视频1区2区3区| 成人午夜av电影| 毛片av一区二区| 亚洲一区二区三区精品在线| 国产亚洲欧美色| 欧美一区二区免费| 色94色欧美sute亚洲线路一ni | 欧美丰满高潮xxxx喷水动漫| 97se亚洲国产综合在线| 国产激情视频一区二区在线观看| 亚洲va欧美va人人爽午夜| 亚洲人123区| 国产精品欧美久久久久无广告| 欧美伦理影视网| 91麻豆成人久久精品二区三区| 久久精品国产亚洲高清剧情介绍| 亚洲欧美电影一区二区| 久久婷婷综合激情| 日韩精品一区二区三区在线观看 | 欧美一级黄色大片| 91九色02白丝porn| 视频一区二区欧美| 精品国产第一区二区三区观看体验| 国产在线看一区| 欧美aaa在线| 午夜亚洲福利老司机| 一区二区在线看| 中文字幕日韩av资源站| 国产人成一区二区三区影院| 欧美成人国产一区二区| 欧美日韩的一区二区| 欧美在线色视频| 91国产免费看| 91黄色免费观看| 欧美午夜一区二区三区免费大片| av电影在线观看一区| caoporm超碰国产精品| 99久久精品一区二区| 白白色亚洲国产精品|