国产无遮挡裸体免费直播视频,久久精品国产蜜臀av,动漫在线视频一区二区,欧亚日韩一区二区三区,久艹在线 免费视频,国产精品美女网站免费,正在播放 97超级视频在线观看,斗破苍穹年番在线观看免费,51最新乱码中文字幕

Java8(291)之后禁用了TLS1.1使JDBC無(wú)法用SSL連接SqlServer2008的解決方法

 更新時(shí)間:2023年03月30日 08:31:50   作者:kfepiza  
這篇文章主要介紹了Java8(291)之后禁用了TLS1.1使JDBC無(wú)法用SSL連接SqlServer2008的解決方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下

Java8-291之后 , 禁用了TLS1.1 , 使JDBC無(wú)法用SSL連接SqlServer2008怎么辦,以下是解決辦法

修改java.security文件

1.找到j(luò)re的java.security文件

如果是jre , 在 {JAVA_HOME} / jre / lib / security中, 比如??

C:\Program Files\Java\jre1.8.0_301\lib\security

如果是Eclipse綠色免安裝便攜版
在安裝文件夾搜索java.security ,比如??

xxx\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_16.0.1.v20210528-1205\jre\conf\security

如果是window下的安裝版Eclipse
文件在c:/用戶文件夾/.p2/pool/plugins/…中, 例如??

C:\Users\admin\.p2\pool\plugins\org.eclipse.justj.openjdk.hotspot.jre.full.win32.x86_64_16.0.2.v20210721-1149\jre\conf\security

如果在C盤(pán)搜索java.security,可能搜出兩個(gè)以上,temp文件夾中也有

2.打開(kāi)java.security并搜索 “jdk.tls.disabledAlgorithms=”

jdk.tls.disabledAlgorithms=

可找到??

# Example:
#   jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048, \
#       rsa_pkcs1_sha1, secp224r1
jdk.tls.disabledAlgorithms=SSLv3, TLSv1, TLSv1.1, RC4, DES, MD5withRSA, \
    DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL

3.刪掉TLSv1, TLSv1.1,

刪掉后變?yōu)??

# Example:
#   jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048, \
#       rsa_pkcs1_sha1, secp224r1
jdk.tls.disabledAlgorithms=SSLv3,   RC4, DES, MD5withRSA, \
    DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL

4.保存,可以了

修改后的樣例,jre8可直接復(fù)制

已測(cè)試通過(guò)

#
# This is the "master security properties file".
#
# An alternate java.security properties file may be specified
# from the command line via the system property
#
#    -Djava.security.properties=<URL>
#
# This properties file appends to the master security properties file.
# If both properties files specify values for the same key, the value
# from the command-line properties file is selected, as it is the last
# one loaded.
#
# Also, if you specify
#
#    -Djava.security.properties==<URL> (2 equals),
#
# then that properties file completely overrides the master security
# properties file.
#
# To disable the ability to specify an additional properties file from
# the command line, set the key security.overridePropertiesFile
# to false in the master security properties file. It is set to true
# by default.

# In this file, various security properties are set for use by
# java.security classes. This is where users can statically register
# Cryptography Package Providers ("providers" for short). The term
# "provider" refers to a package or set of packages that supply a
# concrete implementation of a subset of the cryptography aspects of
# the Java Security API. A provider may, for example, implement one or
# more digital signature algorithms or message digest algorithms.
#
# Each provider must implement a subclass of the Provider class.
# To register a provider in this master security properties file,
# specify the provider and priority in the format
#
#    security.provider.<n>=<provName | className>
#
# This declares a provider, and specifies its preference
# order n. The preference order is the order in which providers are
# searched for requested algorithms (when no specific provider is
# requested). The order is 1-based; 1 is the most preferred, followed
# by 2, and so on.
#
# <provName> must specify the name of the Provider as passed to its super
# class java.security.Provider constructor. This is for providers loaded
# through the ServiceLoader mechanism.
#
# <className> must specify the subclass of the Provider class whose
# constructor sets the values of various properties that are required
# for the Java Security API to look up the algorithms or other
# facilities implemented by the provider. This is for providers loaded
# through classpath.
#
# Note: Providers can be dynamically registered instead by calls to
# either the addProvider or insertProviderAt method in the Security
# class.

#
# List of providers and their preference orders (see above):
#
security.provider.1=SUN
security.provider.2=SunRsaSign
security.provider.3=SunEC
security.provider.4=SunJSSE
security.provider.5=SunJCE
security.provider.6=SunJGSS
security.provider.7=SunSASL
security.provider.8=XMLDSig
security.provider.9=SunPCSC
security.provider.10=JdkLDAP
security.provider.11=JdkSASL
security.provider.12=SunMSCAPI
security.provider.13=SunPKCS11

#
# A list of preferred providers for specific algorithms. These providers will
# be searched for matching algorithms before the list of registered providers.
# Entries containing errors (parsing, etc) will be ignored. Use the
# -Djava.security.debug=jca property to debug these errors.
#
# The property is a comma-separated list of serviceType.algorithm:provider
# entries. The serviceType (example: "MessageDigest") is optional, and if
# not specified, the algorithm applies to all service types that support it.
# The algorithm is the standard algorithm name or transformation.
# Transformations can be specified in their full standard name
# (ex: AES/CBC/PKCS5Padding), or as partial matches (ex: AES, AES/CBC).
# The provider is the name of the provider. Any provider that does not
# also appear in the registered list will be ignored.
#
# There is a special serviceType for this property only to group a set of
# algorithms together. The type is "Group" and is followed by an algorithm
# keyword. Groups are to simplify and lessen the entries on the property
# line. Current groups are:
#   Group.SHA2 = SHA-224, SHA-256, SHA-384, SHA-512, SHA-512/224, SHA-512/256
#   Group.HmacSHA2 = HmacSHA224, HmacSHA256, HmacSHA384, HmacSHA512
#   Group.SHA2RSA = SHA224withRSA, SHA256withRSA, SHA384withRSA, SHA512withRSA
#   Group.SHA2DSA = SHA224withDSA, SHA256withDSA, SHA384withDSA, SHA512withDSA
#   Group.SHA2ECDSA = SHA224withECDSA, SHA256withECDSA, SHA384withECDSA, \
#                     SHA512withECDSA
#   Group.SHA3 = SHA3-224, SHA3-256, SHA3-384, SHA3-512
#   Group.HmacSHA3 = HmacSHA3-224, HmacSHA3-256, HmacSHA3-384, HmacSHA3-512
#
# Example:
#   jdk.security.provider.preferred=AES/GCM/NoPadding:SunJCE, \
#         MessageDigest.SHA-256:SUN, Group.HmacSHA2:SunJCE
#
#jdk.security.provider.preferred=


#
# Sun Provider SecureRandom seed source.
#
# Select the primary source of seed data for the "NativePRNG", "SHA1PRNG"
# and "DRBG" SecureRandom implementations in the "Sun" provider.
# (Other SecureRandom implementations might also use this property.)
#
# On Unix-like systems (for example, Linux/MacOS), the
# "NativePRNG", "SHA1PRNG" and "DRBG" implementations obtains seed data from
# special device files such as file:/dev/random.
#
# On Windows systems, specifying the URLs "file:/dev/random" or
# "file:/dev/urandom" will enable the native Microsoft CryptoAPI seeding
# mechanism for SHA1PRNG and DRBG.
#
# By default, an attempt is made to use the entropy gathering device
# specified by the "securerandom.source" Security property.  If an
# exception occurs while accessing the specified URL:
#
#     NativePRNG:
#         a default value of /dev/random will be used.  If neither
#         are available, the implementation will be disabled.
#         "file" is the only currently supported protocol type.
#
#     SHA1PRNG and DRBG:
#         the traditional system/thread activity algorithm will be used.
#
# The entropy gathering device can also be specified with the System
# property "java.security.egd". For example:
#
#   % java -Djava.security.egd=file:/dev/random MainClass
#
# Specifying this System property will override the
# "securerandom.source" Security property.
#
# In addition, if "file:/dev/random" or "file:/dev/urandom" is
# specified, the "NativePRNG" implementation will be more preferred than
# DRBG and SHA1PRNG in the Sun provider.
#
securerandom.source=file:/dev/random

#
# A list of known strong SecureRandom implementations.
#
# To help guide applications in selecting a suitable strong
# java.security.SecureRandom implementation, Java distributions should
# indicate a list of known strong implementations using the property.
#
# This is a comma-separated list of algorithm and/or algorithm:provider
# entries.
#
securerandom.strongAlgorithms=Windows-PRNG:SunMSCAPI,DRBG:SUN

#
# Sun provider DRBG configuration and default instantiation request.
#
# NIST SP 800-90Ar1 lists several DRBG mechanisms. Each can be configured
# with a DRBG algorithm name, and can be instantiated with a security strength,
# prediction resistance support, etc. This property defines the configuration
# and the default instantiation request of "DRBG" SecureRandom implementations
# in the SUN provider. (Other DRBG implementations can also use this property.)
# Applications can request different instantiation parameters like security
# strength, capability, personalization string using one of the
# getInstance(...,SecureRandomParameters,...) methods with a
# DrbgParameters.Instantiation argument, but other settings such as the
# mechanism and DRBG algorithm names are not currently configurable by any API.
#
# Please note that the SUN implementation of DRBG always supports reseeding.
#
# The value of this property is a comma-separated list of all configurable
# aspects. The aspects can appear in any order but the same aspect can only
# appear at most once. Its BNF-style definition is:
#
#   Value:
#     aspect { "," aspect }
#
#   aspect:
#     mech_name | algorithm_name | strength | capability | df
#
#   // The DRBG mechanism to use. Default "Hash_DRBG"
#   mech_name:
#     "Hash_DRBG" | "HMAC_DRBG" | "CTR_DRBG"
#
#   // The DRBG algorithm name. The "SHA-***" names are for Hash_DRBG and
#   // HMAC_DRBG, default "SHA-256". The "AES-***" names are for CTR_DRBG,
#   // default "AES-128" when using the limited cryptographic or "AES-256"
#   // when using the unlimited.
#   algorithm_name:
#     "SHA-224" | "SHA-512/224" | "SHA-256" |
#     "SHA-512/256" | "SHA-384" | "SHA-512" |
#     "AES-128" | "AES-192" | "AES-256"
#
#   // Security strength requested. Default "128"
#   strength:
#     "112" | "128" | "192" | "256"
#
#   // Prediction resistance and reseeding request. Default "none"
#   //  "pr_and_reseed" - Both prediction resistance and reseeding
#   //                    support requested
#   //  "reseed_only"   - Only reseeding support requested
#   //  "none"          - Neither prediction resistance not reseeding
#   //                    support requested
#   pr:
#     "pr_and_reseed" | "reseed_only" | "none"
#
#   // Whether a derivation function should be used. only applicable
#   // to CTR_DRBG. Default "use_df"
#   df:
#     "use_df" | "no_df"
#
# Examples,
#   securerandom.drbg.config=Hash_DRBG,SHA-224,112,none
#   securerandom.drbg.config=CTR_DRBG,AES-256,192,pr_and_reseed,use_df
#
# The default value is an empty string, which is equivalent to
#   securerandom.drbg.config=Hash_DRBG,SHA-256,128,none
#
securerandom.drbg.config=

#
# Class to instantiate as the javax.security.auth.login.Configuration
# provider.
#
login.configuration.provider=sun.security.provider.ConfigFile

#
# Default login configuration file
#
#login.config.url.1=file:${user.home}/.java.login.config

#
# Class to instantiate as the system Policy. This is the name of the class
# that will be used as the Policy object. The system class loader is used to
# locate this class.
#
policy.provider=sun.security.provider.PolicyFile

# The default is to have a single system-wide policy file,
# and a policy file in the user's home directory.
#
policy.url.1=file:${java.home}/conf/security/java.policy
policy.url.2=file:${user.home}/.java.policy

# Controls whether or not properties are expanded in policy and login
# configuration files. If set to false, properties (${...}) will not
# be expanded in policy and login configuration files. If commented out or
# set to an empty string, the default value is "false" for policy files and
# "true" for login configuration files.
#
policy.expandProperties=true

# Controls whether or not an extra policy or login configuration file is
# allowed to be passed on the command line with -Djava.security.policy=somefile
# or -Djava.security.auth.login.config=somefile. If commented out or set to
# an empty string, the default value is "false".
#
policy.allowSystemProperty=true

# whether or not we look into the IdentityScope for trusted Identities
# when encountering a 1.1 signed JAR file. If the identity is found
# and is trusted, we grant it AllPermission. Note: the default policy
# provider (sun.security.provider.PolicyFile) does not support this property.
#
policy.ignoreIdentityScope=false

#
# Default keystore type.
#
keystore.type=pkcs12

#
# Controls compatibility mode for JKS and PKCS12 keystore types.
#
# When set to 'true', both JKS and PKCS12 keystore types support loading
# keystore files in either JKS or PKCS12 format. When set to 'false' the
# JKS keystore type supports loading only JKS keystore files and the PKCS12
# keystore type supports loading only PKCS12 keystore files.
#
keystore.type.compat=true

#
# List of comma-separated packages that start with or equal this string
# will cause a security exception to be thrown when passed to the
# SecurityManager::checkPackageAccess method unless the corresponding
# RuntimePermission("accessClassInPackage."+package) has been granted.
#
package.access=sun.misc.,\
               sun.reflect.

#
# List of comma-separated packages that start with or equal this string
# will cause a security exception to be thrown when passed to the
# SecurityManager::checkPackageDefinition method unless the corresponding
# RuntimePermission("defineClassInPackage."+package) has been granted.
#
# By default, none of the class loaders supplied with the JDK call
# checkPackageDefinition.
#
package.definition=sun.misc.,\
                   sun.reflect.

#
# Determines whether this properties file can be appended to
# or overridden on the command line via -Djava.security.properties
#
security.overridePropertiesFile=true

#
# Determines the default key and trust manager factory algorithms for
# the javax.net.ssl package.
#
ssl.KeyManagerFactory.algorithm=SunX509
ssl.TrustManagerFactory.algorithm=PKIX

#
# The Java-level namelookup cache policy for successful lookups:
#
# any negative value: caching forever
# any positive value: the number of seconds to cache an address for
# zero: do not cache
#
# default value is forever (FOREVER). For security reasons, this
# caching is made forever when a security manager is set. When a security
# manager is not set, the default behavior in this implementation
# is to cache for 30 seconds.
#
# NOTE: setting this to anything other than the default value can have
#       serious security implications. Do not set it unless
#       you are sure you are not exposed to DNS spoofing attack.
#
#networkaddress.cache.ttl=-1

# The Java-level namelookup cache policy for failed lookups:
#
# any negative value: cache forever
# any positive value: the number of seconds to cache negative lookup results
# zero: do not cache
#
# In some Microsoft Windows networking environments that employ
# the WINS name service in addition to DNS, name service lookups
# that fail may take a noticeably long time to return (approx. 5 seconds).
# For this reason the default caching policy is to maintain these
# results for 10 seconds.
#
networkaddress.cache.negative.ttl=10

#
# Properties to configure OCSP for certificate revocation checking
#

# Enable OCSP
#
# By default, OCSP is not used for certificate revocation checking.
# This property enables the use of OCSP when set to the value "true".
#
# NOTE: SocketPermission is required to connect to an OCSP responder.
#
# Example,
#   ocsp.enable=true

#
# Location of the OCSP responder
#
# By default, the location of the OCSP responder is determined implicitly
# from the certificate being validated. This property explicitly specifies
# the location of the OCSP responder. The property is used when the
# Authority Information Access extension (defined in RFC 5280) is absent
# from the certificate or when it requires overriding.
#
# Example,
#   ocsp.responderURL=http://ocsp.example.net:80

#
# Subject name of the OCSP responder's certificate
#
# By default, the certificate of the OCSP responder is that of the issuer
# of the certificate being validated. This property identifies the certificate
# of the OCSP responder when the default does not apply. Its value is a string
# distinguished name (defined in RFC 2253) which identifies a certificate in
# the set of certificates supplied during cert path validation. In cases where
# the subject name alone is not sufficient to uniquely identify the certificate
# then both the "ocsp.responderCertIssuerName" and
# "ocsp.responderCertSerialNumber" properties must be used instead. When this
# property is set then those two properties are ignored.
#
# Example,
#   ocsp.responderCertSubjectName=CN=OCSP Responder, O=XYZ Corp

#
# Issuer name of the OCSP responder's certificate
#
# By default, the certificate of the OCSP responder is that of the issuer
# of the certificate being validated. This property identifies the certificate
# of the OCSP responder when the default does not apply. Its value is a string
# distinguished name (defined in RFC 2253) which identifies a certificate in
# the set of certificates supplied during cert path validation. When this
# property is set then the "ocsp.responderCertSerialNumber" property must also
# be set. When the "ocsp.responderCertSubjectName" property is set then this
# property is ignored.
#
# Example,
#   ocsp.responderCertIssuerName=CN=Enterprise CA, O=XYZ Corp

#
# Serial number of the OCSP responder's certificate
#
# By default, the certificate of the OCSP responder is that of the issuer
# of the certificate being validated. This property identifies the certificate
# of the OCSP responder when the default does not apply. Its value is a string
# of hexadecimal digits (colon or space separators may be present) which
# identifies a certificate in the set of certificates supplied during cert path
# validation. When this property is set then the "ocsp.responderCertIssuerName"
# property must also be set. When the "ocsp.responderCertSubjectName" property
# is set then this property is ignored.
#
# Example,
#   ocsp.responderCertSerialNumber=2A:FF:00

