av素人天堂_free性亚洲_久久亚洲国产视频_国产网红在线_午夜av在线播放_欧美成人精品福利网站_热99在线观看_国产在线观看免费麻豆_日本高清在线观看_亚洲免费网站观看视频

使用OpenSSL,創(chuàng)建本地調試HTTPS證書

在本地開發(fā)環(huán)境中,為了模擬線上完整環(huán)境,需要配置https證書。網(wǎng)上的資料太老了,現(xiàn)在都馬上2024年了,我覺得有必要出一個比較新,比較簡單的證書制作教程。其實除了本地可以用,只要用戶導入了,都能算是信任證書。

制作分4步走,最重要的一步就是準備配置文件的時候。

下載openssl

windows下載安裝包:https://slproweb.com/products/Win32OpenSSL.html

安裝完成后,使用CMD進入程序的bin目錄。如果你安裝在D盤,大概就是D:\Program Files\OpenSSL-Win64\bin

生成CA根證書

執(zhí)行cmd命令,創(chuàng)建key文件

openssl genrsa -out myCA.key 2048

通過key加密機構信息形成公鑰,有效期一百年

 

openssl req -new -x509 -key myCA.key -out myCA.cer -days 36500

運行后,會讓你填寫內容,內容隨便亂寫就是了。

參數(shù)名稱 參數(shù)值
Country Name 國家代碼,比如中國就是CN
State or Province Name 省名稱
Locality Name 城市名稱
Organization Name 機構名稱
Organizational Unit Name 機構單位名稱
Common Name 授權給誰
Email Address 郵件地址

創(chuàng)建服務器證書

openssl genrsa -out server.key 2048

創(chuàng)建配置文件,在bin目錄下載創(chuàng)建一個名為:openssl.cnf的文件

 

文件內容見下面。

其中[ alt_names ]項里面的

DNS.1 = *.mytest.com

DNS.2 = mytest.com

可以改成你的域名,多個域名DNS.3、DNS.4這樣走。通配符是*.mytest.com,這樣,所有mytest.com子域名都能用。

#
# OpenSSL example configuration file.
# See doc/man5/config.pod for more info.
#
# This is mostly being used for generation of certificate requests,
# but may be used for auto loading of providers

# Note that you can include other files from the main configuration
# file using the .include directive.
#.include filename

# This definition stops the following lines choking if HOME isn't
# defined.
HOME			= .

# Use this in order to automatically load providers.
openssl_conf = openssl_init

# Comment out the next line to ignore configuration errors
config_diagnostics = 1

# Extra OBJECT IDENTIFIER info:
# oid_file       = $ENV::HOME/.oid
oid_section = new_oids

# To use this configuration file with the "-extfile" option of the
# "openssl x509" utility, name here the section containing the
# X.509v3 extensions to use:
# extensions		=
# (Alternatively, use a configuration file that has only
# X.509v3 extensions in its main [= default] section.)

[ new_oids ]
# We can add new OIDs in here for use by 'ca', 'req' and 'ts'.
# Add a simple OID like this:
# testoid1=1.2.3.4
# Or use config file substitution like this:
# testoid2=${testoid1}.5.6

# Policies used by the TSA examples.
tsa_policy1 = 1.2.3.4.1
tsa_policy2 = 1.2.3.4.5.6
tsa_policy3 = 1.2.3.4.5.7

# For FIPS
# Optionally include a file that is generated by the OpenSSL fipsinstall
# application. This file contains configuration data required by the OpenSSL
# fips provider. It contains a named section e.g. [fips_sect] which is
# referenced from the [provider_sect] below.
# Refer to the OpenSSL security policy for more information.
# .include fipsmodule.cnf

[openssl_init]
providers = provider_sect

# List of providers to load
[provider_sect]
default = default_sect
# The fips section name should match the section name inside the
# included fipsmodule.cnf.
# fips = fips_sect

# If no providers are activated explicitly, the default one is activated implicitly.
# See man 7 OSSL_PROVIDER-default for more details.
#
# If you add a section explicitly activating any other provider(s), you most
# probably need to explicitly activate the default provider, otherwise it
# becomes unavailable in openssl.  As a consequence applications depending on
# OpenSSL may not work correctly which could lead to significant system
# problems including inability to remotely access the system.
[default_sect]
# activate = 1


####################################################################
[ ca ]
default_ca	= CA_default		# The default ca section

####################################################################
[ CA_default ]

dir		= ./demoCA		# Where everything is kept
certs		= $dir/certs		# Where the issued certs are kept
crl_dir		= $dir/crl		# Where the issued crl are kept
database	= $dir/index.txt	# database index file.
#unique_subject	= no			# Set to 'no' to allow creation of
					# several certs with same subject.
new_certs_dir	= $dir/newcerts		# default place for new certs.

certificate	= $dir/cacert.pem 	# The CA certificate
serial		= $dir/serial 		# The current serial number
crlnumber	= $dir/crlnumber	# the current crl number
					# must be commented out to leave a V1 CRL
crl		= $dir/crl.pem 		# The current CRL
private_key	= $dir/private/cakey.pem # The private key

x509_extensions	= usr_cert		# The extensions to add to the cert

# Comment out the following two lines for the "traditional"
# (and highly broken) format.
name_opt 	= ca_default		# Subject Name options
cert_opt 	= ca_default		# Certificate field options

# Extension copying option: use with caution.
# copy_extensions = copy

# Extensions to add to a CRL. Note: Netscape communicator chokes on V2 CRLs
# so this is commented out by default to leave a V1 CRL.
# crlnumber must also be commented out to leave a V1 CRL.
# crl_extensions	= crl_ext

default_days	= 365			# how long to certify for
default_crl_days= 30			# how long before next CRL
default_md	= default		# use public key default MD
preserve	= no			# keep passed DN ordering

# A few difference way of specifying how similar the request should look
# For type CA, the listed attributes must be the same, and the optional
# and supplied fields are just that :-)
policy		= policy_match

# For the CA policy
[ policy_match ]
countryName		= match
stateOrProvinceName	= match
organizationName	= match
organizationalUnitName	= optional
commonName		= supplied
emailAddress		= optional

# For the 'anything' policy
# At this point in time, you must list all acceptable 'object'
# types.
[ policy_anything ]
countryName		= optional
stateOrProvinceName	= optional
localityName		= optional
organizationName	= optional
organizationalUnitName	= optional
commonName		= supplied
emailAddress		= optional

####################################################################
[ req ]
default_bits		= 2048
default_keyfile 	= privkey.pem
distinguished_name	= req_distinguished_name
attributes		= req_attributes
x509_extensions	= v3_ca	# The extensions to add to the self signed cert

# Passwords for private keys if not present they will be prompted for
# input_password = secret
# output_password = secret

# This sets a mask for permitted string types. There are several options.
# default: PrintableString, T61String, BMPString.
# pkix	 : PrintableString, BMPString (PKIX recommendation before 2004)
# utf8only: only UTF8Strings (PKIX recommendation after 2004).
# nombstr : PrintableString, T61String (no BMPStrings or UTF8Strings).
# MASK:XXXX a literal mask value.
# WARNING: ancient versions of Netscape crash on BMPStrings or UTF8Strings.
string_mask = utf8only

# req_extensions = v3_req # The extensions to add to a certificate request

[ req_distinguished_name ]
countryName			= Country Name (2 letter code)
countryName_default		= AU
countryName_min			= 2
countryName_max			= 2

stateOrProvinceName		= State or Province Name (full name)
stateOrProvinceName_default	= Some-State

localityName			= Locality Name (eg, city)

0.organizationName		= Organization Name (eg, company)
0.organizationName_default	= Internet Widgits Pty Ltd

# we can do this but it is not needed normally :-)
#1.organizationName		= Second Organization Name (eg, company)
#1.organizationName_default	= World Wide Web Pty Ltd