#
# Policy for failed Kerberos KDC lookups:
#
# When a KDC is unavailable (network error, service failure, etc), it is
# put inside a blacklist and accessed less often for future requests. The
# value (case-insensitive) for this policy can be:
#
# tryLast
#    KDCs in the blacklist are always tried after those not on the list.
#
# tryLess[:max_retries,timeout]
#    KDCs in the blacklist are still tried by their order in the configuration,
#    but with smaller max_retries and timeout values. max_retries and timeout
#    are optional numerical parameters (default 1 and 5000, which means once
#    and 5 seconds). Please notes that if any of the values defined here is
#    more than what is defined in krb5.conf, it will be ignored.
#
# Whenever a KDC is detected as available, it is removed from the blacklist.
# The blacklist is reset when krb5.conf is reloaded. You can add
# refreshKrb5Config=true to a JAAS configuration file so that krb5.conf is
# reloaded whenever a JAAS authentication is attempted.
#
# Example,
#   krb5.kdc.bad.policy = tryLast
#   krb5.kdc.bad.policy = tryLess:2,2000
#
krb5.kdc.bad.policy = tryLast

#
# Kerberos cross-realm referrals (RFC 6806)
#
# OpenJDK's Kerberos client supports cross-realm referrals as defined in
# RFC 6806. This allows to setup more dynamic environments in which clients
# do not need to know in advance how to reach the realm of a target principal
# (either a user or service).
#
# When a client issues an AS or a TGS request, the "canonicalize" option
# is set to announce support of this feature. A KDC server may fulfill the
# request or reply referring the client to a different one. If referred,
# the client will issue a new request and the cycle repeats.
#
# In addition to referrals, the "canonicalize" option allows the KDC server
# to change the client name in response to an AS request. For security reasons,
# RFC 6806 (section 11) FAST scheme is enforced.
#
# Disable Kerberos cross-realm referrals. Value may be overwritten with a
# System property (-Dsun.security.krb5.disableReferrals).
sun.security.krb5.disableReferrals=false

# Maximum number of AS or TGS referrals to avoid infinite loops. Value may
# be overwritten with a System property (-Dsun.security.krb5.maxReferrals).
sun.security.krb5.maxReferrals=5

#
# This property contains a list of disabled EC Named Curves that can be included
# in the jdk.[tls|certpath|jar].disabledAlgorithms properties.  To include this
# list in any of the disabledAlgorithms properties, add the property name as
# an entry.
#jdk.disabled.namedCurves=

#
# Algorithm restrictions for certification path (CertPath) processing
#
# In some environments, certain algorithms or key lengths may be undesirable
# for certification path building and validation.  For example, "MD2" is
# generally no longer considered to be a secure hash algorithm.  This section
# describes the mechanism for disabling algorithms based on algorithm name
# and/or key length.  This includes algorithms used in certificates, as well
# as revocation information such as CRLs and signed OCSP Responses.
# The syntax of the disabled algorithm string is described as follows:
#   DisabledAlgorithms:
#       " DisabledAlgorithm { , DisabledAlgorithm } "
#
#   DisabledAlgorithm:
#       AlgorithmName [Constraint] { '&' Constraint } | IncludeProperty
#
#   AlgorithmName:
#       (see below)
#
#   Constraint:
#       KeySizeConstraint | CAConstraint | DenyAfterConstraint |
#       UsageConstraint
#
#   KeySizeConstraint:
#       keySize Operator KeyLength
#
#   Operator:
#       <= | < | == | != | >= | >
#
#   KeyLength:
#       Integer value of the algorithm's key length in bits
#
#   CAConstraint:
#       jdkCA
#
#   DenyAfterConstraint:
#       denyAfter YYYY-MM-DD
#
#   UsageConstraint:
#       usage [TLSServer] [TLSClient] [SignedJAR]
#
#   IncludeProperty:
#       include <security property>
#
# The "AlgorithmName" is the standard algorithm name of the disabled
# algorithm. See the Java Security Standard Algorithm Names Specification
# for information about Standard Algorithm Names.  Matching is
# performed using a case-insensitive sub-element matching rule.  (For
# example, in "SHA1withECDSA" the sub-elements are "SHA1" for hashing and
# "ECDSA" for signatures.)  If the assertion "AlgorithmName" is a
# sub-element of the certificate algorithm name, the algorithm will be
# rejected during certification path building and validation.  For example,
# the assertion algorithm name "DSA" will disable all certificate algorithms
# that rely on DSA, such as NONEwithDSA, SHA1withDSA.  However, the assertion
# will not disable algorithms related to "ECDSA".
#
# The "IncludeProperty" allows a implementation-defined security property that
# can be included in the disabledAlgorithms properties.  These properties are
# to help manage common actions easier across multiple disabledAlgorithm
# properties.
# There is one defined security property:  jdk.disabled.NamedCurves
# See the property for more specific details.
#
#
# A "Constraint" defines restrictions on the keys and/or certificates for
# a specified AlgorithmName:
#
#   KeySizeConstraint:
#     keySize Operator KeyLength
#       The constraint requires a key of a valid size range if the
#       "AlgorithmName" is of a key algorithm.  The "KeyLength" indicates
#       the key size specified in number of bits.  For example,
#       "RSA keySize <= 1024" indicates that any RSA key with key size less
#       than or equal to 1024 bits should be disabled, and
#       "RSA keySize < 1024, RSA keySize > 2048" indicates that any RSA key
#       with key size less than 1024 or greater than 2048 should be disabled.
#       This constraint is only used on algorithms that have a key size.
#
#   CAConstraint:
#     jdkCA
#       This constraint prohibits the specified algorithm only if the
#       algorithm is used in a certificate chain that terminates at a marked
#       trust anchor in the lib/security/cacerts keystore.  If the jdkCA
#       constraint is not set, then all chains using the specified algorithm
#       are restricted.  jdkCA may only be used once in a DisabledAlgorithm
#       expression.
#       Example:  To apply this constraint to SHA-1 certificates, include
#       the following:  "SHA1 jdkCA"
#
#   DenyAfterConstraint:
#     denyAfter YYYY-MM-DD
#       This constraint prohibits a certificate with the specified algorithm
#       from being used after the date regardless of the certificate's
#       validity.  JAR files that are signed and timestamped before the
#       constraint date with certificates containing the disabled algorithm
#       will not be restricted.  The date is processed in the UTC timezone.
#       This constraint can only be used once in a DisabledAlgorithm
#       expression.
#       Example:  To deny usage of RSA 2048 bit certificates after Feb 3 2020,
#       use the following:  "RSA keySize == 2048 & denyAfter 2020-02-03"
#
#   UsageConstraint:
#     usage [TLSServer] [TLSClient] [SignedJAR]
#       This constraint prohibits the specified algorithm for
#       a specified usage.  This should be used when disabling an algorithm
#       for all usages is not practical. 'TLSServer' restricts the algorithm
#       in TLS server certificate chains when server authentication is
#       performed. 'TLSClient' restricts the algorithm in TLS client
#       certificate chains when client authentication is performed.
#       'SignedJAR' constrains use of certificates in signed jar files.
#       The usage type follows the keyword and more than one usage type can
#       be specified with a whitespace delimiter.
#       Example:  "SHA1 usage TLSServer TLSClient"
#
# When an algorithm must satisfy more than one constraint, it must be
# delimited by an ampersand '&'.  For example, to restrict certificates in a
# chain that terminate at a distribution provided trust anchor and contain
# RSA keys that are less than or equal to 1024 bits, add the following
# constraint:  "RSA keySize <= 1024 & jdkCA".
#
# All DisabledAlgorithms expressions are processed in the order defined in the
# property.  This requires lower keysize constraints to be specified
# before larger keysize constraints of the same algorithm.  For example:
# "RSA keySize < 1024 & jdkCA, RSA keySize < 2048".
#
# Note: The algorithm restrictions do not apply to trust anchors or
# self-signed certificates.
#
# Note: This property is currently used by Oracle's PKIX implementation. It
# is not guaranteed to be examined and used by other implementations.
#
# Example:
#   jdk.certpath.disabledAlgorithms=MD2, DSA, RSA keySize < 2048
#
#
jdk.certpath.disabledAlgorithms=MD2, MD5, SHA1 jdkCA & usage TLSServer, \
    RSA keySize < 1024, DSA keySize < 1024, EC keySize < 224

#
# Legacy algorithms for certification path (CertPath) processing and
# signed JAR files.
#
# In some environments, a certain algorithm or key length may be undesirable
# but is not yet disabled.
#
# Tools such as keytool and jarsigner may emit warnings when these legacy
# algorithms are used. See the man pages for those tools for more information.
#
# The syntax is the same as the "jdk.certpath.disabledAlgorithms" and
# "jdk.jar.disabledAlgorithms" security properties.
#
# Note: This property is currently used by the JDK Reference
# implementation. It is not guaranteed to be examined and used by other
# implementations.

jdk.security.legacyAlgorithms=SHA1, \
    RSA keySize < 2048, DSA keySize < 2048

#
# Algorithm restrictions for signed JAR files
#
# In some environments, certain algorithms or key lengths may be undesirable
# for signed JAR validation.  For example, "MD2" is generally no longer
# considered to be a secure hash algorithm.  This section describes the
# mechanism for disabling algorithms based on algorithm name and/or key length.
# JARs signed with any of the disabled algorithms or key sizes will be treated
# as unsigned.
#
# The syntax of the disabled algorithm string is described as follows:
#   DisabledAlgorithms:
#       " DisabledAlgorithm { , DisabledAlgorithm } "
#
#   DisabledAlgorithm:
#       AlgorithmName [Constraint] { '&' Constraint }
#
#   AlgorithmName:
#       (see below)
#
#   Constraint:
#       KeySizeConstraint | DenyAfterConstraint
#
#   KeySizeConstraint:
#       keySize Operator KeyLength
#
#   DenyAfterConstraint:
#       denyAfter YYYY-MM-DD
#
#   Operator:
#       <= | < | == | != | >= | >
#
#   KeyLength:
#       Integer value of the algorithm's key length in bits
#
# Note: This property is currently used by the JDK Reference
# implementation. It is not guaranteed to be examined and used by other
# implementations.
#
# See "jdk.certpath.disabledAlgorithms" for syntax descriptions.
#
jdk.jar.disabledAlgorithms=MD2, MD5, RSA keySize < 1024, \
      DSA keySize < 1024

#
# Algorithm restrictions for Secure Socket Layer/Transport Layer Security
# (SSL/TLS/DTLS) processing
#
# In some environments, certain algorithms or key lengths may be undesirable
# when using SSL/TLS/DTLS.  This section describes the mechanism for disabling
# algorithms during SSL/TLS/DTLS security parameters negotiation, including
# protocol version negotiation, cipher suites selection, named groups
# selection, signature schemes selection, peer authentication and key
# exchange mechanisms.
#
# Disabled algorithms will not be negotiated for SSL/TLS connections, even
# if they are enabled explicitly in an application.
#
# For PKI-based peer authentication and key exchange mechanisms, this list
# of disabled algorithms will also be checked during certification path
# building and validation, including algorithms used in certificates, as
# well as revocation information such as CRLs and signed OCSP Responses.
# This is in addition to the jdk.certpath.disabledAlgorithms property above.
#
# See the specification of "jdk.certpath.disabledAlgorithms" for the
# syntax of the disabled algorithm string.
#
# Note: The algorithm restrictions do not apply to trust anchors or
# self-signed certificates.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
# Example:
#   jdk.tls.disabledAlgorithms=MD5, SSLv3, DSA, RSA keySize < 2048, \
#       rsa_pkcs1_sha1, secp224r1
jdk.tls.disabledAlgorithms=SSLv3,   RC4, DES, MD5withRSA, \
    DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL

#
# Legacy algorithms for Secure Socket Layer/Transport Layer Security (SSL/TLS)
# processing in JSSE implementation.
#
# In some environments, a certain algorithm may be undesirable but it
# cannot be disabled because of its use in legacy applications.  Legacy
# algorithms may still be supported, but applications should not use them
# as the security strength of legacy algorithms are usually not strong enough
# in practice.
#
# During SSL/TLS security parameters negotiation, legacy algorithms will
# not be negotiated unless there are no other candidates.
#
# The syntax of the legacy algorithms string is described as this Java
# BNF-style:
#   LegacyAlgorithms:
#       " LegacyAlgorithm { , LegacyAlgorithm } "
#
#   LegacyAlgorithm:
#       AlgorithmName (standard JSSE algorithm name)
#
# See the specification of security property "jdk.certpath.disabledAlgorithms"
# for the syntax and description of the "AlgorithmName" notation.
#
# Per SSL/TLS specifications, cipher suites have the form:
#       SSL_KeyExchangeAlg_WITH_CipherAlg_MacAlg
# or
#       TLS_KeyExchangeAlg_WITH_CipherAlg_MacAlg
#
# For example, the cipher suite TLS_RSA_WITH_AES_128_CBC_SHA uses RSA as the
# key exchange algorithm, AES_128_CBC (128 bits AES cipher algorithm in CBC
# mode) as the cipher (encryption) algorithm, and SHA-1 as the message digest
# algorithm for HMAC.
#
# The LegacyAlgorithm can be one of the following standard algorithm names:
#     1. JSSE cipher suite name, e.g., TLS_RSA_WITH_AES_128_CBC_SHA
#     2. JSSE key exchange algorithm name, e.g., RSA
#     3. JSSE cipher (encryption) algorithm name, e.g., AES_128_CBC
#     4. JSSE message digest algorithm name, e.g., SHA
#
# See SSL/TLS specifications and the Java Security Standard Algorithm Names
# Specification for information about the algorithm names.
#
# Note: If a legacy algorithm is also restricted through the
# jdk.tls.disabledAlgorithms property or the
# java.security.AlgorithmConstraints API (See
# javax.net.ssl.SSLParameters.setAlgorithmConstraints()),
# then the algorithm is completely disabled and will not be negotiated.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
# There is no guarantee the property will continue to exist or be of the
# same syntax in future releases.
#
# Example:
#   jdk.tls.legacyAlgorithms=DH_anon, DES_CBC, SSL_RSA_WITH_RC4_128_MD5
#
jdk.tls.legacyAlgorithms=NULL, anon, RC4, DES, 3DES_EDE_CBC

#
# The pre-defined default finite field Diffie-Hellman ephemeral (DHE)
# parameters for Transport Layer Security (SSL/TLS/DTLS) processing.
#
# In traditional SSL/TLS/DTLS connections where finite field DHE parameters
# negotiation mechanism is not used, the server offers the client group
# parameters, base generator g and prime modulus p, for DHE key exchange.
# It is recommended to use dynamic group parameters.  This property defines
# a mechanism that allows you to specify custom group parameters.
#
# The syntax of this property string is described as this Java BNF-style:
#   DefaultDHEParameters:
#       DefinedDHEParameters { , DefinedDHEParameters }
#
#   DefinedDHEParameters:
#       "{" DHEPrimeModulus , DHEBaseGenerator "}"
#
#   DHEPrimeModulus:
#       HexadecimalDigits
#
#   DHEBaseGenerator:
#       HexadecimalDigits
#
#   HexadecimalDigits:
#       HexadecimalDigit { HexadecimalDigit }
#
#   HexadecimalDigit: one of
#       0 1 2 3 4 5 6 7 8 9 A B C D E F a b c d e f
#
# Whitespace characters are ignored.
#
# The "DefinedDHEParameters" defines the custom group parameters, prime
# modulus p and base generator g, for a particular size of prime modulus p.
# The "DHEPrimeModulus" defines the hexadecimal prime modulus p, and the
# "DHEBaseGenerator" defines the hexadecimal base generator g of a group
# parameter.  It is recommended to use safe primes for the custom group
# parameters.
#
# If this property is not defined or the value is empty, the underlying JSSE
# provider's default group parameter is used for each connection.
#
# If the property value does not follow the grammar, or a particular group
# parameter is not valid, the connection will fall back and use the
# underlying JSSE provider's default group parameter.
#
# Note: This property is currently used by OpenJDK's JSSE implementation. It
# is not guaranteed to be examined and used by other implementations.
#
# Example:
#   jdk.tls.server.defaultDHEParameters=
#       { \
#       FFFFFFFF FFFFFFFF C90FDAA2 2168C234 C4C6628B 80DC1CD1 \
#       29024E08 8A67CC74 020BBEA6 3B139B22 514A0879 8E3404DD \
#       EF9519B3 CD3A431B 302B0A6D F25F1437 4FE1356D 6D51C245 \
#       E485B576 625E7EC6 F44C42E9 A637ED6B 0BFF5CB6 F406B7ED \
#       EE386BFB 5A899FA5 AE9F2411 7C4B1FE6 49286651 ECE65381 \
#       FFFFFFFF FFFFFFFF, 2}

#
# TLS key limits on symmetric cryptographic algorithms
#
# This security property sets limits on algorithms key usage in TLS 1.3.
# When the amount of data encrypted exceeds the algorithm value listed below,
# a KeyUpdate message will trigger a key change.  This is for symmetric ciphers
# with TLS 1.3 only.
#
# The syntax for the property is described below:
#   KeyLimits:
#       " KeyLimit { , KeyLimit } "
#
#   WeakKeyLimit:
#       AlgorithmName Action Length
#
#   AlgorithmName:
#       A full algorithm transformation.
#
#   Action:
#       KeyUpdate
#
#   Length:
#       The amount of encrypted data in a session before the Action occurs
#       This value may be an integer value in bytes, or as a power of two, 2^29.
#
#   KeyUpdate:
#       The TLS 1.3 KeyUpdate handshake process begins when the Length amount
#       is fulfilled.
#
# Note: This property is currently used by OpenJDK's JSSE implementation. It
# is not guaranteed to be examined and used by other implementations.
#
jdk.tls.keyLimits=AES/GCM/NoPadding KeyUpdate 2^37

#
# Cryptographic Jurisdiction Policy defaults
#
# Import and export control rules on cryptographic software vary from
# country to country.  By default, Java provides two different sets of
# cryptographic policy files[1]:
#
#     unlimited:  These policy files contain no restrictions on cryptographic
#                 strengths or algorithms
#
#     limited:    These policy files contain more restricted cryptographic
#                 strengths
#
# The default setting is determined by the value of the "crypto.policy"
# Security property below. If your country or usage requires the
# traditional restrictive policy, the "limited" Java cryptographic
# policy is still available and may be appropriate for your environment.
#
# If you have restrictions that do not fit either use case mentioned
# above, Java provides the capability to customize these policy files.
# The "crypto.policy" security property points to a subdirectory
# within <java-home>/conf/security/policy/ which can be customized.
# Please see the <java-home>/conf/security/policy/README.txt file or consult
# the Java Security Guide/JCA documentation for more information.
#
# YOU ARE ADVISED TO CONSULT YOUR EXPORT/IMPORT CONTROL COUNSEL OR ATTORNEY
# TO DETERMINE THE EXACT REQUIREMENTS.
#
# [1] Please note that the JCE for Java SE, including the JCE framework,
# cryptographic policy files, and standard JCE providers provided with
# the Java SE, have been reviewed and approved for export as mass market
# encryption item by the US Bureau of Industry and Security.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
crypto.policy=unlimited