organizationalUnitName		= Organizational Unit Name (eg, section)
#organizationalUnitName_default	=

commonName			= Common Name (e.g. server FQDN or YOUR name)
commonName_max			= 64

emailAddress			= Email Address
emailAddress_max		= 64

# SET-ex3			= SET extension number 3

[ req_attributes ]
challengePassword		= A challenge password
challengePassword_min		= 4
challengePassword_max		= 20

unstructuredName		= An optional company name

[ usr_cert ]

# These extensions are added when 'ca' signs a request.

# This goes against PKIX guidelines but some CAs do it and some software
# requires this to avoid interpreting an end user certificate as a CA.

basicConstraints=CA:FALSE

# This is typical in keyUsage for a client certificate.
# keyUsage = nonRepudiation, digitalSignature, keyEncipherment

# PKIX recommendations harmless if included in all certificates.
subjectKeyIdentifier=hash
authorityKeyIdentifier=keyid,issuer

# This stuff is for subjectAltName and issuerAltname.
# Import the email address.
# subjectAltName=email:copy
# An alternative to produce certificates that aren't
# deprecated according to PKIX.
# subjectAltName=email:move

# Copy subject details
# issuerAltName=issuer:copy

# This is required for TSA certificates.
# extendedKeyUsage = critical,timeStamping

[ v3_req ]
subjectAltName = @alt_names
# Extensions to add to a certificate request

basicConstraints = CA:FALSE
keyUsage = nonRepudiation, digitalSignature, keyEncipherment
[ alt_names ]
DNS.1 = *.mytest.com
DNS.2 = *.test.com

[ v3_ca ]


# Extensions for a typical CA


# PKIX recommendation.

subjectKeyIdentifier=hash

authorityKeyIdentifier=keyid:always,issuer

basicConstraints = critical,CA:true

# Key usage: this is typical for a CA certificate. However since it will
# prevent it being used as an test self-signed certificate it is best
# left out by default.
# keyUsage = cRLSign, keyCertSign

# Include email address in subject alt name: another PKIX recommendation
# subjectAltName=email:copy
# Copy issuer details
# issuerAltName=issuer:copy

# DER hex encoding of an extension: beware experts only!
# obj=DER:02:03
# Where 'obj' is a standard or added object
# You can even override a supported extension:
# basicConstraints= critical, DER:30:03:01:01:FF

[ crl_ext ]

# CRL extensions.
# Only issuerAltName and authorityKeyIdentifier make any sense in a CRL.

# issuerAltName=issuer:copy
authorityKeyIdentifier=keyid:always

[ proxy_cert_ext ]
# These extensions should be added when creating a proxy certificate

# This goes against PKIX guidelines but some CAs do it and some software
# requires this to avoid interpreting an end user certificate as a CA.

basicConstraints=CA:FALSE

# This is typical in keyUsage for a client certificate.
# keyUsage = nonRepudiation, digitalSignature, keyEncipherment

# PKIX recommendations harmless if included in all certificates.
subjectKeyIdentifier=hash
authorityKeyIdentifier=keyid,issuer

# This stuff is for subjectAltName and issuerAltname.
# Import the email address.
# subjectAltName=email:copy
# An alternative to produce certificates that aren't
# deprecated according to PKIX.
# subjectAltName=email:move

# Copy subject details
# issuerAltName=issuer:copy

# This really needs to be in place for it to be a proxy certificate.
proxyCertInfo=critical,language:id-ppl-anyLanguage,pathlen:3,policy:foo

####################################################################
[ tsa ]

default_tsa = tsa_config1	# the default TSA section

[ tsa_config1 ]

# These are used by the TSA reply generation only.
dir		= ./demoCA		# TSA root directory
serial		= $dir/tsaserial	# The current serial number (mandatory)
crypto_device	= builtin		# OpenSSL engine to use for signing
signer_cert	= $dir/tsacert.pem 	# The TSA signing certificate
					# (optional)
certs		= $dir/cacert.pem	# Certificate chain to include in reply
					# (optional)