#
# The policy for the XML Signature secure validation mode. The mode is
# enabled by setting the property "org.jcp.xml.dsig.secureValidation" to
# true with the javax.xml.crypto.XMLCryptoContext.setProperty() method,
# or by running the code with a SecurityManager.
#
#   Policy:
#       Constraint {"," Constraint }
#   Constraint:
#       AlgConstraint | MaxTransformsConstraint | MaxReferencesConstraint |
#       ReferenceUriSchemeConstraint | KeySizeConstraint | OtherConstraint
#   AlgConstraint
#       "disallowAlg" Uri
#   MaxTransformsConstraint:
#       "maxTransforms" Integer
#   MaxReferencesConstraint:
#       "maxReferences" Integer
#   ReferenceUriSchemeConstraint:
#       "disallowReferenceUriSchemes" String { String }
#   KeySizeConstraint:
#       "minKeySize" KeyAlg Integer
#   OtherConstraint:
#       "noDuplicateIds" | "noRetrievalMethodLoops"
#
# For AlgConstraint, Uri is the algorithm URI String that is not allowed.
# See the XML Signature Recommendation for more information on algorithm
# URI Identifiers. For KeySizeConstraint, KeyAlg is the standard algorithm
# name of the key type (ex: "RSA"). If the MaxTransformsConstraint,
# MaxReferencesConstraint or KeySizeConstraint (for the same key type) is
# specified more than once, only the last entry is enforced.
#
# Note: This property is currently used by the JDK Reference implementation. It
# is not guaranteed to be examined and used by other implementations.
#
jdk.xml.dsig.secureValidationPolicy=\
    disallowAlg http://www.w3.org/TR/1999/REC-xslt-19991116,\
    disallowAlg http://www.w3.org/2001/04/xmldsig-more#rsa-md5,\
    disallowAlg http://www.w3.org/2001/04/xmldsig-more#hmac-md5,\
    disallowAlg http://www.w3.org/2001/04/xmldsig-more#md5,\
    maxTransforms 5,\
    maxReferences 30,\
    disallowReferenceUriSchemes file http https,\
    minKeySize RSA 1024,\
    minKeySize DSA 1024,\
    minKeySize EC 224,\
    noDuplicateIds,\
    noRetrievalMethodLoops

#
# Serialization system-wide filter
#
# A filter, if configured, is used by java.io.ObjectInputStream during
# deserialization to check the contents of the stream.
# A filter is configured as a sequence of patterns, each pattern is either
# matched against the name of a class in the stream or defines a limit.
# Patterns are separated by ";" (semicolon).
# Whitespace is significant and is considered part of the pattern.
#
# If the system property jdk.serialFilter is also specified, it supersedes
# the security property value defined here.
#
# If a pattern includes a "=", it sets a limit.
# If a limit appears more than once the last value is used.
# Limits are checked before classes regardless of the order in the
# sequence of patterns.
# If any of the limits are exceeded, the filter status is REJECTED.
#
#   maxdepth=value - the maximum depth of a graph
#   maxrefs=value  - the maximum number of internal references
#   maxbytes=value - the maximum number of bytes in the input stream
#   maxarray=value - the maximum array length allowed
#
# Other patterns, from left to right, match the class or package name as
# returned from Class.getName.
# If the class is an array type, the class or package to be matched is the
# element type.
# Arrays of any number of dimensions are treated the same as the element type.
# For example, a pattern of "!example.Foo", rejects creation of any instance or
# array of example.Foo.
#
# If the pattern starts with "!", the status is REJECTED if the remaining
# pattern is matched; otherwise the status is ALLOWED if the pattern matches.
# If the pattern contains "/", the non-empty prefix up to the "/" is the
# module name;
#   if the module name matches the module name of the class then
#   the remaining pattern is matched with the class name.
#   If there is no "/", the module name is not compared.
# If the pattern ends with ".**" it matches any class in the package and all
# subpackages.
# If the pattern ends with ".*" it matches any class in the package.
# If the pattern ends with "*", it matches any class with the pattern as a
# prefix.
# If the pattern is equal to the class name, it matches.
# Otherwise, the status is UNDECIDED.
#
#jdk.serialFilter=pattern;pattern

#
# RMI Registry Serial Filter
#
# The filter pattern uses the same format as jdk.serialFilter.
# This filter can override the builtin filter if additional types need to be
# allowed or rejected from the RMI Registry or to decrease limits but not
# to increase limits.
# If the limits (maxdepth, maxrefs, or maxbytes) are exceeded, the object is rejected.
#
# Each non-array type is allowed or rejected if it matches one of the patterns,
# evaluated from left to right, and is otherwise allowed. Arrays of any
# component type, including subarrays and arrays of primitives, are allowed.
#
# Array construction of any component type, including subarrays and arrays of
# primitives, are allowed unless the length is greater than the maxarray limit.
# The filter is applied to each array element.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
# The built-in filter allows subclasses of allowed classes and
# can approximately be represented as the pattern:
#
#sun.rmi.registry.registryFilter=\
#    maxarray=1000000;\
#    maxdepth=20;\
#    java.lang.String;\
#    java.lang.Number;\
#    java.lang.reflect.Proxy;\
#    java.rmi.Remote;\
#    sun.rmi.server.UnicastRef;\
#    sun.rmi.server.RMIClientSocketFactory;\
#    sun.rmi.server.RMIServerSocketFactory;\
#    java.rmi.activation.ActivationID;\
#    java.rmi.server.UID
#
# RMI Distributed Garbage Collector (DGC) Serial Filter
#
# The filter pattern uses the same format as jdk.serialFilter.
# This filter can override the builtin filter if additional types need to be
# allowed or rejected from the RMI DGC.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
# The builtin DGC filter can approximately be represented as the filter pattern:
#
#sun.rmi.transport.dgcFilter=\
#    java.rmi.server.ObjID;\
#    java.rmi.server.UID;\
#    java.rmi.dgc.VMID;\
#    java.rmi.dgc.Lease;\
#    maxdepth=5;maxarray=10000

#
# JCEKS Encrypted Key Serial Filter
#
# This filter, if configured, is used by the JCEKS KeyStore during the
# deserialization of the encrypted Key object stored inside a key entry.
# If not configured or the filter result is UNDECIDED (i.e. none of the patterns
# matches), the filter configured by jdk.serialFilter will be consulted.
#
# If the system property jceks.key.serialFilter is also specified, it supersedes
# the security property value defined here.
#
# The filter pattern uses the same format as jdk.serialFilter. The default
# pattern allows java.lang.Enum, java.security.KeyRep, java.security.KeyRep$Type,
# and javax.crypto.spec.SecretKeySpec and rejects all the others.
jceks.key.serialFilter = java.base/java.lang.Enum;java.base/java.security.KeyRep;\
  java.base/java.security.KeyRep$Type;java.base/javax.crypto.spec.SecretKeySpec;!*

# The iteration count used for password-based encryption (PBE) in JCEKS
# keystores. Values in the range 10000 to 5000000 are considered valid.
# If the value is out of this range, or is not a number, or is unspecified;
# a default of 200000 is used.
#
# If the system property jdk.jceks.iterationCount is also specified, it
# supersedes the security property value defined here.
#
#jdk.jceks.iterationCount = 200000

#
# PKCS12 KeyStore properties
#
# The following properties, if configured, are used by the PKCS12 KeyStore
# implementation during the creation of a new keystore. Several of the
# properties may also be used when modifying an existing keystore. The
# properties can be overridden by a KeyStore API that specifies its own
# algorithms and parameters.
#
# If an existing PKCS12 keystore is loaded and then stored, the algorithm and
# parameter used to generate the existing Mac will be reused. If the existing
# keystore does not have a Mac, no Mac will be created while storing. If there
# is at least one certificate in the existing keystore, the algorithm and
# parameters used to encrypt the last certificate in the existing keystore will
# be reused to encrypt all certificates while storing. If the last certificate
# in the existing keystore is not encrypted, all certificates will be stored
# unencrypted. If there is no certificate in the existing keystore, any newly
# added certificate will be encrypted (or stored unencrypted if algorithm
# value is "NONE") using the "keystore.pkcs12.certProtectionAlgorithm" and
# "keystore.pkcs12.certPbeIterationCount" values defined here. Existing private
# and secret key(s) are not changed. Newly set private and secret key(s) will
# be encrypted using the "keystore.pkcs12.keyProtectionAlgorithm" and
# "keystore.pkcs12.keyPbeIterationCount" values defined here.
#
# In order to apply new algorithms and parameters to all entries in an
# existing keystore, one can create a new keystore and add entries in the
# existing keystore into the new keystore. This can be achieved by calling the
# "keytool -importkeystore" command.
#
# If a system property of the same name is also specified, it supersedes the
# security property value defined here.
#
# If the property is set to an illegal value,
# an iteration count that is not a positive integer, or an unknown algorithm
# name, an exception will be thrown when the property is used.
# If the property is not set or empty, a default value will be used.
#
# Note: These properties are currently used by the JDK Reference implementation.
# They are not guaranteed to be examined and used by other implementations.

# The algorithm used to encrypt a certificate. This can be any non-Hmac PBE
# algorithm defined in the Cipher section of the Java Security Standard
# Algorithm Names Specification. When set to "NONE", the certificate
# is not encrypted. The default value is "PBEWithHmacSHA256AndAES_256".
#keystore.pkcs12.certProtectionAlgorithm = PBEWithHmacSHA256AndAES_256

# The iteration count used by the PBE algorithm when encrypting a certificate.
# This value must be a positive integer. The default value is 10000.
#keystore.pkcs12.certPbeIterationCount = 10000

# The algorithm used to encrypt a private key or secret key. This can be
# any non-Hmac PBE algorithm defined in the Cipher section of the Java
# Security Standard Algorithm Names Specification. The value must not be "NONE".
# The default value is "PBEWithHmacSHA256AndAES_256".
#keystore.pkcs12.keyProtectionAlgorithm = PBEWithHmacSHA256AndAES_256

# The iteration count used by the PBE algorithm when encrypting a private key
# or a secret key. This value must be a positive integer. The default value
# is 10000.
#keystore.pkcs12.keyPbeIterationCount = 10000

# The algorithm used to calculate the optional MacData at the end of a PKCS12
# file. This can be any HmacPBE algorithm defined in the Mac section of the
# Java Security Standard Algorithm Names Specification. When set to "NONE",
# no Mac is generated. The default value is "HmacPBESHA256".
#keystore.pkcs12.macAlgorithm = HmacPBESHA256

# The iteration count used by the MacData algorithm. This value must be a
# positive integer. The default value is 10000.
#keystore.pkcs12.macIterationCount = 10000

#
# Enhanced exception message information
#
# By default, exception messages should not include potentially sensitive
# information such as file names, host names, or port numbers. This property
# accepts one or more comma separated values, each of which represents a
# category of enhanced exception message information to enable. Values are
# case-insensitive. Leading and trailing whitespaces, surrounding each value,
# are ignored. Unknown values are ignored.
#
# NOTE: Use caution before setting this property. Setting this property
# exposes sensitive information in Exceptions, which could, for example,
# propagate to untrusted code or be emitted in stack traces that are
# inadvertently disclosed and made accessible over a public network.
#
# The categories are:
#
#  hostInfo - IOExceptions thrown by java.net.Socket and the socket types in the
#             java.nio.channels package will contain enhanced exception
#             message information
#
#  jar      - enables more detailed information in the IOExceptions thrown
#             by classes in the java.util.jar package
#
# The property setting in this file can be overridden by a system property of
# the same name, with the same syntax and possible values.
#
#jdk.includeInExceptions=hostInfo,jar

#
# Disabled mechanisms for the Simple Authentication and Security Layer (SASL)
#
# Disabled mechanisms will not be negotiated by both SASL clients and servers.
# These mechanisms will be ignored if they are specified in the "mechanisms"
# argument of "Sasl.createSaslClient" or the "mechanism" argument of
# "Sasl.createSaslServer".
#
# The value of this property is a comma-separated list of SASL mechanisms.
# The mechanisms are case-sensitive. Whitespaces around the commas are ignored.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
# Example:
#   jdk.sasl.disabledMechanisms=PLAIN, CRAM-MD5, DIGEST-MD5
jdk.sasl.disabledMechanisms=

#
# Policies for distrusting Certificate Authorities (CAs).
#
# This is a comma separated value of one or more case-sensitive strings, each
# of which represents a policy for determining if a CA should be distrusted.
# The supported values are:
#
#   SYMANTEC_TLS : Distrust TLS Server certificates anchored by a Symantec
#   root CA and issued after April 16, 2019 unless issued by one of the
#   following subordinate CAs which have a later distrust date:
#     1. Apple IST CA 2 - G1, SHA-256 fingerprint:
#        AC2B922ECFD5E01711772FEA8ED372DE9D1E2245FCE3F57A9CDBEC77296A424B
#        Distrust after December 31, 2019.
#     2. Apple IST CA 8 - G1, SHA-256 fingerprint:
#        A4FE7C7F15155F3F0AEF7AAA83CF6E06DEB97CA3F909DF920AC1490882D488ED
#        Distrust after December 31, 2019.
#
# Leading and trailing whitespace surrounding each value are ignored.
# Unknown values are ignored. If the property is commented out or set to the
# empty String, no policies are enforced.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be supported by other SE implementations. Also, this
# property does not override other security properties which can restrict
# certificates such as jdk.tls.disabledAlgorithms or
# jdk.certpath.disabledAlgorithms; those restrictions are still enforced even
# if this property is not enabled.
#
jdk.security.caDistrustPolicies=SYMANTEC_TLS

#
# FilePermission path canonicalization
#
# This security property dictates how the path argument is processed and stored
# while constructing a FilePermission object. If the value is set to true, the
# path argument is canonicalized and FilePermission methods (such as implies,
# equals, and hashCode) are implemented based on this canonicalized result.
# Otherwise, the path argument is not canonicalized and FilePermission methods are
# implemented based on the original input. See the implementation note of the
# FilePermission class for more details.
#
# If a system property of the same name is also specified, it supersedes the
# security property value defined here.
#
# The default value for this property is false.
#
jdk.io.permissionsUseCanonicalPath=false

#
# Policies for the proxy_impersonator Kerberos ccache configuration entry
#
# The proxy_impersonator ccache configuration entry indicates that the ccache
# is a synthetic delegated credential for use with S4U2Proxy by an intermediate
# server. The ccache file should also contain the TGT of this server and
# an evidence ticket from the default principal of the ccache to this server.
#
# This security property determines how Java uses this configuration entry.
# There are 3 possible values:
#
#  no-impersonate     - Ignore this configuration entry, and always act as
#                       the owner of the TGT (if it exists).
#
#  try-impersonate    - Try impersonation when this configuration entry exists.
#                       If no matching TGT or evidence ticket is found,
#                       fallback to no-impersonate.
#
#  always-impersonate - Always impersonate when this configuration entry exists.
#                       If no matching TGT or evidence ticket is found,
#                       no initial credential is read from the ccache.
#
# The default value is "always-impersonate".
#
# If a system property of the same name is also specified, it supersedes the
# security property value defined here.
#
#jdk.security.krb5.default.initiate.credential=always-impersonate

#
# Trust Anchor Certificates - CA Basic Constraint check
#
# X.509 v3 certificates used as Trust Anchors (to validate signed code or TLS
# connections) must have the cA Basic Constraint field set to 'true'. Also, if
# they include a Key Usage extension, the keyCertSign bit must be set. These
# checks, enabled by default, can be disabled for backward-compatibility
# purposes with the jdk.security.allowNonCaAnchor System and Security
# properties. In the case that both properties are simultaneously set, the
# System value prevails. The default value of the property is "false".
#
#jdk.security.allowNonCaAnchor=true

#
# The default Character set name (java.nio.charset.Charset.forName())
# for converting TLS ALPN values between byte arrays and Strings.
# Prior versions of the JDK may use UTF-8 as the default charset. If
# you experience interoperability issues, setting this property to UTF-8
# may help.
#
# jdk.tls.alpnCharset=UTF-8
jdk.tls.alpnCharset=ISO_8859_1

#
# JNDI Object Factories Filter
#
# This filter is used by the JNDI runtime to control the set of object factory classes
# which will be allowed to instantiate objects from object references returned by
# naming/directory systems. The factory class named by the reference instance will be
# matched against this filter. The filter property supports pattern-based filter syntax
# with the same format as jdk.serialFilter.
#
# Each pattern is matched against the factory class name to allow or disallow it's
# instantiation. The access to a factory class is allowed unless the filter returns
# REJECTED.
#
# Note: This property is currently used by the JDK Reference implementation.
# It is not guaranteed to be examined and used by other implementations.
#
# If the system property jdk.jndi.object.factoriesFilter is also specified, it supersedes
# the security property value defined here. The default value of the property is "*".
#
# The default pattern value allows any object factory class specified by the reference
# instance to recreate the referenced object.
#jdk.jndi.object.factoriesFilter=*

到此這篇關(guān)于Java8(291)之后禁用了TLS1.1使JDBC無(wú)法用SSL連接SqlServer2008的解決方法的文章就介紹到這了,更多相關(guān)JDBC無(wú)法用SSL連接SqlServer2008內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • Java中redisTemplate注入失敗NullPointerException異常問(wèn)題解決

    Java中redisTemplate注入失敗NullPointerException異常問(wèn)題解決

    這篇文章主要介紹了Java中redisTemplate注入失敗NullPointerException異常問(wèn)題解決,文中通過(guò)示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2023-08-08
  • Java使用觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警功能示例

    Java使用觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警功能示例

    這篇文章主要介紹了Java使用觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警功能,結(jié)合完整實(shí)例形式分析了java觀察者模式實(shí)現(xiàn)氣象局高溫預(yù)警的相關(guān)接口定義、使用、功能操作技巧,并總結(jié)了其設(shè)計(jì)原則與適用場(chǎng)合,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
    2018-04-04
  • Spring Cloud Gateway 攔截響應(yīng)問(wèn)題分析(數(shù)據(jù)截?cái)鄦?wèn)題)

    Spring Cloud Gateway 攔截響應(yīng)問(wèn)題分析(數(shù)據(jù)截?cái)鄦?wèn)題)

    這篇文章主要介紹了Spring Cloud Gateway 攔截響應(yīng)問(wèn)題分析(數(shù)據(jù)截?cái)鄦?wèn)題),本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2023-01-01
  • Java開(kāi)發(fā)過(guò)程中關(guān)于異常處理的詳解

    Java開(kāi)發(fā)過(guò)程中關(guān)于異常處理的詳解

    異常是程序中的一些錯(cuò)誤,但不是所有錯(cuò)誤都是異常,且錯(cuò)誤有時(shí)候是可以避免的。比如說(shuō),你的代碼少一個(gè)分號(hào),那運(yùn)行出來(lái)結(jié)果是提示是錯(cuò)誤 java.lang.Error;如果你用System.out.println(11/0),那么你是因?yàn)槟阌?做了除數(shù),會(huì)拋出 java.lang.ArithmeticException 的異常
    2021-10-10
  • 使用Java Servlet生成動(dòng)態(tài)二維碼的實(shí)現(xiàn)步驟

    使用Java Servlet生成動(dòng)態(tài)二維碼的實(shí)現(xiàn)步驟

    在現(xiàn)代互聯(lián)網(wǎng)時(shí)代,二維碼廣泛應(yīng)用于各個(gè)領(lǐng)域,包括支付、認(rèn)證、信息傳遞等,在Web開(kāi)發(fā)中,通過(guò)Java Servlet生成動(dòng)態(tài)二維碼是一個(gè)常見(jiàn)的需求,本文將介紹如何使用Java Servlet結(jié)合Google的ZXing庫(kù)生成動(dòng)態(tài)二維碼,需要的朋友可以參考下
    2023-11-11
  • 使用java實(shí)現(xiàn)日志工具類分享

    使用java實(shí)現(xiàn)日志工具類分享

    這篇文章主要介紹的Java代碼工具類是用于書(shū)寫(xiě)日志信息到指定的文件,并且具有刪除之前日志文件的功能,需要的朋友可以參考下
    2014-03-03
  • 初識(shí)Spring Boot框架和快速入門(mén)

    初識(shí)Spring Boot框架和快速入門(mén)

    這篇文章主要介紹了初識(shí)Spring Boot框架學(xué)習(xí),小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過(guò)來(lái)看看吧
    2017-04-04
  • 深入理解Hibernate中的懶加載異常及解決方法

    深入理解Hibernate中的懶加載異常及解決方法

    這篇文章主要為大家介紹了深入理解Hibernate中的懶加載異常及解決方法示例詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪<BR>
    2023-10-10
  • java基礎(chǔ)之字符串編碼知識(shí)點(diǎn)總結(jié)

    java基礎(chǔ)之字符串編碼知識(shí)點(diǎn)總結(jié)

    這篇文章主要介紹了java基礎(chǔ)之字符串編碼總結(jié),文中有非常詳細(xì)的代碼示例,對(duì)正在學(xué)習(xí)java基礎(chǔ)的小伙伴們有很好的幫助,要的朋友可以參考下
    2021-04-04
  • Java CyclicBarrier源碼層分析與應(yīng)用

    Java CyclicBarrier源碼層分析與應(yīng)用

    這篇文章主要介紹了Java CyclicBarrier的源碼層分析與應(yīng)用,CyclicBarrier也叫同步屏障,可以讓一組線程達(dá)到一個(gè)屏障時(shí)被阻塞,直到最后一個(gè)線程達(dá)到屏障,感興趣的的朋友可以參考下
    2023-12-12

最新評(píng)論