signer_key	= $dir/private/tsakey.pem # The TSA private key (optional)
signer_digest  = sha256			# Signing digest to use. (Optional)
default_policy	= tsa_policy1		# Policy if request did not specify it
					# (optional)
other_policies	= tsa_policy2, tsa_policy3	# acceptable policies (optional)
digests     = sha1, sha256, sha384, sha512  # Acceptable message digests (mandatory)
accuracy	= secs:1, millisecs:500, microsecs:100	# (optional)
clock_precision_digits  = 0	# number of digits after dot. (optional)
ordering		= yes	# Is ordering defined for timestamps?
				# (optional, default: no)
tsa_name		= yes	# Must the TSA name be included in the reply?
				# (optional, default: no)
ess_cert_id_chain	= no	# Must the ESS cert id chain be included?
				# (optional, default: no)
ess_cert_id_alg		= sha256	# algorithm to compute certificate
				# identifier (optional, default: sha256)

[insta] # CMP using Insta Demo CA
# Message transfer
server = pki.certificate.fi:8700
# proxy = # set this as far as needed, e.g., http://192.168.1.1:8080
# tls_use = 0
path = pkix/

# Server authentication
recipient = "/C=FI/O=Insta Demo/CN=Insta Demo CA" # or set srvcert or issuer
ignore_keyusage = 1 # potentially needed quirk
unprotected_errors = 1 # potentially needed quirk
extracertsout = insta.extracerts.pem

# Client authentication
ref = 3078 # user identification
secret = pass:insta # can be used for both client and server side

# Generic message options
cmd = ir # default operation, can be overridden on cmd line with, e.g., kur

# Certificate enrollment
subject = "/CN=openssl-cmp-test"
newkey = insta.priv.pem
out_trusted = apps/insta.ca.crt # does not include keyUsage digitalSignature
certout = insta.cert.pem

[pbm] # Password-based protection for Insta CA
# Server and client authentication
ref = $insta::ref # 3078
secret = $insta::secret # pass:insta

[signature] # Signature-based protection for Insta CA
# Server authentication
trusted = $insta::out_trusted # apps/insta.ca.crt

# Client authentication
secret = # disable PBM
key = $insta::newkey # insta.priv.pem
cert = $insta::certout # insta.cert.pem

[ir]
cmd = ir

[cr]
cmd = cr

[kur]
# Certificate update
cmd = kur
oldcert = $insta::certout # insta.cert.pem

[rr]
# Certificate revocation
cmd = rr
oldcert = $insta::certout # insta.cert.pem

然后保存文件以后,執(zhí)行命令

 

openssl req -config openssl.cnf -new -out server.req -key server.key 

再用這個key走一遍。然后會讓你填寫內容,跟上面一樣。

 

openssl x509 -req  -extfile openssl.cnf -extensions v3_req -in server.req -out server.cer -CAkey myCA.key -CA myCA.cer -days 36500 -CAcreateserial -CAserial serial

信任證書

 

雙擊myCA.cer文件,進行點擊安裝證書。

信任后。server.cer是pem文件,server.key是密鑰。本地寶塔可以導入查看

 

瀏覽器里面也不會提示不安全了。

最重要的是配置文件。否則直接生成文件再組裝,是沒有用的。

 