我想看操逼黄色大片| 亚洲av极品精品在线观看| 国产普通话插插视频| 日韩成人综艺在线播放| 中文字幕av一区在线观看| 欧美 亚洲 另类综合| 欧美爆乳肉感大码在线观看| 欧美精品欧美极品欧美视频| 久草电影免费在线观看| 国产一级麻豆精品免费| 激情伦理欧美日韩中文字幕| 97a片免费在线观看| 成年女人免费播放视频| 少妇人妻二三区视频| 亚洲精品久久视频婷婷| av高潮迭起在线观看| mm131美女午夜爽爽爽| 性感美女诱惑福利视频| 亚洲护士一区二区三区| 色秀欧美视频第一页| 高潮喷水在线视频观看| 精品一区二区亚洲欧美| 一区二区三区四区视频在线播放| 香港三日本三韩国三欧美三级| 日曰摸日日碰夜夜爽歪歪| 亚洲综合另类精品小说| 丰满的子国产在线观看| 91久久人澡人人添人人爽乱| 一区二区三区另类在线 | av中文字幕网址在线| aⅴ五十路av熟女中出| 中文字幕视频一区二区在线观看| 11久久久久久久久久久| 玖玖一区二区在线观看| 91极品大一女神正在播放| 九色视频在线观看免费| 美女吃鸡巴操逼高潮视频| 非洲黑人一级特黄片| 在线视频精品你懂的| 人妻少妇性色欲欧美日韩| 日韩激情文学在线视频| 熟女俱乐部一二三区| 国产janese在线播放| 男人操女人逼逼视频网站| 亚洲av日韩av网站| 涩涩的视频在线观看视频| 国产亚洲成人免费在线观看| 1区2区3区不卡视频| 人妻久久久精品69系列| 黑人借宿ntr人妻的沦陷2| 亚洲av在线观看尤物| 中文字幕日韩无敌亚洲精品 | 一级黄色av在线观看| 青青草精品在线视频观看| 色伦色伦777国产精品| 国产精品亚洲а∨天堂免| 青青草成人福利电影| 亚洲国产香蕉视频在线播放| 日本人妻欲求不满中文字幕| av在线观看网址av| 福利午夜视频在线合集| 日本少妇高清视频xxxxx| 久久这里只有精品热视频| 久久这里只有精彩视频免费| av在线资源中文字幕| 成熟丰满熟妇高潮xx×xx| 香蕉av影视在线观看| 女生自摸在线观看一区二区三区 | 91精品视频在线观看免费| 热99re69精品8在线播放| 97国产福利小视频合集| 亚洲国产成人无码麻豆艾秋| 一区二区视频在线观看免费观看| 天天干天天操天天摸天天射| 国产密臀av一区二区三| 91麻豆精品久久久久| 免费男阳茎伸入女阳道视频| 2017亚洲男人天堂| 国产黄色大片在线免费播放| 动漫av网站18禁| 中文字幕AV在线免费看 | 天天摸天天亲天天舔天天操天天爽| 精品av久久久久久久| 久久久久只精品国产三级| 天堂av在线播放免费| 亚洲熟妇久久无码精品| av成人在线观看一区| 天天日天天透天天操| 国产一区二区久久久裸臀| www日韩a级s片av| 亚洲成人午夜电影在线观看 | 欧美成人猛片aaaaaaa| 一区二区三区日韩久久| 在线免费观看99视频| 日本人妻少妇18—xx| 成人亚洲精品国产精品| chinese国产盗摄一区二区 | 韩国AV无码不卡在线播放| 综合一区二区三区蜜臀| 亚洲av天堂在线播放| 又粗又长 明星操逼小视频| 日本女大学生的黄色小视频| 9l人妻人人爽人人爽| 天天日天天干天天爱| 97成人免费在线观看网站| 哥哥姐姐综合激情小说| 亚洲欧美久久久久久久久| 日本少妇在线视频大香蕉在线观看| 精品美女久久久久久| 欧美一区二区三区高清不卡tv| 天天躁日日躁狠狠躁av麻豆| 丝袜肉丝一区二区三区四区在线看| 成年美女黄网站18禁久久| 精品美女久久久久久| 一区二区三区在线视频福利| 91精品综合久久久久3d动漫| 国产麻豆剧果冻传媒app| 欧美视频综合第一页| 2020中文字幕在线播放| 国产va在线观看精品| 亚洲天堂av最新网址| yellow在线播放av啊啊啊| 日本真人性生活视频免费看| 自拍偷拍 国产资源| 性感美女诱惑福利视频| 亚洲午夜伦理视频在线| 成人激情文学网人妻| 国产真实灌醉下药美女av福利| 中文字幕人妻被公上司喝醉在线| 91p0rny九色露脸熟女| 精品美女福利在线观看| 亚洲天堂精品久久久| 中文字幕av男人天堂| 端庄人妻堕落挣扎沉沦| 在线观看的a站 最新| 中国视频一区二区三区| 黄色片黄色片wyaa| 亚洲午夜伦理视频在线| 91久久人澡人人添人人爽乱| 三级黄色亚洲成人av| 亚洲av男人天堂久久| 动漫美女的小穴视频| 97青青青手机在线视频| 99精品国产aⅴ在线观看| 欧美精品一区二区三区xxxx| 亚洲av午夜免费观看| 天天射夜夜操狠狠干| 日韩剧情片电影在线收看| 黄色大片免费观看网站| 大鸡吧插逼逼视频免费看| 成年女人免费播放视频| 久碰精品少妇中文字幕av| 亚洲国产最大av综合| 激情啪啪啪啪一区二区三区| 91高清成人在线视频| 美女吃鸡巴操逼高潮视频| 亚洲综合自拍视频一区| 人妻熟女中文字幕aⅴ在线| 适合午夜一个人看的视频| 欧美日本在线视频一区| 日噜噜噜夜夜噜噜噜天天噜噜噜| 干逼又爽又黄又免费的视频| 不戴胸罩引我诱的隔壁的人妻| 国产女孩喷水在线观看| 亚洲av香蕉一区区二区三区犇| 男人在床上插女人视频| 欧美80老妇人性视频| av视网站在线观看| av中文字幕福利网| free性日本少妇| 大屁股熟女一区二区三区| 自拍偷拍日韩欧美亚洲| 国产在线一区二区三区麻酥酥| 免费观看成年人视频在线观看| 国产成人一区二区三区电影网站| 一区二区三区精品日本| 天天日天天操天天摸天天舔| 中文字幕AV在线免费看 | 国产成人精品亚洲男人的天堂| 亚洲熟女久久久36d| 国产一区二区火爆视频| 99热久久这里只有精品| 99精品亚洲av无码国产另类| 亚洲另类在线免费观看| 日韩欧美国产一区ab| 日韩亚国产欧美三级涩爱| 国产精品伦理片一区二区| 天天做天天爽夜夜做少妇| 国产伊人免费在线播放| 国产成人精品av网站| 2022国产精品视频| 黄色片黄色片wyaa| 国产a级毛久久久久精品| 狠狠躁夜夜躁人人爽天天久天啪| 久久久久久9999久久久久| 亚洲天堂第一页中文字幕| 人妻av无码专区久久绿巨人| 亚洲va国产va欧美va在线| 午夜激情高清在线观看| 国产精品国产三级国产精东 | 爱有来生高清在线中文字幕| 不卡一不卡二不卡三| 午夜在线精品偷拍一区二| 国产精品福利小视频a| 中文字幕之无码色多多| okirakuhuhu在线观看| 国产欧美精品不卡在线| 日韩av中文在线免费观看| 日韩无码国产精品强奸乱伦| 丝袜美腿视频诱惑亚洲无| 精品老妇女久久9g国产| 亚洲蜜臀av一区二区三区九色| 亚洲va天堂va国产va久| 可以免费看的www视频你懂的| 午夜精品在线视频一区| 欧美xxx成人在线| 久草福利电影在线观看| 欧美熟妇一区二区三区仙踪林| 欧美在线一二三视频| 色呦呦视频在线观看视频| 久久h视频在线观看| 亚洲国产成人av在线一区| 亚洲精品国品乱码久久久久| 一区二区三区综合视频| 久久久91蜜桃精品ad| 久久99久久99精品影院| 极品丝袜一区二区三区| 夜夜嗨av一区二区三区中文字幕| 日韩精品中文字幕福利| 亚洲天堂第一页中文字幕| 亚洲另类在线免费观看| 天天干夜夜操天天舔| 青青草原色片网站在线观看| 啊用力插好舒服视频| 中文字幕在线一区精品| 日本人竟这样玩学生妹| 国产一区二区火爆视频| 老司机深夜免费福利视频在线观看| av网址在线播放大全| 99精品免费久久久久久久久a| 神马午夜在线观看视频| 中文字幕 亚洲av| 色秀欧美视频第一页| 老司机午夜精品视频资源| 一色桃子久久精品亚洲| 国产成人精品一区在线观看 | 天天摸天天亲天天舔天天操天天爽| 老司机欧美视频在线看| 天天色天天操天天舔| av手机免费在线观看高潮| 超碰97人人澡人人| 日本免费视频午夜福利视频| 93视频一区二区三区| 国产精彩对白一区二区三区| 超级碰碰在线视频免费观看| 欧美精品一区二区三区xxxx| 午夜美女福利小视频| 大学生A级毛片免费视频| 久久免看30视频口爆视频| 在线国产精品一区二区三区| 天天干天天日天天干天天操| 老师让我插进去69AV| 亚洲 中文字幕在线 日韩| 男女之间激情网午夜在线| 日韩成人性色生活片| 自拍偷拍 国产资源| 精品老妇女久久9g国产| 少妇人妻二三区视频 | 999久久久久999| 成人亚洲国产综合精品| 精品久久久久久久久久久99| 任你操视频免费在线观看| 97人妻色免费视频| 国产亚洲国产av网站在线| 福利视频网久久91| 日日爽天天干夜夜操| 伊人开心婷婷国产av| 亚洲精品国偷自产在线观看蜜桃| 中文字幕人妻av在线观看| 天天插天天色天天日| 不卡一区一区三区在线| 日韩欧美在线观看不卡一区二区| 亚洲精品国品乱码久久久久| 伊人日日日草夜夜草| 中文字幕 码 在线视频| asmr福利视频在线观看| 精品老妇女久久9g国产| 午夜精彩视频免费一区| 亚洲成人av一区在线| 六月婷婷激情一区二区三区| 自拍偷区二区三区麻豆| 班长撕开乳罩揉我胸好爽| 一区二区熟女人妻视频| 国产chinesehd精品麻豆| aaa久久久久久久久| 国产黄色片蝌蚪九色91| 国产黄色片在线收看| 国产使劲操在线播放| 欧美精品 日韩国产| 亚洲精品久久视频婷婷| 黑人乱偷人妻中文字幕| 国产精品成人xxxx| 在线观看成人国产电影| 天天躁日日躁狠狠躁av麻豆| 2018在线福利视频| av中文字幕福利网| 日日日日日日日日夜夜夜夜夜夜| 国产视频网站国产视频| 欧美精品欧美极品欧美视频| 午夜影院在线观看视频羞羞羞| 色97视频在线播放| 午夜精品福利一区二区三区p | 日韩欧美国产精品91| 男女啪啪视频免费在线观看| 国产午夜亚洲精品不卡在线观看| 日本a级视频老女人| 亚洲 中文字幕在线 日韩| 天天操天天爽天天干| 欧美精品国产综合久久| 久久久久久久99精品| 国产高清精品一区二区三区| 91精品啪在线免费| 好太好爽好想要免费| 国产精选一区在线播放| 中文字幕一区的人妻欧美日韩| 亚洲另类综合一区小说| 午夜蜜桃一区二区三区| 天天做天天爽夜夜做少妇| 欧美在线精品一区二区三区视频 | 欧美va亚洲va天堂va| 亚洲专区激情在线观看视频| 2020久久躁狠狠躁夜夜躁| 欧洲国产成人精品91铁牛tv| 五月天久久激情视频| 日韩人妻丝袜中文字幕| 福利在线视频网址导航| 日韩伦理短片在线观看| 国产va精品免费观看| 1769国产精品视频免费观看| 欧美乱妇无乱码一区二区| 欧美日本aⅴ免费视频| 人妻少妇一区二区三区蜜桃| 91久久国产成人免费网站| 中文字幕av男人天堂| 欧美xxx成人在线| 一级黄片大鸡巴插入美女| 五十路人妻熟女av一区二区| 亚欧在线视频你懂的| 天天干夜夜操啊啊啊| 精品亚洲中文字幕av| 又黄又刺激的午夜小视频| 新婚人妻聚会被中出| 青青青青青青青青青国产精品视频| 爆乳骚货内射骚货内射在线| 狠狠操操操操操操操操操| 国产在线自在拍91国语自产精品| 天干天天天色天天日天天射| 69精品视频一区二区在线观看| 大黑人性xxxxbbbb| 免费观看国产综合视频| 日韩av有码一区二区三区4 | 午夜精品久久久久久99热| 北条麻妃高跟丝袜啪啪| 91国产资源在线视频| 熟女俱乐部一二三区| 很黄很污很色的午夜网站在线观看| 不卡精品视频在线观看| 亚洲人妻30pwc| 久久丁香花五月天色婷婷| 成人av电影免费版| 玖玖一区二区在线观看| 五十路熟女人妻一区二| 婷婷久久久综合中文字幕| 青青操免费日综合视频观看| 亚洲国产40页第21页| 免费在线观看污污视频网站| 亚洲精品乱码久久久久久密桃明 | 亚洲乱码中文字幕在线| 2025年人妻中文字幕乱码在线| 男女啪啪啪啪啪的网站| 亚洲精品乱码久久久本| 天天干天天日天天干天天操 | 少妇被强干到高潮视频在线观看 | 人妻久久久精品69系列| 国产精品国产三级国产精东| 一级黄色av在线观看| 亚洲图片欧美校园春色| 久久香蕉国产免费天天| 欧美精品黑人性xxxx| huangse网站在线观看| 亚洲av无码成人精品区辽| 伊人开心婷婷国产av| 一区二区在线视频中文字幕 | 欧美怡红院视频在线观看| 偷拍美女一区二区三区| 欧洲欧美日韩国产在线| 日韩不卡中文在线视频网站| 青青伊人一精品视频| 99精品国产免费久久| 免费看国产av网站| av在线免费中文字幕| 亚洲欧美激情人妻偷拍| 青娱乐最新视频在线| 天天日天天操天天摸天天舔| 在线观看的a站 最新| 国产精品国产精品一区二区| 亚洲精品色在线观看视频| 亚洲码av无色中文| 影音先锋女人av噜噜色| 国产在线拍揄自揄视频网站| 一区二区三区四区中文| 久久久久久久久久性潮| 啪啪啪操人视频在线播放| 天天草天天色天天干| 天天通天天透天天插| 午夜的视频在线观看| 年轻的人妻被夫上司侵犯| 国产一区二区三免费视频| 边摸边做超爽毛片18禁色戒| 黄片三级三级三级在线观看| 337p日本大胆欧美人| 一区二区三区四区中文| 久久香蕉国产免费天天| 天天通天天透天天插| 韩国女主播精品视频网站| v888av在线观看视频| 亚洲精品无码色午夜福利理论片| av中文在线天堂精品| 国产精品久久久久网| 在线 中文字幕 一区| 久久久人妻一区二区| 天天草天天色天天干| 欧亚日韩一区二区三区观看视频| 欧美日本国产自视大全| 97a片免费在线观看| 亚洲人妻国产精品综合| 人妻无码色噜噜狠狠狠狠色| 亚洲成人激情视频免费观看了 | 国产女人露脸高潮对白视频| 国产精品久久久久久久久福交| 毛片av在线免费看| 好吊视频—区二区三区| av欧美网站在线观看| 孕妇奶水仑乱A级毛片免费看| 最后99天全集在线观看| 日日操夜夜撸天天干| 国产亚洲成人免费在线观看| 色呦呦视频在线观看视频| 久草福利电影在线观看| 成熟丰满熟妇高潮xx×xx| 五十路老熟女码av| 亚洲精品午夜久久久久| 亚洲av第国产精品| 国产福利小视频大全| 天天日天天干天天干天天日| 韩国亚洲欧美超一级在线播放视频| 欧美日本aⅴ免费视频| 欧美精品激情在线最新观看视频| 国产精品大陆在线2019不卡| 亚洲推理片免费看网站| 国产视频在线视频播放| 无码日韩人妻精品久久| av高潮迭起在线观看| 绯色av蜜臀vs少妇| 视频久久久久久久人妻| 人妻无码色噜噜狠狠狠狠色 | 99热久久这里只有精品| 日本三极片视频网站观看| 日韩剧情片电影在线收看| 亚洲卡1卡2卡三卡四老狼| 国产九色91在线视频| 五十路熟女人妻一区二区9933| 亚洲精品午夜aaa久久| 97色视频在线观看| 日韩精品电影亚洲一区| 日韩美女精品视频在线观看网站| 绝色少妇高潮3在线观看| 亚洲欧美清纯唯美另类| 欧美成人黄片一区二区三区| 久碰精品少妇中文字幕av | 97资源人妻免费在线视频| 欧美 亚洲 另类综合| 91亚洲手机在线视频播放| 中英文字幕av一区| 亚洲一区二区三区精品乱码| 免费在线黄色观看网站| 日本高清在线不卡一区二区| 欧美xxx成人在线| 人妻素人精油按摩中出| 一区二区三区欧美日韩高清播放| 精品一区二区三区三区色爱| 97精品人妻一区二区三区精品| 丰满少妇人妻xxxxx| 噜噜色噜噜噜久色超碰| huangse网站在线观看| 亚洲综合在线观看免费| 亚洲高清国产拍青青草原| 亚洲一区二区三区五区| 2012中文字幕在线高清| 亚洲中文精品字幕在线观看 | 99的爱精品免费视频| 黄色片黄色片wyaa| 一区二区三区毛片国产一区| 99热久久极品热亚洲| 中文字幕av男人天堂| 粗大的内捧猛烈进出爽大牛汉子| 11久久久久久久久久久| 自拍偷区二区三区麻豆| 一区二区三区日本伦理| 99国内小视频在现欢看| 色爱av一区二区三区| 视频二区在线视频观看| 日本午夜久久女同精女女| 人人超碰国字幕观看97| 综合激情网激情五月天| 超级av免费观看一区二区三区| 自拍偷拍日韩欧美亚洲| 人妻在线精品录音叫床| 91大屁股国产一区二区| 亚洲人妻av毛片在线| 国产成人无码精品久久久电影| 班长撕开乳罩揉我胸好爽| 视频一区 视频二区 视频| 亚洲人人妻一区二区三区| 日本欧美视频在线观看三区| 亚洲成人精品女人久久久| 欧美一区二区三区在线资源 | 不卡一不卡二不卡三| 亚洲国产精品久久久久蜜桃| 人人超碰国字幕观看97| 国产黄网站在线观看播放| 天天射夜夜操狠狠干| 久久久久久久亚洲午夜综合福利| 天天色天天舔天天射天天爽| 四川五十路熟女av| 亚洲va国产va欧美精品88| 伊人综合aⅴ在线网| 精品视频国产在线观看| 中文字幕日本人妻中出| 日本熟女精品一区二区三区| av一区二区三区人妻| 亚洲 中文 自拍 无码| 成人av免费不卡在线观看| 久久久久久97三级| 制丝袜业一区二区三区| 黑人巨大精品欧美视频| 欧美色呦呦最新网址| 免费观看成年人视频在线观看| 日韩美女搞黄视频免费| 欧美日韩v中文在线| 中文字幕乱码人妻电影| 中文字幕一区二区自拍| 五月激情婷婷久久综合网| 一区二区在线视频中文字幕| 欧美在线精品一区二区三区视频 | 中文字幕av一区在线观看| 成人av天堂丝袜在线观看 | 亚洲国产在人线放午夜| 国产va精品免费观看| 亚洲成人线上免费视频观看| 最新91九色国产在线观看| 欧美精品久久久久久影院| 亚洲欧洲av天堂综合| 国产欧美日韩第三页| 福利视频网久久91| 视频一区二区在线免费播放| 国产激情av网站在线观看| 少妇与子乱在线观看| 午夜激情久久不卡一区二区 | eeuss鲁片一区二区三区| 91精品国产91久久自产久强| 国产chinesehd精品麻豆| 亚洲福利精品视频在线免费观看| 日韩精品二区一区久久| 亚洲另类在线免费观看| 亚洲一区二区三区在线高清| AV天堂一区二区免费试看| 国产亚洲天堂天天一区| 亚洲美女自偷自拍11页| 国产极品美女久久久久久| 精品久久久久久高潮| 中文字幕乱码人妻电影| 亚洲av琪琪男人的天堂| 97年大学生大白天操逼| 免费一级黄色av网站| 成人色综合中文字幕| 亚洲另类伦春色综合小| 97少妇精品在线观看| 国产一区二区三免费视频| 日本熟妇色熟妇在线观看| 午夜场射精嗯嗯啊啊视频| 青青青青草手机在线视频免费看| 在线免费视频 自拍| 北条麻妃av在线免费观看| 日本在线不卡免费视频| 一区二区视频在线观看免费观看| 欧美日本aⅴ免费视频| 亚洲国产美女一区二区三区软件| 插小穴高清无码中文字幕| 日韩伦理短片在线观看| 国产精品中文av在线播放| 91国内精品久久久久精品一| 成人乱码一区二区三区av| 国产精品入口麻豆啊啊啊| 自拍偷拍,中文字幕| 欧美另类一区二区视频| free性日本少妇| 五十路人妻熟女av一区二区| 日本熟妇丰满厨房55| 九九热99视频在线观看97| 男女之间激情网午夜在线| 99久久超碰人妻国产| 欧美日韩人妻久久精品高清国产| 91快播视频在线观看| 国产麻豆剧果冻传媒app| 人人在线视频一区二区| av乱码一区二区三区| 亚洲男人在线天堂网| 亚洲精品麻豆免费在线观看| 狠狠嗨日韩综合久久| 亚洲精品乱码久久久本| 中文字幕高清在线免费播放 | 国产性生活中老年人视频网站| 成人激情文学网人妻| 久久艹在线观看视频| 日本av在线一区二区三区| 日本一本午夜在线播放| www日韩毛片av| 欧美精品欧美极品欧美视频| 在线亚洲天堂色播av电影| 超碰97人人做人人爱| 亚洲自拍偷拍综合色| 欧美日韩v中文在线| 国产91嫩草久久成人在线视频| 又粗又长 明星操逼小视频| 天天日天天鲁天天操| 3337p日本欧洲大胆色噜噜| 亚洲天堂有码中文字幕视频 | 丝袜肉丝一区二区三区四区在线看| 免费观看污视频网站| 亚洲无码一区在线影院| 天天日天天鲁天天操| 91国产在线免费播放| 日本乱人一区二区三区| www骚国产精品视频| jiuse91九色视频| 视频 国产 精品 熟女 | 国产精品人久久久久久| 人妻丝袜榨强中文字幕| 99精品免费观看视频| 天天色天天操天天舔| 9国产精品久久久久老师| 色秀欧美视频第一页| 狠狠的往里顶撞h百合| 午夜精品亚洲精品五月色| 国产精品久久久久网| av天堂资源最新版在线看| 免费看国产又粗又猛又爽又黄视频 | 天天日天天添天天爽| 黄色三级网站免费下载| 国产在线免费观看成人| av一区二区三区人妻| 夜夜嗨av一区二区三区中文字幕| 一级a看免费观看网站| 国产精品久久久久国产三级试频| 国产av国片精品一区二区| 一级a看免费观看网站| 18禁美女黄网站色大片下载| 免费一级黄色av网站| 老有所依在线观看完整版| 成人影片高清在线观看| 搞黄色在线免费观看| 久久丁香花五月天色婷婷| 11久久久久久久久久久| 天天色天天操天天透| 偷拍自拍国产在线视频| 91精品一区二区三区站长推荐| 青青尤物在线观看视频网站| 亚洲免费在线视频网站| 丁香花免费在线观看中文字幕| 欧美日韩国产一区二区三区三州 | 黄色视频在线观看高清无码| 国产精品自拍视频大全| 亚洲国产欧美一区二区丝袜黑人| 亚洲成人激情av在线| 日本午夜爽爽爽爽爽视频在线观看 | 色狠狠av线不卡香蕉一区二区 | 成人免费做爰高潮视频| 天天日天天敢天天干| 大骚逼91抽插出水视频| 天天干天天操天天爽天天摸 | 一色桃子人妻一区二区三区| 新97超碰在线观看| lutube在线成人免费看| 国产露脸对白在线观看| 国产精品久久久久国产三级试频| 黄色无码鸡吧操逼视频| 在线网站你懂得老司机| 欧美乱妇无乱码一区二区| 欧美视频不卡一区四区| 日韩中文字幕福利av| 又粗又硬又猛又黄免费30| 亚洲午夜电影之麻豆| 亚洲欧美激情国产综合久久久| 国产白袜脚足J棉袜在线观看| 色综合久久无码中文字幕波多| 精品乱子伦一区二区三区免费播| 日韩欧美亚洲熟女人妻| 亚洲欧美综合另类13p| 精品亚洲国产中文自在线| 天天爽夜夜爽人人爽QC| 99精品国产免费久久| 国产高清精品极品美女| 日日摸夜夜添夜夜添毛片性色av| 韩国黄色一级二级三级| 超级碰碰在线视频免费观看| 午夜久久久久久久精品熟女| 激情人妻校园春色亚洲欧美| 天天插天天狠天天操| 亚洲熟女女同志女同| 成人伊人精品色xxxx视频| 亚洲熟妇无码一区二区三区| 日韩三级黄色片网站| 首之国产AV医生和护士小芳| 社区自拍揄拍尻屁你懂的| 黄色三级网站免费下载| 2020国产在线不卡视频| 日美女屁股黄邑视频| 91人妻精品一区二区在线看| 热久久只有这里有精品| 91传媒一区二区三区| 男人的天堂在线黄色| 美女吃鸡巴操逼高潮视频| 亚洲一区二区三区五区| 可以免费看的www视频你懂的| www,久久久,com| 亚洲的电影一区二区三区| 欧美成人猛片aaaaaaa| 91大屁股国产一区二区| 91色九色porny| 日本成人不卡一区二区| 国产av福利网址大全| 亚洲精品国产综合久久久久久久久| 91社福利《在线观看| 五月精品丁香久久久久福利社| 91大屁股国产一区二区| 欧美天堂av无线av欧美| 天天日天天透天天操| 国产又粗又猛又爽又黄的视频美国| aaa久久久久久久久| 91大神福利视频网| av天堂中文免费在线| 午夜精品一区二区三区4| 欧美亚洲偷拍自拍色图| 成人H精品动漫在线无码播放| 手机看片福利盒子日韩在线播放| 国产aⅴ一线在线观看| 激情综合治理六月婷婷| 国产片免费观看在线观看| 亚洲在线一区二区欧美| 久久久久久性虐视频| 91大神福利视频网| 成人网18免费视频版国产| japanese五十路熟女熟妇| 100%美女蜜桃视频| 精品久久久久久久久久久99| 最近的中文字幕在线mv视频| 亚洲精品一区二区三区老狼| 国产一区二区视频观看| 伊人综合aⅴ在线网| 久久久久久性虐视频| 91一区精品在线观看| 日本少妇精品免费视频| 日本精品一区二区三区在线视频。| 亚洲福利天堂久久久久久| 亚洲欧美色一区二区| 韩国一级特黄大片做受| h国产小视频福利在线观看| 精品久久久久久久久久久久人妻| 99热久久这里只有精品8| 中文字幕日韩无敌亚洲精品| 亚洲无码一区在线影院| 日本女大学生的黄色小视频| 日本韩国免费一区二区三区视频| 75国产综合在线视频| 青青草国内在线视频精选| avjpm亚洲伊人久久| 2020av天堂网在线观看| 亚洲成av人无码不卡影片一| 大胸性感美女羞爽操逼毛片| 欧洲日韩亚洲一区二区三区| 亚洲av男人的天堂你懂的| 欧美成人一二三在线网| 日本精品一区二区三区在线视频。| 阴茎插到阴道里面的视频| 中字幕人妻熟女人妻a62v网| 孕妇奶水仑乱A级毛片免费看| 丝袜国产专区在线观看| 亚洲少妇人妻无码精品| 国产麻豆91在线视频| 91‖亚洲‖国产熟女| 91中文字幕免费在线观看| 精品黑人一区二区三区久久国产| 999九九久久久精品| 久久久超爽一二三av| 国产自拍在线观看成人| 天天躁夜夜躁日日躁a麻豆| 成人精品视频99第一页| 国产乱弄免费视频观看| 天天操天天干天天艹| 欧美日韩人妻久久精品高清国产| 大陆av手机在线观看| 欧美一区二区三区在线资源| 国产亚洲四十路五十路| 哥哥姐姐综合激情小说| 青青草原网站在线观看| 韩国AV无码不卡在线播放| 五十路熟女av天堂| 熟女少妇激情五十路| 99人妻视频免费在线| 1区2区3区不卡视频| 日韩北条麻妃一区在线| 韩国三级aaaaa高清视频 | 亚洲男人在线天堂网| 一级黄色av在线观看| 亚洲精品一区二区三区老狼| 亚洲欧美成人综合视频| 韩国一级特黄大片做受| 午夜精品一区二区三区4| av完全免费在线观看av| 成人av免费不卡在线观看| 99久久99久国产黄毛片| 五月天中文字幕内射| 国产又粗又硬又大视频| 日韩人妻xxxxx| 经典av尤物一区二区| 大骚逼91抽插出水视频| aⅴ五十路av熟女中出| 丝袜美腿欧美另类 中文字幕| 久久尻中国美女视频| 欲乱人妻少妇在线视频裸| 日韩成人性色生活片| 精品suv一区二区69| 中文字幕乱码av资源| 亚洲精品高清自拍av| av大全在线播放免费| 国产成人午夜精品福利| 在线免费观看av日韩| 北条麻妃肉色丝袜视频| tube69日本少妇| 日本高清成人一区二区三区| 午夜精彩视频免费一区| 欧美区一区二区三视频| 青青青青青免费视频| 亚洲一区二区三区av网站| 一区二区熟女人妻视频| 亚洲国产中文字幕啊啊啊不行了| 全国亚洲男人的天堂| 久久人人做人人妻人人玩精品vr| 亚洲人一区二区中文字幕| 国产自拍黄片在线观看| 午夜成午夜成年片在线观看| 淫秽激情视频免费观看| 亚洲图片偷拍自拍区| 亚洲精品国产在线电影| 日韩美女搞黄视频免费| 亚洲精品中文字幕下载| 99精品国产aⅴ在线观看| 在线免费观看欧美小视频| 欧美黑人性猛交xxxxⅹooo| 黑人3p华裔熟女普通话| 玩弄人妻熟妇性色av少妇| 精品国产成人亚洲午夜| 国产精品久久久久国产三级试频| 日本熟女50视频免费| 少妇人妻100系列| 三级黄色亚洲成人av| 亚洲精品欧美日韩在线播放| 91国内精品久久久久精品一 | 亚洲成人av一区久久| 一区二区三区日本伦理| 亚洲欧美福利在线观看| 国产黄色大片在线免费播放| 一二三区在线观看视频| 97精品成人一区二区三区| 久久久久只精品国产三级| 久久久久久国产精品| sw137 中文字幕 在线| 国产视频网站国产视频| 国产性色生活片毛片春晓精品 | av一本二本在线观看| 亚洲av极品精品在线观看| 鸡巴操逼一级黄色气| 日韩加勒比东京热二区| 亚洲国产欧美一区二区三区久久| 秋霞午夜av福利经典影视| 精品美女久久久久久| 国产性色生活片毛片春晓精品 | 521精品视频在线观看| 人妻久久无码中文成人| 黑人变态深video特大巨大| 亚洲成人av在线一区二区| 11久久久久久久久久久| 免费看美女脱光衣服的视频| 91综合久久亚洲综合| 国产黄色a级三级三级三级| 自拍偷拍日韩欧美亚洲| 精品视频国产在线观看| 亚洲 图片 欧美 图片| 福利在线视频网址导航| 国产实拍勾搭女技师av在线| 午夜精品一区二区三区4| 天天干天天操天天爽天天摸| 国产在线观看黄色视频| 欧美精品激情在线最新观看视频| 国产av一区2区3区| 性感美女福利视频网站| lutube在线成人免费看| 亚洲精品精品国产综合| 欧美日韩国产一区二区三区三州| 欧美精产国品一二三产品价格| 激情人妻校园春色亚洲欧美| 大鸡巴操b视频在线| 精品少妇一二三视频在线| 中文字幕人妻av在线观看| 国产白袜脚足J棉袜在线观看| 欧美日韩精品永久免费网址| 亚洲天堂第一页中文字幕| 3344免费偷拍视频| 亚洲综合在线视频可播放| 久碰精品少妇中文字幕av | 蜜臀成人av在线播放| 香港三日本三韩国三欧美三级| 日本一区精品视频在线观看| 999九九久久久精品| 丰满少妇翘臀后进式| 动漫精品视频在线观看| 天堂av在线播放免费| 天天日天天干天天搡| 国产精品手机在线看片| 国产一区二区三免费视频| 在线免费观看欧美小视频| 亚洲人一区二区中文字幕| 宅男噜噜噜666国产| 亚洲天堂av最新网址| 国产日韩精品电影7777| 中英文字幕av一区| brazzers欧熟精品系列| 国产乱弄免费视频观看| 免费岛国喷水视频在线观看| 51国产成人精品视频| 内射久久久久综合网| aaa久久久久久久久| 丰满的子国产在线观看| 日韩欧美国产一区不卡| 精品首页在线观看视频| 宅男噜噜噜666免费观看| 丝袜肉丝一区二区三区四区在线看| 97色视频在线观看| 免费在线福利小视频| 美女av色播在线播放| 超碰97免费人妻麻豆 | 中文字幕在线乱码一区二区 | 成人性黑人一级av| 激情小视频国产在线| 天天干天天日天天干天天操| 亚洲精品 日韩电影| 在线视频免费观看网| 青草亚洲视频在线观看| 国产揄拍高清国内精品对白| 日本性感美女视频网站| 黄色视频在线观看高清无码| 国产视频精品资源网站| 香港一级特黄大片在线播放 | 五十路息与子猛烈交尾视频 | 日韩av有码一区二区三区4| 青娱乐极品视频青青草| 欧美偷拍自拍色图片| 国产免费av一区二区凹凸四季| chinese国产盗摄一区二区| 日韩成人免费电影二区| 精品人人人妻人人玩日产欧| 黄色在线观看免费观看在线| 国产视频网站一区二区三区| 亚洲天堂精品久久久| 午夜精品福利一区二区三区p | 免费一级黄色av网站| 亚洲的电影一区二区三区| 欧美xxx成人在线| 亚洲欧美自拍另类图片| 清纯美女在线观看国产| 国产剧情演绎系列丝袜高跟| 初美沙希中文字幕在线| 精品美女久久久久久| 边摸边做超爽毛片18禁色戒| 国产精品人妻熟女毛片av久| 人人爱人人妻人人澡39| 91亚洲精品干熟女蜜桃频道| 熟女少妇激情五十路| 3D动漫精品啪啪一区二区下载| 亚洲精品ww久久久久久| 一区二区久久成人网| 91av精品视频在线| 综合激情网激情五月五月婷婷| 黄色成年网站午夜在线观看| 亚洲精品麻豆免费在线观看| 精品久久久久久高潮| 99热久久这里只有精品| 91麻豆精品传媒国产黄色片| 免费无毒热热热热热热久| 久久久久久久久久一区二区三区| 精品视频一区二区三区四区五区| 欧美精品免费aaaaaa| 午夜激情精品福利视频| 国产视频一区在线观看| 日本精品一区二区三区在线视频。| 开心 色 六月 婷婷| 亚洲变态另类色图天堂网| 国产精品国产精品一区二区| 日韩三级黄色片网站| 家庭女教师中文字幕在线播放| 人妻丝袜精品中文字幕| 欧美在线偷拍视频免费看| 老司机免费视频网站在线看| 国产黄色大片在线免费播放| 亚洲偷自拍高清视频| 2020韩国午夜女主播在线| 男人插女人视频网站| 成人国产激情自拍三区| 午夜成午夜成年片在线观看| 91超碰青青中文字幕| 99精品久久久久久久91蜜桃| 18禁美女羞羞免费网站| 成人国产激情自拍三区| 午夜久久久久久久精品熟女| 伊人开心婷婷国产av| 国产麻豆国语对白露脸剧情| 91p0rny九色露脸熟女| 亚洲2021av天堂| 国产在线一区二区三区麻酥酥| 欧美黄片精彩在线免费观看| 任你操视频免费在线观看| 超污视频在线观看污污污 | 亚洲第一伊人天堂网| 日本乱人一区二区三区| 换爱交换乱高清大片| 国产精品国色综合久久| 天天干天天搞天天摸| 黑人进入丰满少妇视频| 日本少妇人妻xxxxxhd| 在线免费观看av日韩| 天天操天天弄天天射| 丝袜国产专区在线观看| weyvv5国产成人精品的视频| 国产黄色片蝌蚪九色91| 一本久久精品一区二区| 扒开让我视频在线观看| asmr福利视频在线观看| AV无码一区二区三区不卡| 在线观看视频网站麻豆| 精品一区二区三区午夜| 99精品国产免费久久| AV天堂一区二区免费试看| 久久久久91精品推荐99| 老司机深夜免费福利视频在线观看| 免费男阳茎伸入女阳道视频| 动漫av网站18禁| 青青青青爽手机在线| h国产小视频福利在线观看| 欧美亚洲自偷自拍 在线| 都市激情校园春色狠狠| 成年人午夜黄片视频资源| 色噜噜噜噜18禁止观看| 一本久久精品一区二区| 男人在床上插女人视频| 亚洲另类图片蜜臀av| 一区二区麻豆传媒黄片| 亚洲无码一区在线影院| 国产精品久久久久网| 国产黄色片蝌蚪九色91| 国产使劲操在线播放| 中文字幕在线免费第一页| 春色激情网欧美成人| 色噜噜噜噜18禁止观看| 日韩a级精品一区二区| v888av在线观看视频| 免费看国产av网站| 日本韩国在线观看一区二区| av网站色偷偷婷婷网男人的天堂| 欧美日韩中文字幕欧美| 老熟妇凹凸淫老妇女av在线观看| 色噜噜噜噜18禁止观看| 人妻少妇亚洲一区二区| 狍和女人的王色毛片| 少妇人妻100系列| 美女视频福利免费看| 操操网操操伊剧情片中文字幕网| 少妇一区二区三区久久久| 最近的中文字幕在线mv视频| 青青草原网站在线观看| 欧美一区二区三区久久久aaa| 一区二区三区av高清免费| 中文字幕在线第一页成人| 最新的中文字幕 亚洲| 91精品激情五月婷婷在线| 中文字幕,亚洲人妻| 久精品人妻一区二区三区| 老鸭窝日韩精品视频观看| 亚洲的电影一区二区三区| 欧美黑人性暴力猛交喷水| 啊啊啊想要被插进去视频| av中文字幕在线导航| 亚洲美女美妇久久字幕组| 成人国产影院在线观看| 国产精品系列在线观看一区二区| 蜜桃视频17c在线一区二区| 日本三极片中文字幕| 最新的中文字幕 亚洲| 日本脱亚入欧是指什么| av高潮迭起在线观看| 日韩激情文学在线视频| 在线观看操大逼视频| 亚洲午夜电影在线观看| 天天日天天鲁天天操| 在线国产精品一区二区三区| 老鸭窝在线观看一区| 沙月文乃人妻侵犯中文字幕在线 | lutube在线成人免费看| 一区二区视频视频视频| 丝袜美腿视频诱惑亚洲无| 在线观看成人国产电影| 午夜成午夜成年片在线观看 | 欧美一区二区三区四区性视频| 新97超碰在线观看| 中文亚洲欧美日韩无线码| xxx日本hd高清| 宅男噜噜噜666免费观看| 国产麻豆精品人妻av| 啊啊好大好爽啊啊操我啊啊视频| 宅男噜噜噜666国产| 高潮喷水在线视频观看| 亚洲黄色av网站免费播放| 欧美另类一区二区视频| 免费黄色成人午夜在线网站| 欧美精品亚洲精品日韩在线| 免费十精品十国产网站| 久久机热/这里只有| 大香蕉日本伊人中文在线| 天天干狠狠干天天操| 国产视频网站一区二区三区| 日本午夜福利免费视频| 91老师蜜桃臀大屁股| 国产精品久久9999| 91国内视频在线观看| brazzers欧熟精品系列| 亚洲欧美国产麻豆综合| 青娱乐蜜桃臀av色| 亚洲综合一区二区精品久久| 成人福利视频免费在线| 91国内精品自线在拍白富美| 国产视频一区二区午夜| 亚洲欧美人精品高清| av天堂加勒比在线| 欧美精产国品一二三产品区别大吗| 在线观看成人国产电影| av中文字幕在线观看第三页| 国产一区二区欧美三区| sw137 中文字幕 在线| 久久99久久99精品影院| 香蕉片在线观看av| 国产高清女主播在线| 亚洲精品麻豆免费在线观看| 精品久久久久久久久久久久人妻 | 国产高清精品极品美女| 91精品视频在线观看免费| 中文字幕中文字幕 亚洲国产| 偷拍自拍 中文字幕| 99精品国自产在线人| 国产综合高清在线观看| 久久久精品999精品日本| 国产亚洲精品视频合集| 激情小视频国产在线| 国产精品国色综合久久| 夜色17s精品人妻熟女| 国产熟妇一区二区三区av| 亚洲欧美福利在线观看| 五十路av熟女松本翔子| 在线新三级黄伊人网| 中文字幕之无码色多多| 日本韩国免费福利精品| 国产精品人妻66p| 18禁精品网站久久| 热久久只有这里有精品| 熟女俱乐部一二三区| 女生自摸在线观看一区二区三区 | 97超碰国语国产97超碰| 国产午夜亚洲精品麻豆| 色吉吉影音天天干天天操| 蜜臀av久久久久蜜臀av麻豆| av乱码一区二区三区| 97色视频在线观看| 蜜臀av久久久久久久| 91久久国产成人免费网站| 亚洲成人国产综合一区| 日本裸体熟妇区二区欧美| 日韩在线视频观看有码在线| 色狠狠av线不卡香蕉一区二区| 天天操天天插天天色| 亚洲欧美另类自拍偷拍色图| 极品粉嫩小泬白浆20p主播| 2022国产精品视频| 色狠狠av线不卡香蕉一区二区| 亚洲天堂第一页中文字幕| 亚洲免费va在线播放| 色呦呦视频在线观看视频| 老司机深夜免费福利视频在线观看| 日韩午夜福利精品试看| 人妻少妇中文有码精品| 日韩av大胆在线观看| 午夜毛片不卡免费观看视频| 国产黑丝高跟鞋视频在线播放| 青青青aaaa免费| 日韩欧美一级aa大片| 日韩美在线观看视频黄| 精品一区二区三四区| 99国内精品永久免费视频| 婷婷久久一区二区字幕网址你懂得| 特一级特级黄色网片| 免费一级特黄特色大片在线观看| 夜夜嗨av一区二区三区中文字幕| 天天干天天插天天谢| 在线视频这里只有精品自拍| 天天日天天鲁天天操| 夜夜嗨av一区二区三区中文字幕| 中国把吊插入阴蒂的视频| 日本人妻少妇18—xx| 亚洲欧美一卡二卡三卡| 91在线免费观看成人| 可以免费看的www视频你懂的| 91极品大一女神正在播放| 宅男噜噜噜666国产| 18禁污污污app下载| 国产av国片精品一区二区| 宅男噜噜噜666国产| 亚洲国产最大av综合| 久久麻豆亚洲精品av| av森泽佳奈在线观看| 成人av久久精品一区二区| 亚洲一区二区三区精品视频在线| 丰满的子国产在线观看| 五十路熟女av天堂| 午夜成午夜成年片在线观看| 国产精选一区在线播放| 久久h视频在线观看| 亚洲天堂av最新网址| 福利国产视频在线观看| 天堂女人av一区二区| 午夜福利资源综合激情午夜福利资| 人人超碰国字幕观看97| 成人高清在线观看视频| 97精品视频在线观看| 天天射夜夜操狠狠干| 中文字幕欧美日韩射射一| free性日本少妇| 成人国产小视频在线观看| 精品亚洲国产中文自在线| 色婷婷六月亚洲综合香蕉| 不卡一区一区三区在线| 亚洲高清国产拍青青草原| 视频久久久久久久人妻| 午夜精品一区二区三区城中村| av老司机亚洲一区二区| 色在线观看视频免费的| 欧美视频综合第一页| 女人精品内射国产99| 男人的网址你懂的亚洲欧洲av| 亚洲精品国品乱码久久久久| 日韩成人综艺在线播放| 成人24小时免费视频| 夜夜操,天天操,狠狠操| 色哟哟在线网站入口| 亚洲高清一区二区三区视频在线| 沈阳熟妇28厘米大战黑人| 欧美一区二区三区乱码在线播放| 日比视频老公慢点好舒服啊| 久久艹在线观看视频| 天天色天天操天天舔| 在线观看视频一区麻豆| 青青青青青青草国产| 在线免费观看亚洲精品电影| 午夜蜜桃一区二区三区| 国产熟妇人妻ⅹxxxx麻豆| 天天干天天操天天爽天天摸| 人妻丰满熟妇综合网| 国产揄拍高清国内精品对白| 中文字幕在线乱码一区二区| 精品一区二区三四区| 精品亚洲中文字幕av| 中文字幕欧美日韩射射一| 国产一区二区久久久裸臀| caoporm超碰国产| 欲乱人妻少妇在线视频裸| 精品国产在线手机在线| 中文字幕在线一区精品| 欧美一区二区三区四区性视频| 瑟瑟视频在线观看免费视频| 久草极品美女视频在线观看| 中文字幕最新久久久| 成人资源在线观看免费官网| 99精品视频在线观看婷婷| 91免费观看国产免费| 亚洲高清自偷揄拍自拍| 福利午夜视频在线观看| 大屁股肉感人妻中文字幕在线| 亚洲推理片免费看网站| 成年午夜免费无码区| 啪啪啪操人视频在线播放| 不卡日韩av在线观看| 91免费观看在线网站| 精品人妻一二三区久久| 欧美精品久久久久久影院| 成年人中文字幕在线观看| 亚洲av男人天堂久久| 男人的天堂av日韩亚洲| 精品suv一区二区69| 日韩欧美亚洲熟女人妻| 国产精品国产三级国产精东| 国产大学生援交正在播放| 国产精品污污污久久| 日本熟妇一区二区x x| 日本av熟女在线视频| 欧美特色aaa大片| 亚洲1卡2卡三卡4卡在线观看| 天天插天天色天天日| 亚洲av色图18p| 66久久久久久久久久久| 18禁污污污app下载| 国产一级麻豆精品免费| 亚洲国产美女一区二区三区软件 | 欧美精品一区二区三区xxxx| 97资源人妻免费在线视频| 清纯美女在线观看国产| 久久久人妻一区二区| 在线观看的黄色免费网站| 91免费放福利在线观看| 狠狠操操操操操操操操操| 男人的天堂在线黄色| 一区二区视频在线观看免费观看| 成人在线欧美日韩国产| 一区二区三区另类在线| 亚洲一级av大片免费观看| 亚国产成人精品久久久| 国产精品视频男人的天堂| 999九九久久久精品| 热思思国产99re| 亚洲免费av在线视频| 五十路人妻熟女av一区二区 | 粉嫩av蜜乳av蜜臀| sejizz在线视频| 国产丰满熟女成人视频| 91精品国产黑色丝袜| 中文字幕亚洲久久久| 国产精品人妻66p| 亚洲一区二区三区久久午夜| 丰满少妇人妻xxxxx| jiujiure精品视频在线| 久久精品美女免费视频| 午夜精品久久久久麻豆影视| 毛茸茸的大外阴中国视频| 青青青青青青草国产| 国产一区二区久久久裸臀| 日本一本午夜在线播放| 搡老熟女一区二区在线观看| 二区中出在线观看老师| 激情图片日韩欧美人妻| 福利视频网久久91| 岛国毛片视频免费在线观看| 精品视频一区二区三区四区五区| 大屁股肉感人妻中文字幕在线| 9色在线视频免费观看| 欧美日韩熟女一区二区三区| 亚洲一区二区三区五区| 久久久极品久久蜜桃| 99精品免费久久久久久久久a| 啪啪啪啪啪啪啪啪啪啪黄色| 国产精品久久久黄网站| 2020国产在线不卡视频| 国内资源最丰富的网站| 国产美女精品福利在线| 亚洲成人午夜电影在线观看| 97国产在线av精品| 很黄很污很色的午夜网站在线观看 | 老司机你懂得福利视频| 国产亚州色婷婷久久99精品| 国产午夜亚洲精品不卡在线观看| 亚洲综合在线视频可播放| 91色网站免费在线观看| 欧美日本在线观看一区二区| 成人国产激情自拍三区| 国产一区二区在线欧美| 99热色原网这里只有精品| 2018在线福利视频| 不卡精品视频在线观看| 亚洲综合一区成人在线| 欧美一区二区三区久久久aaa| 韩国黄色一级二级三级| 人妻熟女在线一区二区| 瑟瑟视频在线观看免费视频| 在线制服丝袜中文字幕| 人妻无码色噜噜狠狠狠狠色| 国产av欧美精品高潮网站| 男人插女人视频网站| 国产一级精品综合av| 不卡一区一区三区在线| 老熟妇xxxhd老熟女| 大屁股熟女一区二区三区| 亚洲免费国产在线日韩| 亚洲粉嫩av一区二区三区| 国产精品黄大片在线播放| 人妻素人精油按摩中出| 在线观看免费岛国av| 青青青青青青青青青青草青青| 国产精品久久久久网| 激情五月婷婷免费视频| 日韩人妻xxxxx| 午夜毛片不卡免费观看视频| 亚洲一区二区三区五区| 中字幕人妻熟女人妻a62v网 | 精品av久久久久久久| 人人妻人人爱人人草| 午夜国产福利在线观看| 日日操夜夜撸天天干| 亚洲欧美综合另类13p| 欧美80老妇人性视频| 亚洲av天堂在线播放| 偷拍3456eee| 在线免费观看欧美小视频| 欧美日本aⅴ免费视频| 亚洲精品久久综合久| 午夜精品福利91av| 亚洲1区2区3区精华液| 日本少妇的秘密免费视频| 欧美精品资源在线观看| 免费在线观看污污视频网站| 啪啪啪啪啪啪啪免费视频| 黑人大几巴狂插日本少妇| 天天插天天狠天天操| 亚洲欧美在线视频第一页| 久草视频在线一区二区三区资源站| 熟女妇女老妇一二三区| 免费岛国喷水视频在线观看| 社区自拍揄拍尻屁你懂的| 99国内精品永久免费视频| 亚洲美女高潮喷浆视频| 97国产在线av精品| 免费无码人妻日韩精品一区二区 | 欧美在线精品一区二区三区视频 | 51国产偷自视频在线播放| 亚洲综合色在线免费观看| 伊人情人综合成人久久网小说| 亚洲av自拍天堂网| 天天日天天干天天插舔舔| h国产小视频福利在线观看| 白白操白白色在线免费视频| 人人妻人人人操人人人爽| 国产精选一区在线播放| 久久久久久久久久一区二区三区| 天天插天天狠天天操| 夫妻在线观看视频91| 国产精品视频资源在线播放| 91色网站免费在线观看| 亚洲精品 日韩电影| 日韩三级黄色片网站| 青青青视频自偷自拍38碰| 婷婷久久久综合中文字幕| 又粗又硬又猛又爽又黄的| 亚洲中文字字幕乱码 | 免费在线福利小视频| 国产高清在线观看1区2区| 狠狠躁夜夜躁人人爽天天天天97| 91免费观看在线网站| 中文字幕国产专区欧美激情| 成人区人妻精品一区二视频| 成人亚洲精品国产精品| 男人插女人视频网站| 午夜毛片不卡在线看| 2021最新热播中文字幕| 黑人3p华裔熟女普通话| 亚洲av极品精品在线观看| 成熟丰满熟妇高潮xx×xx| 青草亚洲视频在线观看| 国产精品久久久黄网站| 日噜噜噜夜夜噜噜噜天天噜噜噜| 在线观看911精品国产| 韩国女主播精品视频网站| 2021天天色天天干| 大屁股肉感人妻中文字幕在线| 国产欧美精品不卡在线| 黑人进入丰满少妇视频| 91福利视频免费在线观看| 亚洲1069综合男同| 女生自摸在线观看一区二区三区| 看一级特黄a大片日本片黑人| 日本一本午夜在线播放| 亚洲福利精品视频在线免费观看| 日本免费视频午夜福利视频| 亚洲精品午夜久久久久| 日本高清撒尿pissing| 欧美成人黄片一区二区三区| 超级碰碰在线视频免费观看| 精品高潮呻吟久久av| 2020中文字幕在线播放| 国产激情av网站在线观看| 亚洲精品一线二线在线观看| 大肉大捧一进一出好爽在线视频| 肏插流水妹子在线乐播下载 | 沈阳熟妇28厘米大战黑人| 果冻传媒av一区二区三区| 国产精品久久久黄网站| 人妻少妇性色欲欧美日韩| 久久久久久久99精品| 护士小嫩嫩又紧又爽20p| 激情五月婷婷免费视频| 99久久中文字幕一本人| 天天做天天干天天操天天射| 国产精品人久久久久久| 绝顶痉挛大潮喷高潮无码 | 激情综合治理六月婷婷| 亚洲熟色妇av日韩熟色妇在线| 97少妇精品在线观看| 蜜臀av久久久久久久| 黄色男人的天堂视频| 喷水视频在线观看这里只有精品| 美女福利视频网址导航| 亚洲男人让女人爽的视频| 在线亚洲天堂色播av电影| 亚洲的电影一区二区三区| 中文字幕av第1页中文字幕| 真实国产乱子伦一区二区| 看一级特黄a大片日本片黑人| 日本少妇精品免费视频| 2021久久免费视频| 黑人巨大的吊bdsm| 欧美男人大鸡吧插女人视频| 成人高潮aa毛片免费| 成年人午夜黄片视频资源| sejizz在线视频| 日本免费视频午夜福利视频| 日韩三级黄色片网站| 午夜的视频在线观看| 91高清成人在线视频| 97人妻无码AV碰碰视频| 国产超码片内射在线| 欧美黑人性暴力猛交喷水| 绝顶痉挛大潮喷高潮无码 | 国产精品中文av在线播放| 亚洲卡1卡2卡三卡四老狼| 97a片免费在线观看| 天堂女人av一区二区| 成人高潮aa毛片免费| 中文亚洲欧美日韩无线码| 日韩精品一区二区三区在线播放| 亚洲熟妇x久久av久久| 成人高清在线观看视频| 懂色av之国产精品| 91久久国产成人免费网站| 天天射夜夜操狠狠干| 亚洲av成人免费网站| 在线观看的a站 最新| 亚洲高清一区二区三区视频在线| 亚洲图片偷拍自拍区| 亚洲老熟妇日本老妇| 青青青视频手机在线观看| 亚洲av无女神免非久久| 亚洲天堂第一页中文字幕| 涩爱综合久久五月蜜臀| 久久这里有免费精品| av在线免费中文字幕| 100%美女蜜桃视频| 天天日天天摸天天爱| 黄色片年轻人在线观看| 99一区二区在线观看| 欧美日韩熟女一区二区三区| 日本精品美女在线观看| 亚洲一级美女啪啪啪| 午夜国产免费福利av| 边摸边做超爽毛片18禁色戒| 国产一线二线三线的区别在哪| 亚洲护士一区二区三区| 欧美爆乳肉感大码在线观看| 国产欧美精品一区二区高清| 亚洲另类伦春色综合小| 久久久久久cao我的性感人妻 | 日本少妇高清视频xxxxx| 亚洲精品色在线观看视频| 欧美黄色录像免费看的| 天天操,天天干,天天射| 中文字幕av熟女人妻| 91试看福利一分钟| 亚洲av香蕉一区区二区三区犇| 新婚人妻聚会被中出| 国产精品久久久久网| 热久久只有这里有精品| 2018在线福利视频| 2021久久免费视频| 福利视频广场一区二区| 91麻豆精品久久久久| 欧美日韩国产一区二区三区三州| 999九九久久久精品| 9色精品视频在线观看| 天天日天天透天天操| 密臀av一区在线观看| 亚洲 中文 自拍 另类 欧美| 密臀av一区在线观看| 亚洲最大免费在线观看| 99精品国产aⅴ在线观看| 欧美精品免费aaaaaa| 久久久久久97三级| 91高清成人在线视频| 亚洲va天堂va国产va久| 国产精品伦理片一区二区| 日韩特级黄片高清在线看| 黑人变态深video特大巨大| 亚洲精品久久综合久| 日韩a级黄色小视频| 免费看国产av网站| 57pao国产一区二区| 欧美一区二区中文字幕电影 | 免费成人va在线观看| 很黄很污很色的午夜网站在线观看| 一本久久精品一区二区| 国产乱子伦精品视频潮优女| 亚洲另类在线免费观看| 99视频精品全部15| 国产午夜福利av导航| 亚洲 欧美 自拍 偷拍 在线| 97黄网站在线观看| 日韩美女福利视频网| 日本在线不卡免费视频| 国产黄网站在线观看播放| 99久久99一区二区三区| 国产成人精品av网站| 亚洲激情偷拍一区二区| 久久亚洲天堂中文对白| 狠狠操操操操操操操操操| 岛国免费大片在线观看| 色呦呦视频在线观看视频| 日本www中文字幕| 婷婷六月天中文字幕| 久久精品视频一区二区三区四区| 男人的天堂在线黄色| 丰满的子国产在线观看| 操的小逼流水的文章| 国产在线免费观看成人| 亚洲一区二区三区uij| 绯色av蜜臀vs少妇| 91av精品视频在线| 国产亚洲欧美另类在线观看| 国产在线观看黄色视频| 最新中文字幕免费视频| 日韩欧美在线观看不卡一区二区 | 清纯美女在线观看国产| 婷婷六月天中文字幕| 人妻丝袜精品中文字幕| 亚洲 清纯 国产com| 又色又爽又黄又刺激av网站| 阿v天堂2014 一区亚洲| 青青草成人福利电影| 欧美亚洲自偷自拍 在线| 成熟丰满熟妇高潮xx×xx| 亚洲免费福利一区二区三区| 国产成人精品一区在线观看| 中国无遮挡白丝袜二区精品| 又粗又长 明星操逼小视频| 亚洲熟妇x久久av久久| 成人乱码一区二区三区av| 综合色区亚洲熟妇shxstz| 边摸边做超爽毛片18禁色戒| 天天干天天操天天玩天天射| 老师啊太大了啊啊啊尻视频| 青青青视频手机在线观看| 亚洲成人免费看电影| 国产高清97在线观看视频| 亚洲国产精品中文字幕网站| 女生被男生插的视频网站| 午夜精品福利91av| av久久精品北条麻妃av观看| 9久在线视频只有精品| 性感美女福利视频网站| 激情国产小视频在线| 78色精品一区二区三区| 青青青青操在线观看免费| 亚洲综合图片20p| 午夜的视频在线观看| 午夜精品久久久久麻豆影视| 青青青青青操视频在线观看| 成人av免费不卡在线观看| 国产精品黄大片在线播放| 国产1区,2区,3区| 99热久久这里只有精品8| 天天通天天透天天插| 一区二区三区四区五区性感视频 | 91社福利《在线观看| 女蜜桃臀紧身瑜伽裤| 91桃色成人网络在线观看| 99精品免费观看视频| 亚洲天堂成人在线观看视频网站| 亚洲精品av在线观看| 亚洲精品ww久久久久久| 大屁股肉感人妻中文字幕在线| 天天日天天干天天爱| eeuss鲁片一区二区三区| 精品久久婷婷免费视频| 日本精品视频不卡一二三| 日曰摸日日碰夜夜爽歪歪| 东游记中文字幕版哪里可以看到| 欧美成人猛片aaaaaaa| 在线视频自拍第三页| 久青青草视频手机在线免费观看 | 免费高清自慰一区二区三区网站 | 人妻凌辱欧美丰满熟妇| 97少妇精品在线观看| 欧美日韩国产一区二区三区三州 | av资源中文字幕在线观看| 国产V亚洲V天堂无码欠欠| 夜色福利视频在线观看| 成人sm视频在线观看| 国产乱子伦精品视频潮优女| 玖玖一区二区在线观看| 99久久久无码国产精品性出奶水| 青青热久免费精品视频在线观看| 无码日韩人妻精品久久| 粉嫩av懂色av蜜臀av| 久久综合老鸭窝色综合久久 | av天堂中文免费在线| 老司机福利精品视频在线| 天天日天天透天天操| 成人免费做爰高潮视频| 国产美女一区在线观看| 日本韩国免费一区二区三区视频| 黄色成年网站午夜在线观看| 91色九色porny| 东游记中文字幕版哪里可以看到| 黑人巨大的吊bdsm| 大尺度激情四射网站| 夜夜嗨av蜜臀av| 9色精品视频在线观看| 在线视频这里只有精品自拍| 免费十精品十国产网站| 国产91精品拍在线观看| 风流唐伯虎电视剧在线观看| 国产精品久久久久久久女人18| japanese日本熟妇另类| 99热这里只有精品中文| 国产又粗又硬又大视频| 国产美女精品福利在线| 激情啪啪啪啪一区二区三区| 红桃av成人在线观看| 99的爱精品免费视频| 一区二区三区在线视频福利| 色伦色伦777国产精品| 2020韩国午夜女主播在线| 蜜桃久久久久久久人妻| 天天干天天操天天插天天日| 老司机福利精品视频在线| 啪啪啪啪啪啪啪免费视频| 精品黑人一区二区三区久久国产 | 亚洲 欧美 精品 激情 偷拍| 护士小嫩嫩又紧又爽20p| 午夜精品一区二区三区更新| 在线观看亚洲人成免费网址| jul—619中文字幕在线| 成年人的在线免费视频| 粉嫩欧美美人妻小视频| AV无码一区二区三区不卡| 日本韩国亚洲综合日韩欧美国产| 最新97国产在线视频| aiss午夜免费视频| 92福利视频午夜1000看| 日本五十路熟新垣里子| 熟女91pooyn熟女| av网址在线播放大全| 91一区精品在线观看| 国产黄色大片在线免费播放| 国产精品自拍在线视频| 九色porny九色9l自拍视频| 亚洲成人情色电影在线观看| 在线免费观看视频一二区| 亚洲少妇人妻无码精品| 国产熟妇乱妇熟色T区| 伊人综合免费在线视频| 综合一区二区三区蜜臀| 午夜精品九一唐人麻豆嫩草成人| 国产一区二区火爆视频 | 午夜婷婷在线观看视频| 国产精品久久9999| 中文字幕一区二区亚洲一区| 国产一线二线三线的区别在哪| av在线观看网址av| 亚洲中文字字幕乱码| 国际av大片在线免费观看| 91人妻精品久久久久久久网站| 91国产资源在线视频| 老司机免费视频网站在线看| av完全免费在线观看av| 天堂va蜜桃一区入口| 欧美精品久久久久久影院| 色呦呦视频在线观看视频| 久久这里只有精品热视频 | 亚洲精品 日韩电影| 国产精品人妻一区二区三区网站| 骚货自慰被发现爆操| 国产精品自拍视频大全| 2021国产一区二区| 91大神福利视频网| 国产一区二区火爆视频| av完全免费在线观看av| 伊拉克及约旦宣布关闭领空| 婷婷综合蜜桃av在线| 日本丰满熟妇BBXBBXHD| 五十路熟女av天堂| 大陆av手机在线观看| 香蕉91一区二区三区| 亚洲2021av天堂| 午夜国产福利在线观看| 影音先锋女人av噜噜色| 亚洲欧美福利在线观看| 成年人啪啪视频在线观看| 亚洲天堂成人在线观看视频网站| av天堂中文字幕最新| 天天干天天日天天干天天操| 亚洲精品 日韩电影| 女同性ⅹxx女同h偷拍| 果冻传媒av一区二区三区| 97人妻色免费视频| 午夜大尺度无码福利视频| 亚洲人妻视频在线网| 99精品国产自在现线观看| 天天干天天日天天干天天操| 中文字幕亚洲久久久| 在线视频精品你懂的| brazzers欧熟精品系列| 非洲黑人一级特黄片| 欧美视频一区免费在线| 韩国男女黄色在线观看| 黑人解禁人妻叶爱071| 91麻豆精品久久久久| 女同久久精品秋霞网| 性感美女诱惑福利视频| 国产密臀av一区二区三| 97色视频在线观看| 在线观看免费视频色97| 三级黄色亚洲成人av| 不卡一区一区三区在线| 天天射夜夜操狠狠干| aⅴ五十路av熟女中出| 日韩av大胆在线观看| 在线观看国产网站资源| 1区2区3区4区视频在线观看| 热久久只有这里有精品| 亚洲无码一区在线影院| 亚洲天堂精品福利成人av| 色婷婷精品大在线观看| 精品国产亚洲av一淫| 爱有来生高清在线中文字幕| 黄色中文字幕在线播放| 女蜜桃臀紧身瑜伽裤| 五十路在线观看完整版| 亚洲精品色在线观看视频| 热久久只有这里有精品| 色花堂在线av中文字幕九九 | 天天操天天干天天插| 亚洲成人av一区在线| 91国偷自产一区二区三区精品| 97年大学生大白天操逼| 偷拍自拍国产在线视频| 中文字幕亚洲久久久| 天天通天天透天天插| av在线免费中文字幕| 久久久极品久久蜜桃| 久久久麻豆精亚洲av麻花| 人人爱人人妻人人澡39| 偷拍自拍福利视频在线观看| chinese国产盗摄一区二区| 日本免费一级黄色录像| 国产精品视频男人的天堂| 91大屁股国产一区二区| 亚洲熟色妇av日韩熟色妇在线| 99精品视频之69精品视频 | 欧美黑人性暴力猛交喷水| 91九色国产porny蝌蚪| 宅男噜噜噜666免费观看| 绝顶痉挛大潮喷高潮无码| avjpm亚洲伊人久久| 免费成人av中文字幕| asmr福利视频在线观看| 91九色porny国产在线| 国产综合高清在线观看| 97人人妻人人澡人人爽人人精品| 天天艹天天干天天操| 亚洲 中文 自拍 无码| 九色视频在线观看免费| 插小穴高清无码中文字幕| 啪啪啪操人视频在线播放| chinese国产盗摄一区二区| 岛国一区二区三区视频在线| 国产麻豆乱子伦午夜视频观看| 成人网18免费视频版国产| 人妻自拍视频中国大陆| 粉嫩小穴流水视频在线观看| 人人妻人人爽人人添夜| 1区2区3区4区视频在线观看| 97年大学生大白天操逼| 少妇系列一区二区三区视频| 福利一二三在线视频观看| 99热国产精品666| 狠狠躁狠狠爱网站视频| 亚洲男人的天堂a在线| 久草视频在线免播放| 美女 午夜 在线视频| 中文字幕一区二区人妻电影冢本| 久久精品36亚洲精品束缚| 日韩伦理短片在线观看| 一区二区三区另类在线| 亚洲av日韩精品久久久| 在线观看视频一区麻豆| 国产九色91在线视频| 最新91精品视频在线| 91精品激情五月婷婷在线| 日韩av熟妇在线观看| 免费观看丰满少妇做受| 国产无遮挡裸体免费直播视频| 91国内精品自线在拍白富美| 国产精品人妻熟女毛片av久| 97国产福利小视频合集| 欧美男同性恋69视频| 91免费放福利在线观看| 懂色av之国产精品| 青青草原色片网站在线观看| 女同互舔一区二区三区| 日韩中文字幕福利av| 青青青艹视频在线观看| 极品粉嫩小泬白浆20p主播| 亚洲熟女女同志女同| 欧美偷拍亚洲一区二区| 亚洲老熟妇日本老妇| 精品国产乱码一区二区三区乱| 自拍 日韩 欧美激情| 在线观看av观看av| 美女 午夜 在线视频| 国产日韩av一区二区在线| 亚洲成人av一区久久| 午夜精品福利91av| 欧美性感尤物人妻在线免费看| 一本久久精品一区二区| 91精品国产观看免费| 久久精品亚洲国产av香蕉| 97超碰最新免费在线观看| 国产不卡av在线免费| 啪啪啪啪啪啪啪免费视频| 午夜激情高清在线观看| 亚洲av自拍天堂网| 99国产精品窥熟女精品| 这里有精品成人国产99| 亚洲熟妇无码一区二区三区| 亚洲成人av一区在线| 人妻另类专区欧美制服| 欧美精品国产综合久久| 可以免费看的www视频你懂的| 在线观看视频一区麻豆| 久久永久免费精品人妻专区| 欧美viboss性丰满| 青青热久免费精品视频在线观看| 国产三级片久久久久久久 | 中国老熟女偷拍第一页| 午夜久久久久久久精品熟女 | 亚洲中文精品人人免费| 人妻久久久精品69系列| 中文人妻AV久久人妻水| 色综合色综合色综合色| 亚洲精品麻豆免费在线观看| 在线免费观看av日韩| 91极品大一女神正在播放| 日本熟妇一区二区x x| 99婷婷在线观看视频| 黄色男人的天堂视频| 青青青青视频在线播放| 中文字幕在线欧美精品| 非洲黑人一级特黄片| 国产伦精品一区二区三区竹菊| wwwxxx一级黄色片| 老熟妇凹凸淫老妇女av在线观看| 女同久久精品秋霞网| 在线观看免费视频网| 区一区二区三国产中文字幕| 成年午夜免费无码区| 动漫黑丝美女的鸡巴| 欧美女同性恋免费a| 国产亚洲天堂天天一区| 中英文字幕av一区| 午夜福利人人妻人人澡人人爽| 涩爱综合久久五月蜜臀| 国产美女一区在线观看| 国产视频一区在线观看| 日韩精品一区二区三区在线播放| 日本女人一级免费片| 精品人妻每日一部精品| 国产精品伦理片一区二区| 精品首页在线观看视频| 欧美va不卡视频在线观看| 最新国产精品网址在线观看| 中文字幕高清资源站| 国产av一区2区3区| 人妻久久久精品69系列| av老司机精品在线观看| 好了av中文字幕在线| 成人免费做爰高潮视频| 亚洲欧洲一区二区在线观看| 91九色porny蝌蚪国产成人| 中文字幕av熟女人妻| 区一区二区三国产中文字幕| 18禁网站一区二区三区四区| 日本黄色三级高清视频| 九一传媒制片厂视频在线免费观看| 日本精品一区二区三区在线视频。| 色综合久久无码中文字幕波多| 丰满熟女午夜福利视频| 天天操天天干天天日狠狠插| av中文字幕在线观看第三页| 777奇米久久精品一区| 自拍偷拍,中文字幕| 中文字日产幕乱六区蜜桃| 日本阿v视频在线免费观看| 100%美女蜜桃视频| 国产熟妇人妻ⅹxxxx麻豆| 亚洲高清国产拍青青草原| 亚洲自拍偷拍精品网| 91自产国产精品视频| 国产精品欧美日韩区二区| 一区二区三区麻豆福利视频| 日本熟女精品一区二区三区| 日本熟女50视频免费| 韩国男女黄色在线观看| 黄片色呦呦视频免费看| 日本阿v视频在线免费观看| 午夜久久香蕉电影网| 亚洲欧美清纯唯美另类| 午夜蜜桃一区二区三区| 91‖亚洲‖国产熟女| xxx日本hd高清| 国产精品自拍偷拍a| 99国产精品窥熟女精品| 成人蜜臀午夜久久一区| 熟女人妻在线观看视频| 欧美亚洲一二三区蜜臀| 国产之丝袜脚在线一区二区三区| 爆乳骚货内射骚货内射在线| 婷婷久久久久深爱网| 天天射,天天操,天天说| 中文字幕高清免费在线人妻| 五月天色婷婷在线观看视频免费 | 538精品在线观看视频| 日本精品美女在线观看| 青青在线视频性感少妇和隔壁黑丝| 青草亚洲视频在线观看| 国产精品免费不卡av| 亚洲的电影一区二区三区 | 中文字幕人妻被公上司喝醉在线| 福利午夜视频在线观看| 国产1区,2区,3区| 毛茸茸的大外阴中国视频| 亚洲欧美一卡二卡三卡| 少妇ww搡性bbb91| 亚洲精品亚洲人成在线导航| 久久久久久97三级| 国产中文精品在线观看| 欧美女同性恋免费a| 日本熟妇色熟妇在线观看| 特大黑人巨大xxxx| 99久久成人日韩欧美精品| 人妻丝袜榨强中文字幕| 欧美日本在线观看一区二区| 婷婷久久久综合中文字幕| jul—619中文字幕在线| 插逼视频双插洞国产操逼插洞| 欧美视频一区免费在线| 日韩三级电影华丽的外出| 久久精品国产23696| 国产av自拍偷拍盛宴| 天堂av在线最新版在线| 中国熟女@视频91| 自拍偷拍vs一区二区三区| 欧美一区二区三区四区性视频| 国产成人小视频在线观看无遮挡| 日本韩国免费一区二区三区视频| 日本三极片中文字幕| 91久久国产成人免费网站| 成人乱码一区二区三区av| 亚洲av无乱一区二区三区性色| 国产黑丝高跟鞋视频在线播放| 国产精彩对白一区二区三区| 黑人借宿ntr人妻的沦陷2| 青青草视频手机免费在线观看| 十八禁在线观看地址免费| 亚洲免费av在线视频| 午夜久久久久久久精品熟女| 亚洲熟妇x久久av久久| weyvv5国产成人精品的视频| 五月天色婷婷在线观看视频免费| 少妇一区二区三区久久久| 欧美va不卡视频在线观看| 综合激情网激情五月五月婷婷| 97人妻总资源视频| 男人天堂av天天操| 国产一区二区在线欧美| 蜜臀成人av在线播放| 欧美精品欧美极品欧美视频| 亚洲va天堂va国产va久| av高潮迭起在线观看| 喷水视频在线观看这里只有精品| xxx日本hd高清| 欧美男同性恋69视频| 成人网18免费视频版国产 | 青娱乐最新视频在线| 久久精品视频一区二区三区四区| 一区二区三区精品日本| 国产精品久久久久久久久福交| 日韩午夜福利精品试看| 大鸡巴操b视频在线| 亚洲av成人免费网站| 色呦呦视频在线观看视频| 99热这里只有精品中文| 亚洲中文字幕国产日韩| 风流唐伯虎电视剧在线观看 | 美女福利视频导航网站| 青青草人人妻人人妻| 天天日天天干天天要| 和邻居少妇愉情中文字幕| 久久亚洲天堂中文对白| 大鸡吧插逼逼视频免费看| 天天操天天爽天天干| 一级黄片大鸡巴插入美女| 玩弄人妻熟妇性色av少妇| 天堂av在线最新版在线| 大陆胖女人与丈夫操b国语高清| 91破解版永久免费| sejizz在线视频| 老司机午夜精品视频资源| 激情五月婷婷综合色啪| 日韩激情文学在线视频| 欧美一区二区三区激情啪啪啪 | 中文字幕国产专区欧美激情| 色天天天天射天天舔| 精品久久久久久久久久中文蒉| 日本av高清免费网站| 99热碰碰热精品a中文| 日本性感美女视频网站| 中文亚洲欧美日韩无线码| 又粗又硬又猛又爽又黄的| 中文字幕免费福利视频6| 特黄老太婆aa毛毛片| 亚洲精品国品乱码久久久久| 欧美成人综合色在线噜噜| 免费在线看的黄网站| 在线免费观看日本片| 中国老熟女偷拍第一页| 国产一区成人在线观看视频| 欧美另类一区二区视频| 又色又爽又黄的美女裸体| 亚洲高清视频在线不卡| 青青伊人一精品视频| 国产精品久久久黄网站| 国产福利在线视频一区| 日本性感美女写真视频| 日本免费午夜视频网站| 亚洲中文字幕乱码区| 97成人免费在线观看网站| 无码日韩人妻精品久久| av在线播放国产不卡| 久久h视频在线观看| 亚洲av第国产精品| 果冻传媒av一区二区三区| 天天射夜夜操综合网| 天天色天天操天天透| 亚洲1卡2卡三卡4卡在线观看| 精品老妇女久久9g国产| 91久久国产成人免费网站| 亚洲人成精品久久久久久久| 日韩熟女av天堂系列| 人妻最新视频在线免费观看| 丰满的子国产在线观看| 国产黄色片蝌蚪九色91| 天天爽夜夜爽人人爽QC| 青草青永久在线视频18| 亚洲高清视频在线不卡| 端庄人妻堕落挣扎沉沦| caoporm超碰国产| 天天干天天操天天摸天天射| 夜女神免费福利视频| 欧美在线一二三视频| 国产三级影院在线观看| jiujiure精品视频在线| 亚洲欧美久久久久久久久| 亚洲一区制服丝袜美腿| 天天日天天透天天操| 黄色三级网站免费下载| 三上悠亚和黑人665番号| 999久久久久999| 欧美成人精品欧美一级黄色| wwwxxx一级黄色片| 1024久久国产精品| 只有精品亚洲视频在线观看| 天天色天天爱天天爽| 蝴蝶伊人久久中文娱乐网| 狠狠地躁夜夜躁日日躁| 一区二区麻豆传媒黄片 | 97资源人妻免费在线视频| 欧美女同性恋免费a| 亚洲嫩模一区二区三区| 日本脱亚入欧是指什么| 欧美一区二区三区高清不卡tv| 福利片区一区二体验区| 国产精品久久综合久久| 精品91高清在线观看| 九色视频在线观看免费| 日本黄色特一级视频| 18禁污污污app下载| 亚洲粉嫩av一区二区三区| av男人天堂狠狠干| 日韩在线视频观看有码在线| 福利午夜视频在线观看| 色综合天天综合网国产成人| 欧美成人黄片一区二区三区| 小泽玛利亚视频在线观看| 亚洲精品在线资源站| 日韩美女福利视频网| japanese日本熟妇另类| 51精品视频免费在线观看| 亚洲 欧美 精品 激情 偷拍| 中文字幕一区二 区二三区四区| 亚洲一区自拍高清免费视频| 狠狠鲁狠狠操天天晚上干干| 国产中文字幕四区在线观看| 男人操女人逼逼视频网站| av在线免费中文字幕| 18禁网站一区二区三区四区| 插小穴高清无码中文字幕| 馒头大胆亚洲一区二区| 美女小视频网站在线| 成年午夜免费无码区| 狠狠鲁狠狠操天天晚上干干| 哥哥姐姐综合激情小说| 亚洲va欧美va人人爽3p| 在线观看视频污一区| 黄色视频成年人免费观看| 婷婷久久久久深爱网| 国产又粗又黄又硬又爽| 91色秘乱一区二区三区| 521精品视频在线观看| 99re久久这里都是精品视频| 亚洲欧美激情国产综合久久久| 韩国爱爱视频中文字幕| 100%美女蜜桃视频| 中文字幕人妻av在线观看| 欧美一区二区三区激情啪啪啪 | 久久艹在线观看视频| av中文字幕电影在线看| 天天做天天干天天操天天射| 都市家庭人妻激情自拍视频| 亚洲国际青青操综合网站| 亚洲av一妻不如妾| 欧美少妇性一区二区三区| 大香蕉玖玖一区2区| 最新97国产在线视频| 大陆av手机在线观看| 亚洲午夜高清在线观看| 中国黄片视频一区91| 亚洲午夜精品小视频| 在线免费观看亚洲精品电影| 中文字幕视频一区二区在线观看| 日本啪啪啪啪啪啪啪| 青青在线视频性感少妇和隔壁黑丝 | 蜜臀av久久久久蜜臀av麻豆| 国产精品免费不卡av| 亚洲粉嫩av一区二区三区| 亚洲午夜电影之麻豆| 日本免费午夜视频网站| 国产av福利网址大全| 久久精品久久精品亚洲人| 四川五十路熟女av| 亚洲一区二区三区uij| 老鸭窝日韩精品视频观看| 日韩av熟妇在线观看| 激情伦理欧美日韩中文字幕| 亚洲国产欧美一区二区三区…| 欧美美女人体视频一区| 夜女神免费福利视频| 国产激情av网站在线观看| 亚洲午夜伦理视频在线| 2022天天干天天操| 性欧美激情久久久久久久| 日韩美女搞黄视频免费| 大骚逼91抽插出水视频| 日本在线不卡免费视频| 超碰中文字幕免费观看| av在线shipin| 黄色片年轻人在线观看| 99热久久这里只有精品| 黑人借宿ntr人妻的沦陷2| 亚洲少妇人妻无码精品| 美女骚逼日出水来了| 青青青青爽手机在线| 日本女大学生的黄色小视频| 国产精选一区在线播放| 丝袜长腿第一页在线| 一级黄片久久久久久久久| 国产一线二线三线的区别在哪| 97精品成人一区二区三区| 全国亚洲男人的天堂| 日本精品视频不卡一二三| 久草视频在线一区二区三区资源站| 97人妻无码AV碰碰视频| 成人蜜臀午夜久久一区| 非洲黑人一级特黄片| 亚洲欧美一区二区三区电影| 国产白袜脚足J棉袜在线观看| 最新91九色国产在线观看| 国产欧美精品一区二区高清| 啪啪啪18禁一区二区三区| 鸡巴操逼一级黄色气| 中文字幕乱码av资源| 国产精品久久综合久久| 初美沙希中文字幕在线 | 亚洲精品无码久久久久不卡| 中文字幕日韩精品日本| 在线播放 日韩 av| 中文字幕av男人天堂| 国产熟妇一区二区三区av| 天堂av中文在线最新版| 日韩北条麻妃一区在线| 老司机福利精品免费视频一区二区 | 黑人借宿ntr人妻的沦陷2| 偷拍3456eee| 93精品视频在线观看| 国产刺激激情美女网站| 亚洲av香蕉一区区二区三区犇| 91精品国产高清自在线看香蕉网| 麻豆性色视频在线观看| 日本人妻精品久久久久久| av线天堂在线观看| 青青青aaaa免费| 极品丝袜一区二区三区| 欧美久久久久久三级网| 在线观看免费岛国av| 午夜蜜桃一区二区三区| 成年人黄色片免费网站| 国产精品国色综合久久| 精品美女久久久久久| 一区二区三区综合视频| 成年午夜影片国产片| 亚洲精品国产综合久久久久久久久| 中文字幕人妻一区二区视频| 亚洲日本一区二区久久久精品| 青青草亚洲国产精品视频| 91国产资源在线视频| 日本美女性生活一级片| 中文字幕人妻熟女在线电影| 热思思国产99re| 水蜜桃一区二区三区在线观看视频| 精品成人啪啪18免费蜜臀| 91桃色成人网络在线观看| 99国内小视频在现欢看| 天天操天天操天天碰| 欧美一区二区三区啪啪同性| 午夜在线观看一区视频| 在线播放一区二区三区Av无码| 人妻丝袜精品中文字幕| 亚洲成人国产av在线| 色97视频在线播放| 国产91精品拍在线观看| 国产精品熟女久久久久浪潮| 日曰摸日日碰夜夜爽歪歪| 中文字幕+中文字幕| 夜夜嗨av蜜臀av| 99精品国产免费久久| 加勒比视频在线免费观看| 2025年人妻中文字幕乱码在线| 亚洲国产成人av在线一区| 9久在线视频只有精品| 伊人开心婷婷国产av| 经典亚洲伊人第一页| 天天操天天射天天操天天天| 久久精品国产999| 99久久99一区二区三区| 天堂中文字幕翔田av| 80电影天堂网官网| 国产麻豆国语对白露脸剧情| 日日爽天天干夜夜操| 91九色国产porny蝌蚪| 欧美国产亚洲中英文字幕| 亚洲 中文字幕在线 日韩| 18禁精品网站久久| 免费福利av在线一区二区三区| 天天操夜夜骑日日摸| 亚洲av无乱一区二区三区性色| 一本一本久久a久久精品综合不卡 亚洲另类综合一区小说 | 国产亚洲精品品视频在线| 国产成人自拍视频播放| 国产麻豆91在线视频| 国产精品久久久久久久精品视频 | 午夜成午夜成年片在线观看| 人妻少妇一区二区三区蜜桃| 白嫩白嫩美女极品国产在线观看| 亚洲天堂av最新网址| 免费在线观看视频啪啪| 亚洲中文字幕综合小综合| 中文字幕一区二区亚洲一区| 亚洲精品乱码久久久久久密桃明| 肏插流水妹子在线乐播下载| 91国产在线免费播放| 视频 国产 精品 熟女 | 五十路熟女人妻一区二区9933| 亚洲熟色妇av日韩熟色妇在线| 岳太深了紧紧的中文字幕| av在线资源中文字幕| 97国产福利小视频合集| 在线免费观看黄页视频| 视频一区二区三区高清在线| 天天艹天天干天天操|