THE END
av素人天堂_free性亚洲_久久亚洲国产视频_国产网红在线_午夜av在线播放_欧美成人精品福利网站_热99在线观看_国产在线观看免费麻豆_日本高清在线观看_亚洲免费网站观看视频
日韩不卡一二三区| 99久久久精品免费观看国产| 亚洲欧美韩国综合色| 国产69精品久久app免费版| 国产丝袜欧美中文另类| 在线观看国产一级片| 国产啊啊啊视频在线观看| 91精品国产色综合久久不卡蜜臀| 亚洲日本欧美日韩高观看| 99日韩精品| 91久久精品午夜一区二区| 欧美精选午夜久久久乱码6080| 国产日韩中文字幕| 中文字幕欧美日韩在线不卡| 国产男女av| 91精品电影| 日韩精品三级| 免费网站看黄yyy222| 黄色国产网站在线播放| 日韩国产高清一区| 日韩欧美色综合网站| 亚洲乱码一区av黑人高潮| 最近免费中文字幕在线第一页| 日韩高清在线一区二区| 精品视频在线导航| 国产在线日韩精品| 亚洲三级中文字幕| 最近中文av字幕在线中文| 国产福利一区二区在线精品| 久久99久久99精品中文字幕| 不卡一二三区| 999精品在线| 日韩欧美在线中字| 国产欧亚日韩视频| 亚洲免费中文字幕| 日韩亚洲一区在线| 国产 欧美 在线| 中文字幕日韩在线视频| 亚洲第一中文字幕| 日韩不卡av| 在线一区二区三区精品| 人成在线免费视频| 国产一级免费| 91蜜桃婷婷狠狠久久综合9色| 视频一区视频二区中文| 中文字幕一区二区三区精品| 精品成人久久av| 国产欧美自拍一区| 樱花草www在线| 日韩精品手机在线| av中文天堂在线| 99国产一区| 欧美三级在线看| 亚洲成人7777| 精品视频久久| 中文字幕视频在线观看| 一区二区三区免费看视频| 日本а中文在线天堂| 91精品婷婷国产综合久久竹菊| 在线观看一区日韩| 国产三级在线观看视频| 日韩中文在线中文网三级| √新版天堂资源在线资源| 国产在线欧美| 亚洲影视资源网| 精品日韩视频| 国产欧美日韩不卡免费| 国产欧美中文在线| 在线视频1区2区| 中文字幕在线观看播放| 国产欧亚日韩视频| 国产一区三区三区| 国产卡1卡2卡三卡在线| 国产亚洲人成a一在线v站| 黄色国产网站在线观看| 国产啊啊啊视频在线观看| 国产亚洲视频中文字幕视频| 在线观看av的网站| 国产高清在线视频| 欧美国产一区视频在线观看| 亚洲高清在线观看一区| 欧美在线视频第一页| 欧美日韩精品在线观看| 最新中文在线视频| 欧美91精品| 精品视频—区二区三区免费| 精品免费久久久| 国产福利精品导航| 日韩精品在线视频观看| 精品一二三区| 国产精品视频福利一区二区| 亚洲 欧美 日韩系列| 日韩精品一区二区三区视频播放| 天天综合天天综合| 91精品国产综合久久香蕉的特点| 欧美中文字幕第一页| 欧美国产一级片| 日本国产在线视频| 欧美亚洲国产免费| 亚洲一区中文在线| 精品区一区二区| 91精品国产91久久久久久不卡| 亚洲一区在线观看视频| 亚洲国产一区自拍| 国产第一页在线播放| 日韩在线视频精品| 欧美精品一区二区三区在线播放| 国产日韩亚洲欧美| 中文字幕精品在线播放| 香蕉视频亚洲一级| 日韩视频国产视频| 日韩欧美成人一区二区三区| 日韩欧美一二三| 中文字幕在线观看精品| 国产在线看一区| 精品久久久久久综合日本欧美| 欧美日韩国产高清| 精品中文字幕视频| 亚洲成av人片| 久久视频一区| 日韩欧美国产成人精品免费| 欧美日韩午夜在线视频| a在线观看免费视频| 日韩精品不卡一区二区| 一区视频在线播放| 国产欧美日韩中文字幕在线| 一级片在线播放| 伊人网站在线| 正在播放日韩精品| 国产啊啊啊视频在线观看| 精品视频999| 国产欧美自拍一区| 一本久久a久久精品亚洲| 日韩精品综合在线| 日韩欧美一级在线播放| 日本国产一区| 91欧美在线| 国产丝袜一区二区| 日韩av二区| 中文字幕第一页在线播放| 中文字幕一区不卡| 日韩午夜高潮| 国产欧美日韩在线视频| 不卡视频一区二区三区| www.老鸭窝.com| 精品日韩av一区二区| 国产免费永久在线观看| 久久中文精品| av中文在线资源| 日韩中文欧美在线| 日韩精品在线中文字幕| 国产成人中文字幕| 日韩免费视频一区二区视频在线观看| 日韩 国产 一区| 欧美日韩国产一二| 日韩精品资源二区在线| 亚洲国产欧美日韩精品| 欧美日韩国产一中文字不卡| 久久99蜜桃精品| 日韩视频在线一区| 国产婷婷色一区二区三区在线| 伊人www22综合色| 久久精品卡一| 欧美在线观看视频一区| 亚洲最新永久观看在线| 欧美久久久网站| 欧美1234区| 国产羞羞视频在线播放| 国产亚洲一区字幕| 亚洲综合日韩中文字幕v在线| 亚洲欧美视频一区二区三区| 欧美二区在线观看| 日韩在线观看视频一区| 亚洲视频在线观看三级| 国产黄在线观看免费观看不卡| 日韩精品视频在线播放| 国产区高清在线| 亚洲a一级视频| 婷婷中文字幕综合| 亚洲一区不卡在线| 日韩欧美999| 91久久视频| 日韩你懂的电影在线观看| 最近中文字幕在线中文高清版| 蜜臀91精品国产高清在线观看| 一级特黄大欧美久久久| 91精品国产综合久久久久久漫画| 国产成人精品免费在线| 在线精品日韩| 中文字幕国产视频| 久久精品欧美日韩精品| 色一区在线观看| 日本亚洲欧美| a视频免费在线观看| 免费网站看黄yyy222| 日韩字幕在线观看| 黄色在线播放网站| 国产裸体歌舞团一区二区| 国产在线精品国自产拍免费| 日韩国产欧美三级| 91精品国产综合久久久久| a视频免费在线观看| 黄色国产网站在线播放| 精品三级av| www中文字幕在线观看| 国产在线小视频| 国产欧美日韩在线播放| 蜜桃精品在线| 国产日产一区二区| 精品日韩在线观看| 欧美日韩性视频在线| 中文字幕精品视频| 国产欧美日韩视频| 精品久久久久久综合日本欧美| a视频在线播放| 亚洲 欧美 中文字幕| 久久99精品久久久久婷婷| 欧美久久久久久蜜桃| 日韩精品视频网站| 欧美一级一级性生活免费录像| 九九在线精品| 999精品色在线播放| 欧美日韩亚洲不卡| 中文字幕在线看精品乱码| 国产午夜精品一区二区三区视频| 日本亚洲欧美| 欧美不卡视频一区发布| 欧美日韩国产首页在线观看| 91吃瓜在线观看| 国产精品一区二区三区免费观看| 欧美日韩中文字幕日韩欧美| 国产黄在线观看免费观看不卡| 一区二区在线观| 一区二区视频在线观看免费的| 国产激情久久| 亚洲娇小xxxx欧美娇小| 91精品国产色综合久久久蜜香臀| 国产婷婷一区二区| 国产欧美日韩91| 天堂中文在线视频| 日韩精品第一区| 快she精品国产999| 最近中文字幕在线中文高清版| 香蕉av一区| 自拍日韩亚洲一区在线| 欧美色视频一区二区三区在线观看| 日韩视频精品在线| 色综合久久88色综合天天免费| 亚洲第一视频在线观看| 欧美三级日韩三级国产三级| 国产成人综合精品| 婷婷中文字幕在线观看| 国产日韩精品久久久| 中文字幕在线观看视频www| 九九在线精品| 91精品视频国产| 欧美中文字幕视频| 搞黄在线观看| 日本亚洲欧美天堂免费| 日韩精品福利一区二区三区| 久久蜜桃精品| 精品福利二区三区| a级在线免费观看| 国产中文在线播放| 国产日韩专区| 一区二区不卡视频| 免费国产成人看片在线| 日韩精品乱码av一区二区| 精品久久久三级| 欧美日韩国产中文| 中文字幕在线精品| 精品福利二区三区| 欧美国产日韩在线播放| 欧美三级网址| 国产亚洲欧美色| av一区在线观看| 国产一区成人| 欧美日韩国产第一页| 久久视频一区| 精品国产欧美成人夜夜嗨| 国产黄色片中文字幕| 国产永久在线观看| 精品日韩欧美| 高清国产一区| av首页在线| 久久99久久99精品中文字幕| 中文在线中文字幕| 欧美日韩国产亚洲一区| 亚洲高清免费一级二级三级| 亚洲二区自拍| 香蕉视频亚洲一级| 国产日韩精品电影| 国产欧美综合在线观看第十页| 在线国产一级| 日韩中文字幕视频在线观看| 欧美日韩亚洲第一| 国产又粗又猛又爽又黄91精品| 国产日韩av一区| 亚洲一区中文字幕在线观看| 日韩一级二级三级| 国产激情在线视频| 久久91精品久久久久久秒播| 精品乱人伦一区二区三区| 精品色蜜蜜精品视频在线观看| 一本一道综合狠狠老| 快she精品国产999| 日韩在线观看视频一区| 欧美日韩国产区| 欧美一级日韩不卡播放免费| 尤物在线精品| 最新中文在线视频| 国产乱码在线| 精品一二三区视频| 日韩精品在线网站| 国产劲爆久久| 日韩美女中文字幕| 国产 日韩 欧美 综合| 国产欧美日韩精品高清二区综合区| 亚洲一区三区在线观看| 日韩一级在线免费观看| 欧美日韩人人澡狠狠躁视频| 亚洲福利视频在线| 色猫猫国产区一区二在线视频| 久久久精品网| 欧美一级一级性生活免费录像| 精品国产免费观看一区| 国产日韩免费| 美日韩精品免费视频| 国产三级视频在线| 免费高清特黄a大片| 91精品国产自产在线观看永久∴| 日韩专区视频网站| 中文在线中文字幕| 国产欧美日韩在线观看| 国产乱国产乱300精品| 日韩在线 中文字幕| 亚洲黄色一区二区| 久久香蕉一区| 国产成人精品亚洲| 91精品啪在线观看国产60岁| 日韩中文字幕在线观看视频| 国产日韩亚洲欧美| 久久99蜜桃精品| 日韩久久精品视频| 国产三级在线| 在线视频你懂得一区| 亚洲经典中文字幕| 国产日韩中文字幕在线| 日韩欧美在线中文字幕| 一二三区精品福利视频| 日韩中文字幕第一页| 高清不卡一区二区| 欧美日韩国产一区在线| 亚洲一区日韩在线| 中文字幕国产欧美| 久久精品国产99| 日韩在线视频免费观看| 亚洲国产欧美久久| 久久精品国产视频| 欧美亚洲国产日韩2020| 久久99久久久久久久噜噜| 婷婷精品视频| 国产伦精品免费视频| 日韩精品大片| 韩国av一区二区| 99国产一区| 精品熟女一区二区三区| 亚洲一区在线观看免费| 免费在线视频一级不卡| 在线黄色国产电影| 欧美在线日韩精品| 国产三级视频网站| 国产在线中文字幕| 91精品国产调教在线观看| 日韩在线观看精品| 免费精品国产自产拍观看| 中文字幕 乱码 中文乱码91| 精品中文字幕在线| 中文在线一区二区| 91av久久久| 91精品国产91久久久久青草| 日韩欧美在线中文字幕| 色猫猫国产区一区二在线视频| 欧美在线日韩| 久久精品一级爱片| 国产在线拍揄自揄拍| 国产乱国产乱300精品| 成人ww免费完整版在线观看| 亚洲福利精品在线| 日韩在线二区| 欧美日韩精品免费看| 久久激情中文| 日韩国产欧美亚洲| 精品中文在线| 亚洲视频资源在线| www..com日韩| 国产一区久久久| 91久久久久| 欧美色视频一区二区三区在线观看| 亚洲三级网站|