国产无遮挡裸体免费直播视频,久久精品国产蜜臀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一区二区三区| 天天干天天日天天谢综合156| 91福利视频免费在线观看| 国产福利在线视频一区| 在线观看操大逼视频| 日韩亚洲高清在线观看| 大学生A级毛片免费视频| 午夜精品福利一区二区三区p | 亚洲精品 日韩电影| 看一级特黄a大片日本片黑人| 亚洲一区二区久久久人妻| 又黄又刺激的午夜小视频| 国产高清精品极品美女| 97精品视频在线观看| 99精品视频在线观看婷婷| 热99re69精品8在线播放| 亚洲精品高清自拍av| 亚洲码av无色中文| 亚洲av成人免费网站| jiuse91九色视频| 成人亚洲精品国产精品| 懂色av之国产精品| 亚洲精品乱码久久久本| 人妻少妇亚洲精品中文字幕| 人人妻人人爽人人澡人人精品| 在线免费观看日本伦理| 亚洲av日韩精品久久久| 亚洲女人的天堂av| 100%美女蜜桃视频| 欧美中文字幕一区最新网址| 成人av天堂丝袜在线观看| 淫秽激情视频免费观看| 中文字幕在线一区精品| 直接观看免费黄网站| 天天日天天干天天要| 在线观看视频网站麻豆| 班长撕开乳罩揉我胸好爽| 欧美黄色录像免费看的| 亚洲成人免费看电影| 免费黄页网站4188| 黄色录像鸡巴插进去| 丰满熟女午夜福利视频| 91国偷自产一区二区三区精品| 日韩在线视频观看有码在线| av在线资源中文字幕| 成人av在线资源网站| 日韩av有码一区二区三区4| 中文字幕在线欧美精品| 免费观看污视频网站| 国产精品一区二区三区蜜臀av| 99精品视频在线观看婷婷| 亚洲熟女久久久36d| 国产真实乱子伦a视频| 国产精品久久久久久美女校花| 久久久麻豆精亚洲av麻花| 亚洲国产美女一区二区三区软件| 男人操女人逼逼视频网站| 四虎永久在线精品免费区二区| 美女小视频网站在线| 日韩视频一区二区免费观看| 成年午夜免费无码区| 动漫美女的小穴视频| 91精品国产黑色丝袜| 91快播视频在线观看| 人妻爱爱 中文字幕| 青青青青爽手机在线| 亚洲激情偷拍一区二区| 蜜桃视频在线欧美一区| 亚洲码av无色中文| 国产大鸡巴大鸡巴操小骚逼小骚逼| 99热色原网这里只有精品| 哥哥姐姐综合激情小说| 19一区二区三区在线播放| 青草久久视频在线观看| 91九色国产熟女一区二区| 精品国产乱码一区二区三区乱| 国产成人自拍视频播放| 98视频精品在线观看| 黄色录像鸡巴插进去| 不卡一不卡二不卡三| 在线不卡日韩视频播放| 国产乱子伦精品视频潮优女| av老司机精品在线观看| 淫秽激情视频免费观看| 91香蕉成人app下载| 免费观看污视频网站| 视频在线免费观看你懂得| 日本丰满熟妇BBXBBXHD| 中文人妻AV久久人妻水| AV天堂一区二区免费试看| 快点插进来操我逼啊视频| 国产精品3p和黑人大战| 66久久久久久久久久久| 国产精品中文av在线播放| 亚洲精品欧美日韩在线播放| 中文字幕一区二区亚洲一区| 欧美亚洲一二三区蜜臀| 啪啪啪18禁一区二区三区| 久草视频在线一区二区三区资源站 | 久久精品美女免费视频| 国产极品精品免费视频| 亚洲免费国产在线日韩| 东京干手机福利视频| 久精品人妻一区二区三区| 97少妇精品在线观看| 99av国产精品欲麻豆| 国产一区二区神马久久| 日本裸体熟妇区二区欧美| 91免费放福利在线观看| 亚洲一区二区三区精品乱码| 中字幕人妻熟女人妻a62v网| 亚洲熟妇久久无码精品| 在线免费观看av日韩| 亚洲国产在人线放午夜| 偷拍3456eee| 无套猛戳丰满少妇人妻| 一区二区三区蜜臀在线| 天堂av在线最新版在线| 欧美成人一二三在线网| 男女之间激情网午夜在线| 日本人妻欲求不满中文字幕| 日本少妇精品免费视频| 视频一区二区综合精品| 黑人3p华裔熟女普通话| 天天躁日日躁狠狠躁躁欧美av | 神马午夜在线观看视频| 97香蕉碰碰人妻国产樱花| 日韩美女精品视频在线观看网站 | 国产麻豆精品人妻av| 2012中文字幕在线高清| 欧美日韩激情啪啪啪| 38av一区二区三区| 日韩成人免费电影二区| 沙月文乃人妻侵犯中文字幕在线 | 国产品国产三级国产普通话三级| 91极品大一女神正在播放| 国产精品国产三级国产精东 | 日韩熟女系列一区二区三区| 五十路息与子猛烈交尾视频| 操日韩美女视频在线免费看 | 888欧美视频在线| 国产精品成久久久久三级蜜臀av | 日本少妇在线视频大香蕉在线观看| 老熟妇凹凸淫老妇女av在线观看| 大鸡巴插入美女黑黑的阴毛| 欧美老鸡巴日小嫩逼| 国产污污污污网站在线| 中文字幕中文字幕人妻| 91老师蜜桃臀大屁股| 五色婷婷综合狠狠爱| 亚洲精品av在线观看| 和邻居少妇愉情中文字幕| 九一传媒制片厂视频在线免费观看| 一色桃子人妻一区二区三区| 国产精品熟女久久久久浪潮| av中文字幕在线观看第三页| 婷婷综合蜜桃av在线| av网站色偷偷婷婷网男人的天堂| 88成人免费av网站| 一区二区三区的久久的蜜桃的视频 | 在线亚洲天堂色播av电影| 91国产在线免费播放| 精品美女久久久久久| 天天日夜夜干天天操| 亚洲av成人免费网站| 亚洲伊人av天堂有码在线| 操的小逼流水的文章| 在线播放国产黄色av| 日本高清撒尿pissing| 亚洲高清自偷揄拍自拍| 夫妻在线观看视频91| 久久精品亚洲国产av香蕉| 亚洲最大黄 嗯色 操 啊| 19一区二区三区在线播放| 国产中文精品在线观看| AV天堂一区二区免费试看| 欧美一区二区三区乱码在线播放| av中文字幕国产在线观看| 午夜精品亚洲精品五月色| 亚洲一区二区激情在线| 国产亚州色婷婷久久99精品| 欧美精品国产综合久久| 粉嫩av懂色av蜜臀av| 91精品高清一区二区三区| 欧美少妇性一区二区三区| 在线免费观看亚洲精品电影| 欧洲黄页网免费观看| 2021最新热播中文字幕| 欧美精品伦理三区四区| 国产视频网站国产视频| 美女视频福利免费看| 久久久麻豆精亚洲av麻花| av完全免费在线观看av| 丰满的子国产在线观看| 国产福利小视频二区| 成人激情文学网人妻| 一区二区三区毛片国产一区| 午夜毛片不卡在线看| 亚洲护士一区二区三区| 国产高清在线观看1区2区| 天堂av在线官网中文| 成人国产小视频在线观看| 五十路息与子猛烈交尾视频| 中文字幕 码 在线视频| 日本性感美女写真视频| 久久这里有免费精品| 亚洲一级美女啪啪啪| 欧美80老妇人性视频| 早川濑里奈av黑人番号| 亚洲成人av一区久久| 亚洲一区二区三区精品视频在线 | 75国产综合在线视频| 欧美精品欧美极品欧美视频| 青青青艹视频在线观看| 天天操夜夜操天天操天天操| 免费在线播放a级片| 亚洲av日韩av网站| 国产亚洲天堂天天一区| 97人妻无码AV碰碰视频| 国产亚洲精品欧洲在线观看| 成人综合亚洲欧美一区| 亚洲精品国产综合久久久久久久久 | 国产欧美日韩在线观看不卡| 精品一区二区三区三区色爱| 国产大鸡巴大鸡巴操小骚逼小骚逼 | 国产女人被做到高潮免费视频| 粉嫩av蜜乳av蜜臀| 国产高清精品一区二区三区| 午夜精品福利一区二区三区p| 久久精品久久精品亚洲人| www天堂在线久久| 欧美aa一级一区三区四区| 天天躁日日躁狠狠躁躁欧美av | 成年美女黄网站18禁久久| 88成人免费av网站| 欧美日韩熟女一区二区三区| 亚洲午夜福利中文乱码字幕| 老司机午夜精品视频资源| 激情国产小视频在线| 天天干天天日天天谢综合156| 人妻丝袜榨强中文字幕| 欧美日韩v中文在线| 伊人日日日草夜夜草| 青青青青在线视频免费观看| 亚洲av在线观看尤物| 99久久99一区二区三区| 欧美日本在线观看一区二区| 欧美日韩熟女一区二区三区| 久久精品亚洲国产av香蕉| 风流唐伯虎电视剧在线观看| 都市激情校园春色狠狠| 午夜精品久久久久麻豆影视| 亚洲狠狠婷婷综合久久app| 综合一区二区三区蜜臀| 午夜激情久久不卡一区二区| 一二三区在线观看视频| 97超碰人人搞人人| 国产九色91在线视频| 深田咏美亚洲一区二区| 亚洲欧美成人综合视频| 欧美性感尤物人妻在线免费看| 国产真实灌醉下药美女av福利| 欧美精品资源在线观看| 黑人借宿ntr人妻的沦陷2| 中文字幕人妻被公上司喝醉在线| 一区二区三区四区五区性感视频| 一区二区三区欧美日韩高清播放| 色呦呦视频在线观看视频| 欧美黑人性猛交xxxxⅹooo| 在线观看的黄色免费网站| caoporn蜜桃视频| 91国内精品自线在拍白富美| 99一区二区在线观看| 2022国产精品视频| 天天干天天操天天插天天日| av在线免费资源站| 青青青国产片免费观看视频| 欧美美女人体视频一区| 亚洲男人让女人爽的视频| 在线不卡日韩视频播放| 任你操任你干精品在线视频| 99国内精品永久免费视频| 久久久久91精品推荐99| 成人综合亚洲欧美一区| 色哟哟国产精品入口| 午夜91一区二区三区| 亚洲精品国产在线电影| 在线免费91激情四射| 欧美色婷婷综合在线| 日本三极片中文字幕| 国产三级精品三级在线不卡| 在线观看成人国产电影| 午夜场射精嗯嗯啊啊视频| 青青青激情在线观看视频| 人妻凌辱欧美丰满熟妇| 漂亮 人妻被中出中文| 大尺度激情四射网站| 国产自拍在线观看成人| 成人激情文学网人妻| 色秀欧美视频第一页| 免费人成黄页网站在线观看国产| 98视频精品在线观看| 黄网十四区丁香社区激情五月天| 大鸡巴操娇小玲珑的女孩逼| 99久久久无码国产精品性出奶水| 红杏久久av人妻一区| gogo国模私拍视频| 一区二区视频在线观看视频在线| 欧美va亚洲va天堂va| 大陆精品一区二区三区久久| 成人网18免费视频版国产| 天天日天天舔天天射进去| 一区二区三区 自拍偷拍| 北条麻妃av在线免费观看| 欧美第一页在线免费观看视频| 大屁股肉感人妻中文字幕在线| 激情国产小视频在线| 亚洲一级特黄特黄黄色录像片| 亚洲嫩模一区二区三区| 国产91久久精品一区二区字幕| 91精品国产麻豆国产| 美女少妇亚洲精选av| 国产在线一区二区三区麻酥酥| 91天堂精品一区二区| 欧美亚洲国产成人免费在线 | 婷婷六月天中文字幕| 午夜在线精品偷拍一区二| 日日夜夜精品一二三| 在线免费观看日本片| 三级av中文字幕在线观看| 亚洲av日韩高清hd| 97精品人妻一区二区三区精品| 班长撕开乳罩揉我胸好爽| 国产精品黄色的av| 青青草人人妻人人妻| 超碰97人人做人人爱| 欧美亚洲免费视频观看| 亚洲精品午夜久久久久| 国产片免费观看在线观看| 亚洲欧美在线视频第一页| 91自产国产精品视频| 91精品国产91久久自产久强| av完全免费在线观看av| 丝袜亚洲另类欧美变态| 黄色视频成年人免费观看| 粉嫩小穴流水视频在线观看| 亚洲男人让女人爽的视频| 和邻居少妇愉情中文字幕| 成人av免费不卡在线观看| 天天艹天天干天天操| 国产高清97在线观看视频| 美女福利视频导航网站| 操人妻嗷嗷叫视频一区二区| 青青草成人福利电影| weyvv5国产成人精品的视频| 19一区二区三区在线播放| 777奇米久久精品一区| 亚洲成人av一区在线| 亚洲精品麻豆免费在线观看| 国产麻豆精品人妻av| 精内国产乱码久久久久久| jiuse91九色视频| 夜色17s精品人妻熟女| 欧美乱妇无乱码一区二区| 亚洲另类图片蜜臀av| 三级等保密码要求条款| 国产九色91在线视频| 午夜精品一区二区三区4| 欧美80老妇人性视频| av乱码一区二区三区| 毛片一级完整版免费| 青青青视频手机在线观看| 日韩国产乱码中文字幕| 男人靠女人的逼视频| av天堂资源最新版在线看| 99精品一区二区三区的区| 丰满熟女午夜福利视频| 国产精品国产三级国产精东| 成人性爱在线看四区| 精品黑人巨大在线一区| 美女福利视频导航网站| 国产乱子伦一二三区| 欧美中国日韩久久精品| 亚洲精品国产久久久久久| 中文字幕av一区在线观看| 日本在线一区二区不卡视频| 2021最新热播中文字幕| 日本男女操逼视频免费看| 中国熟女@视频91| 日韩视频一区二区免费观看| 99re久久这里都是精品视频| 国产高潮无码喷水AV片在线观看| 美女被肏内射视频网站| 自拍偷拍亚洲精品第2页| 亚洲高清自偷揄拍自拍| 久久久久91精品推荐99| 欧美视频综合第一页| nagger可以指黑人吗| 欧美老妇精品另类不卡片| 97色视频在线观看| 岛国黄色大片在线观看| 97精品视频在线观看| 久草视频在线免播放| 国产精品黄色的av| 男人插女人视频网站| 亚洲一区二区三区久久午夜| 9l人妻人人爽人人爽| 91精品一区二区三区站长推荐| 91国产资源在线视频| 91国产资源在线视频| 三上悠亚和黑人665番号| 中国熟女一区二区性xx| 成年午夜影片国产片| 夜夜嗨av一区二区三区中文字幕| 国产a级毛久久久久精品| 中文字幕一区二区三区人妻大片| 午夜精品九一唐人麻豆嫩草成人| 大鸡巴插入美女黑黑的阴毛| 女同性ⅹxx女同hd| 亚洲欧美另类手机在线| 欧美专区第八页一区在线播放| 精品av久久久久久久| 成人影片高清在线观看| 综合页自拍视频在线播放| 久久三久久三久久三久久| 欧美老妇精品另类不卡片| 超pen在线观看视频公开97| 亚洲的电影一区二区三区| 桃色视频在线观看一区二区| 果冻传媒av一区二区三区| 亚洲码av无色中文| 一级黄色片夫妻性生活| 久久久久久九九99精品| 免费在线观看视频啪啪| 国产欧美精品不卡在线| 亚洲一区二区三区久久受| 欧美性感尤物人妻在线免费看| 国产大鸡巴大鸡巴操小骚逼小骚逼| 大肉大捧一进一出好爽在线视频 | 免费观看成年人视频在线观看| 中文字幕一区二区三区蜜月| 日本午夜久久女同精女女| 天天干天天啪天天舔| 91国产资源在线视频| 99精品免费久久久久久久久a| 成人av免费不卡在线观看| 福利片区一区二体验区| 中文字幕综合一区二区| 中文人妻AV久久人妻水| 黑人巨大的吊bdsm| 成人蜜臀午夜久久一区| 精品一区二区三区三区88| 91成人精品亚洲国产| 鸡巴操逼一级黄色气| yy6080国产在线视频| 国产一区成人在线观看视频| 春色激情网欧美成人| 日韩欧美一级aa大片| 日本午夜久久女同精女女| 蜜桃色婷婷久久久福利在线| 97国产在线观看高清| 77久久久久国产精产品| 中国无遮挡白丝袜二区精品| 懂色av之国产精品| 久久精品36亚洲精品束缚| 日噜噜噜夜夜噜噜噜天天噜噜噜| 国产日韩av一区二区在线| 欧美精品一区二区三区xxxx| 免费手机黄页网址大全| 噜噜色噜噜噜久色超碰| 啊啊好大好爽啊啊操我啊啊视频 | 天天做天天干天天舔| 最近的中文字幕在线mv视频| 日本精品视频不卡一二三| 青青草亚洲国产精品视频| 日本脱亚入欧是指什么| 国内自拍第一页在线观看| 亚洲 欧美 自拍 偷拍 在线| 精品区一区二区三区四区人妻| 91福利视频免费在线观看| 老司机你懂得福利视频| 人妻凌辱欧美丰满熟妇| 国产成人一区二区三区电影网站| 亚洲国产成人在线一区| 老司机福利精品免费视频一区二区| 美女视频福利免费看| 久久久久久久久久久久久97| 成人国产影院在线观看| 69精品视频一区二区在线观看| 人人妻人人澡人人爽人人dvl| 男人天堂最新地址av| 日本啪啪啪啪啪啪啪| 中文字幕在线第一页成人| 91社福利《在线观看| 久久精品在线观看一区二区| 成熟熟女国产精品一区| 天天干狠狠干天天操| 一区二区三区毛片国产一区| 午夜在线精品偷拍一区二| 春色激情网欧美成人| 国产精品精品精品999| 天天日夜夜干天天操| 91国产资源在线视频| 黑人借宿ntr人妻的沦陷2| 国产欧美精品不卡在线| 又色又爽又黄又刺激av网站| 日韩av有码中文字幕| 很黄很污很色的午夜网站在线观看 | 精品国产亚洲av一淫| 欧洲日韩亚洲一区二区三区| 天堂av在线官网中文| 亚洲日本一区二区三区| 岳太深了紧紧的中文字幕| 成人av免费不卡在线观看| 国产精品亚洲а∨天堂免| av在线资源中文字幕| 日韩欧美中文国产在线| 亚洲精品国产综合久久久久久久久 | 国产精品久久久久久久女人18| 大香蕉玖玖一区2区| 亚洲最大黄 嗯色 操 啊| 天天射夜夜操综合网| 国产内射中出在线观看| 欧美精品黑人性xxxx| 亚洲1卡2卡三卡4卡在线观看| 亚洲免费va在线播放| 18禁美女羞羞免费网站| 亚洲综合一区二区精品久久| 国产va精品免费观看| 98精产国品一二三产区区别| 亚洲av香蕉一区区二区三区犇| 水蜜桃国产一区二区三区| 日本18禁久久久久久| 国产精品大陆在线2019不卡| 97人人妻人人澡人人爽人人精品| 黄色视频成年人免费观看| 免费啪啪啪在线观看视频| 天天日天天干天天搡| www日韩a级s片av| av大全在线播放免费| 精品高跟鞋丝袜一区二区| 蜜桃专区一区二区在线观看| 亚洲高清国产自产av| 日韩三级电影华丽的外出| mm131美女午夜爽爽爽| 日韩欧美国产精品91| 国产午夜激情福利小视频在线| 亚洲另类在线免费观看| 欧美香蕉人妻精品一区二区| 在线免费观看靠比视频的网站| 女人精品内射国产99| 日韩影片一区二区三区不卡免费| 亚洲人一区二区中文字幕| 最新国产精品网址在线观看| 青草青永久在线视频18| 在线观看黄色成年人网站| 92福利视频午夜1000看| 91国产在线视频免费观看| 蜜臀av久久久久久久| 人妻少妇一区二区三区蜜桃| 99精品视频之69精品视频| 99热这里只有国产精品6| 69精品视频一区二区在线观看| 性色av一区二区三区久久久 | 美女在线观看日本亚洲一区| 午夜在线观看岛国av,com| 果冻传媒av一区二区三区| 青青草视频手机免费在线观看| 日本熟妇色熟妇在线观看| 中文字幕第1页av一天堂网 | 男人在床上插女人视频| 九一传媒制片厂视频在线免费观看| 好男人视频在线免费观看网站| av老司机精品在线观看| 亚洲高清自偷揄拍自拍| 伊人开心婷婷国产av| 女同性ⅹxx女同h偷拍| 偷拍自拍视频图片免费| 护士特殊服务久久久久久久| 青青青青操在线观看免费| 天天插天天狠天天操| 福利在线视频网址导航| 91久久综合男人天堂| 日韩成人性色生活片| 91综合久久亚洲综合| 国产第一美女一区二区三区四区| 亚洲一区二区人妻av| 日本精品美女在线观看| 无套猛戳丰满少妇人妻| 国产午夜男女爽爽爽爽爽视频| 成人精品在线观看视频| 91 亚洲视频在线观看| 天天干天天操天天扣| 一区二区三区麻豆福利视频| 日韩精品中文字幕在线| 日本一二三区不卡无| 国产一区二区久久久裸臀| 人妻在线精品录音叫床| 操操网操操伊剧情片中文字幕网 | 5528327男人天堂| 日本在线一区二区不卡视频| 亚洲自拍偷拍综合色| 中文字幕在线观看国产片| 亚洲特黄aaaa片| 熟妇一区二区三区高清版| 天天操天天操天天碰| 国产97在线视频观看| 男人的天堂av日韩亚洲| 亚洲欧美在线视频第一页| 一区二区三区欧美日韩高清播放 | 男人的天堂av日韩亚洲| 在线免费观看视频一二区| 天天日天天敢天天干| 午夜精品亚洲精品五月色| 青青草成人福利电影| 中国视频一区二区三区| 特一级特级黄色网片| 又粗又硬又猛又黄免费30| 亚洲欧美清纯唯美另类| 中文字幕一区二区三区蜜月| 成人24小时免费视频| 婷婷色国产黑丝少妇勾搭AV| 精品人妻一二三区久久| 涩涩的视频在线观看视频| 男大肉棒猛烈插女免费视频| 日韩北条麻妃一区在线| 欧美黄片精彩在线免费观看| 日日爽天天干夜夜操| 亚洲综合另类精品小说| 日本性感美女三级视频| 青娱乐在线免费视频盛宴| 中文字幕第三十八页久久| 亚洲一区二区三区偷拍女厕91| 欧美日韩一区二区电影在线观看| 欧美地区一二三专区| 最新91九色国产在线观看| 中文字幕在线永久免费播放| 大黑人性xxxxbbbb| 国产片免费观看在线观看| 亚洲 国产 成人 在线| 国产精品午夜国产小视频| 天天操天天干天天日狠狠插| 新婚人妻聚会被中出| 麻豆性色视频在线观看| 亚洲熟色妇av日韩熟色妇在线| 视频 一区二区在线观看| 亚洲在线免费h观看网站| 亚洲久久午夜av一区二区| 亚洲激情偷拍一区二区| 国产精品自偷自拍啪啪啪| 久久精品国产999| 精品日产卡一卡二卡国色天香| 青青青青青免费视频| 清纯美女在线观看国产| 大肉大捧一进一出好爽在线视频| 大香蕉福利在线观看| 欧美乱妇无乱码一区二区| 中文字日产幕乱六区蜜桃| 夜夜躁狠狠躁日日躁麻豆内射 | www日韩毛片av| 激情图片日韩欧美人妻| jul—619中文字幕在线| 91国内精品自线在拍白富美| 亚洲成av人无码不卡影片一| 欧美色呦呦最新网址| 日美女屁股黄邑视频| 韩国一级特黄大片做受| 天天操天天干天天日狠狠插| 无码中文字幕波多野不卡| 亚洲国产精品久久久久久6| 成人性爱在线看四区| 青青在线视频性感少妇和隔壁黑丝| 亚洲av成人网在线观看| 人妻自拍视频中国大陆| 国产美女午夜福利久久| 日本免费视频午夜福利视频| 视频二区在线视频观看| 国产精品日韩欧美一区二区| 成年人啪啪视频在线观看| h国产小视频福利在线观看| 日本熟妇喷水xxx| 天天日天天爽天天干| 蜜臀av久久久久蜜臀av麻豆| 青青青青青青青青青青草青青| 精品国产在线手机在线| 在线新三级黄伊人网| 欧美日韩v中文在线| 婷婷色中文亚洲网68| 国产精品视频男人的天堂| 国产精彩福利精品视频| 日韩在线视频观看有码在线| 日韩一区二区电国产精品| 天天色天天爱天天爽| 中文字幕av男人天堂| 国产一区二区神马久久| 亚洲成人精品女人久久久| 在线免费观看欧美小视频| 污污小视频91在线观看| 99热久久极品热亚洲| 韩国AV无码不卡在线播放| 国产精品国产三级麻豆| 日本xx片在线观看| 综合激情网激情五月天| 久久国产精品精品美女| 大屁股肉感人妻中文字幕在线| 四虎永久在线精品免费区二区| av手机免费在线观看高潮| 一区二区三区四区视频在线播放| 亚洲国产中文字幕啊啊啊不行了 | 亚洲Av无码国产综合色区| 亚洲免费va在线播放| 欧美精品一二三视频| 欲乱人妻少妇在线视频裸| 国产女人叫床高潮大片视频| 午夜毛片不卡免费观看视频| 中国熟女@视频91| 亚洲男人的天堂a在线| 2021国产一区二区| 日韩剧情片电影在线收看| 日本av熟女在线视频| 可以在线观看的av中文字幕| 动色av一区二区三区| 国产精品久久久黄网站| 97年大学生大白天操逼| 国产综合高清在线观看| 中文字幕一区二区人妻电影冢本| 亚洲免费成人a v| 一色桃子人妻一区二区三区| 国产精品人妻一区二区三区网站| 中文字幕日韩人妻在线三区| 美女小视频网站在线| 天堂v男人视频在线观看| 888欧美视频在线| 免费福利av在线一区二区三区| 久久国产精品精品美女| 久草视频在线免播放| 在线观看欧美黄片一区二区三区| 亚洲精品三级av在线免费观看| 亚洲精品麻豆免费在线观看| 哥哥姐姐综合激情小说| 亚洲在线一区二区欧美| 国产普通话插插视频| 欧美精品一二三视频| 成年人啪啪视频在线观看| 精品久久婷婷免费视频| 中文字幕日本人妻中出| 色天天天天射天天舔| 人人妻人人爽人人添夜| 搡老妇人老女人老熟女| 欧美国品一二三产区区别| 91p0rny九色露脸熟女| 直接能看的国产av| 91九色国产porny蝌蚪| 大鸡巴后入爆操大屁股美女| 午夜精品福利91av| 少妇高潮无套内谢麻豆| 亚洲综合另类欧美久久| 色吉吉影音天天干天天操| 国产一级精品综合av| 在线观看欧美黄片一区二区三区 | 一区二区三区毛片国产一区| 夜色撩人久久7777| 亚洲人妻国产精品综合| 亚洲欧美激情国产综合久久久| 天堂av中文在线最新版| 538精品在线观看视频| 91超碰青青中文字幕| 天堂资源网av中文字幕| 国产亚洲精品品视频在线| 精品黑人巨大在线一区| 看一级特黄a大片日本片黑人| 美洲精品一二三产区区别| 国产精品污污污久久| 国产精品视频欧美一区二区| 中文字幕免费福利视频6| 免费在线看的黄片视频| 欧美交性又色又爽又黄麻豆| 综合国产成人在线观看| 11久久久久久久久久久| 国产亚洲成人免费在线观看| 青青色国产视频在线| 日韩加勒比东京热二区| 国内精品在线播放第一页| 国产第一美女一区二区三区四区| 欧美另类重口味极品在线观看| 久久久久久久亚洲午夜综合福利| 青青青青在线视频免费观看| 在线成人日韩av电影| 久久热久久视频在线观看| chinese国产盗摄一区二区 | 天堂资源网av中文字幕| 国产精品黄页网站视频| 91精品啪在线免费| 91传媒一区二区三区| 亚洲人妻av毛片在线| 欧美日韩熟女一区二区三区| 中国黄色av一级片| 中文字幕免费在线免费| 成人伊人精品色xxxx视频| 免费观看污视频网站| 风流唐伯虎电视剧在线观看| 国产熟妇人妻ⅹxxxx麻豆| 蜜臀成人av在线播放| 超碰97人人澡人人| 国产精彩对白一区二区三区| 人人妻人人澡人人爽人人dvl| 天堂av在线播放免费| 日本精品视频不卡一二三| 在线观看911精品国产| 欧美精产国品一二三区| 亚洲中文字幕乱码区| 91she九色精品国产| 中文字幕人妻三级在线观看| 天天操天天干天天日狠狠插| 一区二区三区美女毛片| 国产欧美精品免费观看视频| 男生舔女生逼逼视频| 视频一区二区在线免费播放| 午夜国产福利在线观看| 特级无码毛片免费视频播放| 久久久久久性虐视频| 亚洲国产欧美一区二区三区…| 人妻自拍视频中国大陆| av中文字幕电影在线看| 啊啊啊想要被插进去视频| 在线不卡日韩视频播放| 国产欧美精品免费观看视频| 亚洲人人妻一区二区三区| 午夜精品在线视频一区| 91‖亚洲‖国产熟女| 一区二区三区蜜臀在线| 老有所依在线观看完整版| japanese五十路熟女熟妇| 欧美黄色录像免费看的| 97人妻无码AV碰碰视频| 97人妻总资源视频| 十八禁在线观看地址免费| 日本韩国免费一区二区三区视频 | 青青青国产片免费观看视频| 久久www免费人成一看片| 精品91高清在线观看| 人人妻人人爱人人草| 久久99久久99精品影院| 啊用力插好舒服视频| 51精品视频免费在线观看| 淫秽激情视频免费观看| 日本韩国免费一区二区三区视频| 国产女人被做到高潮免费视频 | 馒头大胆亚洲一区二区| 久青青草视频手机在线免费观看| 成人免费公开视频无毒| 天天操天天干天天日狠狠插| 国产使劲操在线播放| 护士特殊服务久久久久久久| 午夜激情久久不卡一区二区 | 久久99久久99精品影院| 精品av国产一区二区三区四区 | 欧美偷拍亚洲一区二区| gay gay男男瑟瑟在线网站| 亚洲天堂有码中文字幕视频| 国产精品3p和黑人大战| 馒头大胆亚洲一区二区| 98视频精品在线观看| 亚洲av男人的天堂你懂的| 不卡日韩av在线观看| 天天操天天干天天艹| AV无码一区二区三区不卡| 夜色17s精品人妻熟女| 亚洲精品午夜久久久久| 日韩欧美中文国产在线| 日韩精品一区二区三区在线播放| 4个黑人操素人视频网站精品91| 国产精品午夜国产小视频| 亚洲成人av一区久久| 国产白嫩美女一区二区| 在线新三级黄伊人网| 综合一区二区三区蜜臀| 精品区一区二区三区四区人妻| 秋霞午夜av福利经典影视| 啊啊好大好爽啊啊操我啊啊视频| 夜夜骑夜夜操夜夜奸| 亚洲综合乱码一区二区| 啊啊好慢点插舔我逼啊啊啊视频 | 亚洲av极品精品在线观看| 内射久久久久综合网| www,久久久,com| 国产精品三级三级三级| 亚洲精品国产久久久久久| 国产中文精品在线观看| www日韩毛片av| 91人妻精品一区二区在线看| 老师啊太大了啊啊啊尻视频| 天天日天天日天天擦| 偷拍自拍视频图片免费| 中文字幕在线免费第一页| 青青青青青手机视频| 精品久久久久久久久久久久人妻| 午夜福利资源综合激情午夜福利资| 黄色资源视频网站日韩| 亚洲另类图片蜜臀av| 亚洲一区二区人妻av| 久久免看30视频口爆视频| 日本午夜久久女同精女女| 国产成人一区二区三区电影网站| heyzo蜜桃熟女人妻| 最新中文字幕免费视频| 天天躁日日躁狠狠躁av麻豆| 欧美怡红院视频在线观看| 曰本无码人妻丰满熟妇啪啪| av中文字幕福利网| 亚洲av人人澡人人爽人人爱| av线天堂在线观看| 懂色av之国产精品| 国产精品一区二区三区蜜臀av| 57pao国产一区二区| 99的爱精品免费视频| 1024久久国产精品| 夜色福利视频在线观看| 亚洲老熟妇日本老妇| 99热这里只有精品中文| 日韩欧美制服诱惑一区在线| 欧美天堂av无线av欧美| 天天干天天啪天天舔| 51精品视频免费在线观看| 欧美成人综合色在线噜噜| 久久艹在线观看视频| 国产亚州色婷婷久久99精品| 男人的天堂一区二区在线观看| 亚洲成人熟妇一区二区三区 | 久久综合老鸭窝色综合久久| 在线免费观看亚洲精品电影 | 欧美精品中文字幕久久二区| 桃色视频在线观看一区二区| 国产精品黄大片在线播放| 国产精品亚洲а∨天堂免| 亚洲午夜在线视频福利| 亚洲欧美清纯唯美另类| 一区二区三区激情在线| 亚洲一区二区三区uij| 国产精品国产三级国产精东| 免费成人va在线观看| 一区二区三区蜜臀在线| 午夜激情高清在线观看| 国产精品欧美日韩区二区| 免费手机黄页网址大全| 午夜在线观看岛国av,com| 80电影天堂网官网| 日本一道二三区视频久久| 国产高清在线在线视频| 天天躁夜夜躁日日躁a麻豆| 亚洲成a人片777777| 97年大学生大白天操逼| 日韩欧美制服诱惑一区在线| 91人妻精品久久久久久久网站| 91精品国产综合久久久蜜| 亚国产成人精品久久久| 国产午夜福利av导航| 只有精品亚洲视频在线观看| 国产又色又刺激在线视频 | 白白操白白色在线免费视频 | 日比视频老公慢点好舒服啊| 亚洲成人精品女人久久久| 男人的天堂一区二区在线观看| 日本真人性生活视频免费看| 51精品视频免费在线观看| 亚洲欧美久久久久久久久| 午夜久久久久久久99| 免费国产性生活视频| 日本一区精品视频在线观看| 国产熟妇一区二区三区av| 夜夜嗨av蜜臀av| 大肉大捧一进一出好爽在线视频| 欧美女同性恋免费a| 特一级特级黄色网片| 日美女屁股黄邑视频| 大香蕉玖玖一区2区| 免费高清自慰一区二区三区网站| 揄拍成人国产精品免费看视频| 午夜在线精品偷拍一区二| 五十路丰满人妻熟妇| 亚洲精品一线二线在线观看| 专门看国产熟妇的网站| 91九色porny国产蝌蚪视频| 五十路人妻熟女av一区二区| 欧美麻豆av在线播放| 国产精品成人xxxx| 免费十精品十国产网站| 啪啪啪操人视频在线播放| 欧美色婷婷综合在线| 精品成人啪啪18免费蜜臀| 黄色视频成年人免费观看| 91chinese在线视频| 中国黄色av一级片| 少妇人妻久久久久视频黄片| 综合色区亚洲熟妇shxstz| 93视频一区二区三区| 日本人妻少妇18—xx| 精品成人啪啪18免费蜜臀| 视频一区 二区 三区 综合| 韩国AV无码不卡在线播放 | 3D动漫精品啪啪一区二区下载| 四虎永久在线精品免费区二区| 色综合久久五月色婷婷综合| 少妇被强干到高潮视频在线观看| 少妇人妻久久久久视频黄片| av天堂中文免费在线| 大鸡巴操娇小玲珑的女孩逼| 亚洲欧美一卡二卡三卡| 国产高潮无码喷水AV片在线观看| 天天夜天天日天天日| 男人操女人的逼免费视频| 偷拍美女一区二区三区| 成人免费公开视频无毒| 久久丁香花五月天色婷婷| 337p日本大胆欧美人| 中文字幕高清在线免费播放| 亚洲 欧美 精品 激情 偷拍 | 天堂av狠狠操蜜桃| 天天干夜夜操啊啊啊| 在线观看视频一区麻豆| 美女视频福利免费看| 久久国产精品精品美女| 80电影天堂网官网| 中文乱理伦片在线观看| 欧美日韩亚洲国产无线码| www日韩a级s片av| 爆乳骚货内射骚货内射在线| 69精品视频一区二区在线观看| 欧美综合婷婷欧美综合| 日韩成人免费电影二区| 国产亚洲精品欧洲在线观看| 亚洲欧美在线视频第一页| 国产卡一卡二卡三乱码手机| 在线观看的黄色免费网站| 无码中文字幕波多野不卡| 91福利在线视频免费观看| 久碰精品少妇中文字幕av| 亚洲精品乱码久久久久久密桃明 | 99精品视频之69精品视频| 午夜精品久久久久久99热| 亚洲一区二区三区偷拍女厕91| 青青青国产免费视频| 久久丁香婷婷六月天| 免费一级黄色av网站| 天天日天天透天天操| 青青青青青手机视频| 黄色资源视频网站日韩| 一区二区在线观看少妇| 日韩中文字幕精品淫| 91精品资源免费观看| 亚洲国产精品久久久久蜜桃| 沈阳熟妇28厘米大战黑人| 91人妻精品久久久久久久网站| 91试看福利一分钟| 2020久久躁狠狠躁夜夜躁 | 韩国三级aaaaa高清视频| 97超碰国语国产97超碰| 欧美久久一区二区伊人| 人妻少妇亚洲精品中文字幕| 亚洲人一区二区中文字幕| 宅男噜噜噜666国产| 国产亚洲视频在线观看| 很黄很污很色的午夜网站在线观看 | 香蕉aⅴ一区二区三区| 91传媒一区二区三区| huangse网站在线观看| 国产福利小视频二区| 亚洲色偷偷综合亚洲AV伊人| 91中文字幕最新合集| 国产亚洲成人免费在线观看| 免费在线黄色观看网站| 天天摸天天干天天操科普| 欧美 亚洲 另类综合| 91精品国产综合久久久蜜| 91国内精品久久久久精品一| aiss午夜免费视频| 日日夜夜大香蕉伊人| 天天干天天操天天扣| 天天操天天干天天艹| 国产亚洲精品欧洲在线观看| 大胸性感美女羞爽操逼毛片| 精品首页在线观看视频| 亚洲激情,偷拍视频| 成人蜜桃美臀九一一区二区三区| 色综合色综合色综合色| 久久这里只有精品热视频| 成年人黄视频在线观看| 青青热久免费精品视频在线观看 | 国产剧情演绎系列丝袜高跟| 日本熟妇丰满厨房55| 亚洲激情偷拍一区二区| 天天做天天爽夜夜做少妇| 在线观看的黄色免费网站| 欧亚乱色一区二区三区| 亚洲精品一区二区三区老狼| 日韩中文字幕福利av| 伊人网中文字幕在线视频| 国产久久久精品毛片| 人妻少妇亚洲一区二区| 中国无遮挡白丝袜二区精品| 亚洲伊人av天堂有码在线| 成人久久精品一区二区三区| 欧美精品激情在线最新观看视频| 中文字幕之无码色多多| av网站色偷偷婷婷网男人的天堂| 国产成人小视频在线观看无遮挡| 天干天天天色天天日天天射| 78色精品一区二区三区| 久久久久五月天丁香社区| 国产老熟女伦老熟妇ⅹ| 人人妻人人爽人人添夜| 在线观看视频一区麻豆| 91精品国产综合久久久蜜| 桃色视频在线观看一区二区| 九色视频在线观看免费| 天天干天天操天天玩天天射| 日韩a级黄色小视频| 最新日韩av传媒在线| 成年人该看的视频黄免费| 91在线视频在线精品3| 久久99久久99精品影院| 国产精品久久久久久久精品视频 | 青青草在观免费国产精品| 99久久99久国产黄毛片| 人妻凌辱欧美丰满熟妇| 亚洲人人妻一区二区三区| 91麻豆精品秘密入口在线观看| 国产日韩欧美美利坚蜜臀懂色| 亚洲av男人的天堂你懂的| 中文字幕 人妻精品| 福利一二三在线视频观看| 伊人情人综合成人久久网小说| 啊啊啊视频试看人妻| 91麻豆精品秘密入口在线观看| 亚洲公开视频在线观看| 污污小视频91在线观看| 黑人性生活视频免费看| 亚洲中文字字幕乱码| 亚洲欧美综合另类13p| 成年美女黄网站18禁久久| 日韩欧美制服诱惑一区在线| 色噜噜噜噜18禁止观看| 亚洲天天干 夜夜操| 国产精品一区二区av国| 免费观看国产综合视频| 99的爱精品免费视频| eeuss鲁片一区二区三区| 在线免费观看亚洲精品电影| 精品av国产一区二区三区四区| 99热99这里精品6国产| 欧洲黄页网免费观看| 日韩av有码中文字幕| 沙月文乃人妻侵犯中文字幕在线| 中文字幕亚洲久久久| 91成人在线观看免费视频| 国产成人精品亚洲男人的天堂| 另类av十亚洲av| 中文字幕,亚洲人妻| 久久麻豆亚洲精品av| 9国产精品久久久久老师| 99热99re在线播放| 日韩人妻xxxxx| 国产精彩对白一区二区三区| 岛国av高清在线成人在线| 欧美亚洲国产成人免费在线| 蜜臀av久久久久久久| 黑人变态深video特大巨大| 中文字幕高清资源站| 天干天天天色天天日天天射| 插小穴高清无码中文字幕| 伊人情人综合成人久久网小说| 97a片免费在线观看| 中文字幕免费在线免费| av中文字幕福利网| 午夜蜜桃一区二区三区| 人妻少妇亚洲一区二区| 欧美日韩熟女一区二区三区| 国产女人被做到高潮免费视频 | 亚洲av午夜免费观看| 极品性荡少妇一区二区色欲| 青青青青青操视频在线观看| 天天色天天舔天天射天天爽| 老有所依在线观看完整版| 国产精品亚洲在线观看| 日日操夜夜撸天天干| 免费黄页网站4188| 大黑人性xxxxbbbb| 天天躁夜夜躁日日躁a麻豆| 黄色成人在线中文字幕| 亚洲欧美另类手机在线| 国产精品久久久久网| 亚洲美女自偷自拍11页| 78色精品一区二区三区| 国产精品一二三不卡带免费视频 | 日噜噜噜夜夜噜噜噜天天噜噜噜| 看一级特黄a大片日本片黑人| 成人高清在线观看视频| 9l人妻人人爽人人爽| 亚洲丝袜老师诱惑在线观看| 日本真人性生活视频免费看| 欧美精品激情在线最新观看视频 | 中文字幕成人日韩欧美| 久久免看30视频口爆视频| 偷青青国产精品青青在线观看| 亚洲高清视频在线不卡| 三上悠亚和黑人665番号| 亚洲熟女久久久36d| 国产亚洲精品视频合集| av无限看熟女人妻另类av| 久久久久久久久久久久久97| 91色九色porny| 日曰摸日日碰夜夜爽歪歪| 涩爱综合久久五月蜜臀| 亚洲护士一区二区三区| 99久久久无码国产精品性出奶水| 岛国免费大片在线观看| 淫秽激情视频免费观看| 99re国产在线精品| 亚洲成人午夜电影在线观看| 91自产国产精品视频| 亚洲av日韩av第一区二区三区| 天天色天天爱天天爽| 超碰公开大香蕉97| xxx日本hd高清| 亚洲欧美另类手机在线| 亚洲成人激情av在线| 最后99天全集在线观看| 99国内小视频在现欢看| 老有所依在线观看完整版| 亚洲2021av天堂| 成人av电影免费版| 欧美一区二区三区在线资源| 家庭女教师中文字幕在线播放| 久久精品美女免费视频| 日韩亚洲高清在线观看| 天天日天天舔天天射进去| 又粗又硬又猛又爽又黄的| 成人H精品动漫在线无码播放| 丝袜美腿视频诱惑亚洲无| 免费黄高清无码国产| 欧美日本在线视频一区| 国产精品污污污久久| 亚洲av日韩精品久久久久久hd| 91破解版永久免费| 日韩无码国产精品强奸乱伦| 99re国产在线精品| 国产视频在线视频播放| 中文字日产幕乱六区蜜桃| 亚洲第17页国产精品| tube69日本少妇| 福利在线视频网址导航| 欧美性感尤物人妻在线免费看| 国产精品中文av在线播放| 亚洲av可乐操首页| 无忧传媒在线观看视频| 国产成人精品一区在线观看| av亚洲中文天堂字幕网| 国产欧美日韩在线观看不卡| 国产精品日韩欧美一区二区| 天天操天天污天天射| 黑人借宿ntr人妻的沦陷2| 国产精品入口麻豆啊啊啊| v888av在线观看视频| 在线国产中文字幕视频| 亚洲av琪琪男人的天堂| 亚洲中文精品人人免费| 黄页网视频在线免费观看 | 老司机免费福利视频网| 亚洲成人av一区久久| 欧美另类z0z变态| 亚洲专区激情在线观看视频| nagger可以指黑人吗| 亚洲 欧美 自拍 偷拍 在线| 99久久中文字幕一本人| 一区二区三区视频,福利一区二区| 偷青青国产精品青青在线观看| 亚洲Av无码国产综合色区| 青青草原色片网站在线观看| 婷婷午夜国产精品久久久| huangse网站在线观看| 国产亚洲成人免费在线观看| 青春草视频在线免费播放| 人妻丰满熟妇综合网| 亚洲免费va在线播放| 操操网操操伊剧情片中文字幕网| 亚洲精品国偷自产在线观看蜜桃| 91快播视频在线观看| 白白操白白色在线免费视频| 和邻居少妇愉情中文字幕| 91人妻精品一区二区久久| 国内自拍第一页在线观看| 韩国AV无码不卡在线播放| 宅男噜噜噜666国产| 日视频免费在线观看| jiuse91九色视频| 毛片av在线免费看| av在线免费资源站| 日韩二区视频一线天婷婷五| 国产一区成人在线观看视频 | 天堂av在线播放免费| 手机看片福利盒子日韩在线播放| 在线视频免费观看网| 亚洲嫩模一区二区三区| 色呦呦视频在线观看视频| 55夜色66夜色国产精品站| 日本xx片在线观看| 久久三久久三久久三久久| 久久久久久97三级| 成人av久久精品一区二区| 精品亚洲国产中文自在线| 在线观看免费av网址大全| 激情色图一区二区三区| 同居了嫂子在线播高清中文| 午夜精品久久久久麻豆影视| 男人天堂色男人av| 亚洲av一妻不如妾| 久久精品视频一区二区三区四区 | 含骚鸡巴玩逼逼视频| 婷婷激情四射在线观看视频| 大胸性感美女羞爽操逼毛片| 国产又粗又黄又硬又爽| 天天操天天弄天天射| 成人24小时免费视频| 久久久精品国产亚洲AV一| 亚洲精品ww久久久久久| 日韩av中文在线免费观看| 2020av天堂网在线观看| 欧美精品久久久久久影院| 9l人妻人人爽人人爽| 91天堂精品一区二区| 成人18禁网站在线播放| 国产精品自拍在线视频| 亚洲国产中文字幕啊啊啊不行了| 91成人精品亚洲国产| 欧美精品久久久久久影院| 日韩亚国产欧美三级涩爱| 三上悠亚和黑人665番号| 亚洲一区自拍高清免费视频| 国产97视频在线精品| 四川五十路熟女av| 99一区二区在线观看| 特黄老太婆aa毛毛片| 日韩人妻在线视频免费| 在线观看国产网站资源| 综合一区二区三区蜜臀| 成人亚洲精品国产精品| 91久久人澡人人添人人爽乱| 精品乱子伦一区二区三区免费播 | 人妻久久久精品69系列| 东京干手机福利视频| 真实国产乱子伦一区二区| 亚洲天堂精品久久久| 大陆av手机在线观看| 黄色成人在线中文字幕| 亚洲欧洲一区二区在线观看| 日韩在线视频观看有码在线| 熟女人妻在线中出观看完整版 | 天天日天天爽天天干| 欧美专区第八页一区在线播放 | 日本一区精品视频在线观看| 国产av欧美精品高潮网站| 2022国产综合在线干| 国产精品视频男人的天堂| 久草极品美女视频在线观看| 97超碰免费在线视频| 91精品国产91久久自产久强| 日韩欧美高清免费在线| 成人乱码一区二区三区av| 97国产在线观看高清| 天天做天天干天天舔| 青青青国产片免费观看视频| 亚洲一区二区三区在线高清| 在线免费观看靠比视频的网站| 亚洲伊人久久精品影院一美女洗澡| 年轻的人妻被夫上司侵犯| 国产精品女邻居小骚货| 日韩视频一区二区免费观看| 天天日夜夜干天天操| 日本人妻少妇18—xx| 91综合久久亚洲综合| 亚洲福利天堂久久久久久| 日韩少妇人妻精品无码专区| 青青草人人妻人人妻| 国产熟妇一区二区三区av| 国产黄色片在线收看| 精品黑人一区二区三区久久国产| h国产小视频福利在线观看| 91国语爽死我了不卡| 中文字幕一区二 区二三区四区 | 一区二区视频视频视频| 成人18禁网站在线播放| 亚洲美女自偷自拍11页| 人妻丰满熟妇综合网| 熟女人妻三十路四十路人妻斩| 欧亚乱色一区二区三区| 天天色天天爱天天爽| aiss午夜免费视频| 国产精品人妻66p| 又黄又刺激的午夜小视频| 端庄人妻堕落挣扎沉沦| 中文字幕第1页av一天堂网| 一区二区免费高清黄色视频| 黄色黄色黄片78在线| 日视频免费在线观看| 青青青青青青青在线播放视频| 日本乱人一区二区三区| 超碰97免费人妻麻豆| 影音先锋女人av噜噜色| 亚洲一区二区三区av网站| 日本黄色特一级视频| 成人乱码一区二区三区av| 中文字幕在线观看国产片| 孕妇奶水仑乱A级毛片免费看| 啊啊啊想要被插进去视频| 日韩欧美一级aa大片| 人人妻人人爽人人澡人人精品| 91人妻精品久久久久久久网站| 国产之丝袜脚在线一区二区三区| 天天综合天天综合天天网| 精品一区二区三四区| 日本熟妇色熟妇在线观看| 亚洲自拍偷拍精品网| 国产剧情演绎系列丝袜高跟| 欧美精产国品一二三产品价格| 特大黑人巨大xxxx| 51精品视频免费在线观看| 岛国黄色大片在线观看| 日韩一区二区电国产精品| 九九视频在线精品播放| 亚洲视频乱码在线观看| 女生自摸在线观看一区二区三区 | 黄色大片男人操女人逼| 亚洲av男人天堂久久| 大鸡八强奸视频在线观看| 中文字幕日韩人妻在线三区| 国产夫妻视频在线观看免费| av手机在线观播放网站| 国产又粗又硬又大视频| 色狠狠av线不卡香蕉一区二区 | 青青草国内在线视频精选| 国产亚洲视频在线观看| 亚洲综合在线观看免费| 国产精品自拍视频大全| 青青在线视频性感少妇和隔壁黑丝| 日本最新一二三区不卡在线 | 99国内精品永久免费视频| 久久久精品国产亚洲AV一| 夫妻在线观看视频91| 中文字幕一区二区亚洲一区| 97国产在线观看高清| 好吊视频—区二区三区| 国产chinesehd精品麻豆| 毛茸茸的大外阴中国视频| 天天干天天操天天扣| 天天日天天干天天爱| 久久久极品久久蜜桃| 精品亚洲中文字幕av| 亚洲青青操骚货在线视频| 美女骚逼日出水来了| 亚洲 图片 欧美 图片| 淫秽激情视频免费观看| av中文字幕网址在线| 久久三久久三久久三久久| 绝顶痉挛大潮喷高潮无码| 亚洲1卡2卡三卡4卡在线观看| 成人综合亚洲欧美一区| 97人妻无码AV碰碰视频| 日本熟女50视频免费| 91久久综合男人天堂| 麻豆性色视频在线观看| 亚洲美女自偷自拍11页| 特级欧美插插插插插bbbbb| 亚洲欧美一卡二卡三卡| 欧美日韩国产一区二区三区三州| 亚洲高清自偷揄拍自拍| caoporn蜜桃视频| av中文字幕福利网| 天堂女人av一区二区| 亚洲男人在线天堂网| 福利视频网久久91| 夜夜骑夜夜操夜夜奸| sejizz在线视频| 69精品视频一区二区在线观看| 亚洲精品中文字幕下载| 久草视频在线免播放| 超碰在线观看免费在线观看| 自拍偷拍亚洲精品第2页| 日韩人妻在线视频免费| av资源中文字幕在线观看| 天天爽夜夜爽人人爽QC| 夜色17s精品人妻熟女| 欧美专区第八页一区在线播放| 在线观看亚洲人成免费网址| 扒开让我视频在线观看| 国产日本精品久久久久久久| 国内自拍第一页在线观看| 91国内视频在线观看| 精品国产在线手机在线| 91国语爽死我了不卡| www久久久久久久久久久| 日日夜夜狠狠干视频| 福利午夜视频在线观看| 啪啪啪啪啪啪啪啪啪啪黄色| 狠狠操操操操操操操操操| 伊人日日日草夜夜草| 亚洲精品国产在线电影| 日韩欧美一级精品在线观看| 一区二区在线视频中文字幕 | 欧美精品黑人性xxxx| h国产小视频福利在线观看| 亚洲综合色在线免费观看| 加勒比视频在线免费观看| 乱亲女秽乱长久久久| 人妻另类专区欧美制服| 香港三日本三韩国三欧美三级| 丝袜长腿第一页在线| 成人国产小视频在线观看| 性生活第二下硬不起来| 女同互舔一区二区三区| 91传媒一区二区三区| 新婚人妻聚会被中出| 中文字母永久播放1区2区3区 | 亚洲图库另类图片区| 亚洲精品三级av在线免费观看| 午夜国产福利在线观看| 秋霞午夜av福利经典影视| 亚洲护士一区二区三区| 大肉大捧一进一出好爽在线视频| 888欧美视频在线| 国产女人被做到高潮免费视频| 在线观看av亚洲情色| 中文字幕一区二 区二三区四区| 亚洲人一区二区中文字幕| 国产成人精品一区在线观看| 9国产精品久久久久老师| 午夜成午夜成年片在线观看| 自拍偷拍一区二区三区图片| 午夜精品一区二区三区福利视频| 亚洲av色香蕉一区二区三区| 欧洲日韩亚洲一区二区三区| 午夜在线精品偷拍一区二| 亚洲成人情色电影在线观看| 日日夜夜大香蕉伊人| 婷婷六月天中文字幕| 搞黄色在线免费观看| 东京热男人的av天堂| 日韩精品电影亚洲一区| 69精品视频一区二区在线观看| 午夜美女少妇福利视频| 成人av久久精品一区二区| 最新的中文字幕 亚洲| 91国内视频在线观看| 免费av岛国天堂网站| 天天色天天操天天舔| 国产精品久久久久久久精品视频| 大屁股熟女一区二区三区| 久久久久久久亚洲午夜综合福利| 亚洲一区二区人妻av| 国产美女一区在线观看| 日韩欧美亚洲熟女人妻| 一二三中文乱码亚洲乱码one| 综合国产成人在线观看| 午夜在线一区二区免费| 夜鲁夜鲁狠鲁天天在线| 人妻无码中文字幕专区| 91麻豆精品秘密入口在线观看| 黄页网视频在线免费观看| 成人久久精品一区二区三区| 在线免费观看99视频| 又黄又刺激的午夜小视频| 超级av免费观看一区二区三区| 一区二区三区在线视频福利| 美女少妇亚洲精选av| 一区二区三区久久中文字幕| 国产在线拍揄自揄视频网站| 大香蕉玖玖一区2区| 亚洲国产欧美一区二区丝袜黑人| 国产日韩一区二区在线看| brazzers欧熟精品系列| 国产精品欧美日韩区二区| 最近中文2019年在线看| 国产性生活中老年人视频网站| 国产又色又刺激在线视频 | 亚洲一区二区三区久久午夜| 人妻自拍视频中国大陆| 女警官打开双腿沦为性奴| 欧美黑人巨大性xxxxx猛交| 日本三极片中文字幕| 亚洲美女高潮喷浆视频| 鸡巴操逼一级黄色气| 久久久精品国产亚洲AV一| 成人国产激情自拍三区| 国产a级毛久久久久精品| 人妻素人精油按摩中出| 久草视频福利在线首页| 亚洲2021av天堂| 91精品国产91青青碰| 日本脱亚入欧是指什么| 国产视频精品资源网站| 国产精品黄大片在线播放| 亚洲欧美一区二区三区电影| 国产成人综合一区2区| 成人高清在线观看视频| 国产精品国产三级麻豆| 精品久久婷婷免费视频| 一区二区三区麻豆福利视频| 中文字幕乱码av资源| 精品成人午夜免费看| 最新日韩av传媒在线| 人妻少妇亚洲一区二区| 欧洲黄页网免费观看| 制丝袜业一区二区三区| 天天日夜夜干天天操| av网址国产在线观看| 日韩中文字幕在线播放第二页| 亚洲福利天堂久久久久久| 男女啪啪啪啪啪的网站| 天天干夜夜操啊啊啊| 五月激情婷婷久久综合网| 日韩av有码一区二区三区4| 少妇高潮一区二区三区| 大鸡吧插逼逼视频免费看| 国产麻豆剧传媒精品国产av蜜桃| 福利视频广场一区二区| 一区二区三区蜜臀在线| 特大黑人巨大xxxx| 日韩熟女av天堂系列| 国产高清精品极品美女| 欧美80老妇人性视频| 日本高清在线不卡一区二区| 二区中出在线观看老师 | 午夜的视频在线观看| 操日韩美女视频在线免费看| 无码精品一区二区三区人| 中文字幕在线一区精品| 欧美日韩v中文在线| 欧美一区二区三区四区性视频| 国产va精品免费观看| 亚洲综合自拍视频一区| 国产精品黄页网站视频| 亚洲欧美激情国产综合久久久| 80电影天堂网官网| 精品久久婷婷免费视频| 国产高清精品极品美女| 女同互舔一区二区三区| 中国老熟女偷拍第一页| 激情综合治理六月婷婷| 初美沙希中文字幕在线| 夜色17s精品人妻熟女| 亚洲 中文 自拍 另类 欧美| heyzo蜜桃熟女人妻| 少妇人妻久久久久视频黄片| 欧美女同性恋免费a| 晚上一个人看操B片| 久久久久五月天丁香社区| 国产精品人妻熟女毛片av久| 一区二区三区日本伦理| 欧美老妇精品另类不卡片| 激情内射在线免费观看| 亚洲伊人久久精品影院一美女洗澡| 沈阳熟妇28厘米大战黑人| 欧美 亚洲 另类综合| 久久这里有免费精品| 51国产成人精品视频| 中国黄片视频一区91| 欧美亚洲中文字幕一区二区三区| 天天干天天操天天玩天天射 | 最新国产精品网址在线观看| 精品亚洲中文字幕av| 日韩a级黄色小视频| 99热这里只有国产精品6| 日本裸体熟妇区二区欧美| 亚洲青青操骚货在线视频| 91社福利《在线观看| 成人av中文字幕一区| 又黄又刺激的午夜小视频| 夜女神免费福利视频| 人人妻人人爽人人添夜| 国产污污污污网站在线| 日韩欧美中文国产在线| av天堂中文字幕最新| 亚洲精品 欧美日韩| 中文字幕高清在线免费播放| 很黄很污很色的午夜网站在线观看| 91麻豆精品秘密入口在线观看| 成年人该看的视频黄免费| 天天摸天天亲天天舔天天操天天爽| 亚洲在线免费h观看网站| 久久精品久久精品亚洲人| 青青青aaaa免费| 亚洲国产成人在线一区| 色婷婷精品大在线观看| 美女操逼免费短视频下载链接| www,久久久,com| 人妻最新视频在线免费观看| 欧美另类一区二区视频| 黄色片黄色片wyaa| 中文字幕高清在线免费播放| 成人亚洲精品国产精品| 国产精品女邻居小骚货| 亚洲国产在线精品国偷产拍| 无码国产精品一区二区高潮久久4| 精品久久久久久久久久久a√国产| 人妻熟女在线一区二区| 免费在线黄色观看网站| 女同互舔一区二区三区| 午夜av一区二区三区| 北条麻妃av在线免费观看| 中文字幕 亚洲av| 成人av电影免费版| 天堂中文字幕翔田av| 社区自拍揄拍尻屁你懂的| 丝袜美腿欧美另类 中文字幕| 538精品在线观看视频| 久久精品亚洲成在人线a| 大屁股肉感人妻中文字幕在线| 天天干天天操天天玩天天射| 亚洲精品成人网久久久久久小说| 国产视频一区在线观看| 高潮视频在线快速观看国家快速| 国产va精品免费观看| 国产又粗又黄又硬又爽| 久久久久久久一区二区三| 中文字幕第一页国产在线| 亚洲成人黄色一区二区三区| 国产卡一卡二卡三乱码手机| 偷拍美女一区二区三区| 亚洲免费在线视频网站| 换爱交换乱高清大片| 男人操女人逼逼视频网站| 日韩北条麻妃一区在线| 99久久久无码国产精品性出奶水 | 午夜大尺度无码福利视频| 宅男噜噜噜666国产| 青青青爽视频在线播放| 日韩欧美亚洲熟女人妻| 女同互舔一区二区三区| 中出中文字幕在线观看| 超级福利视频在线观看| 999热精品视频在线| 黑人变态深video特大巨大| 亚洲av日韩av网站| 欧美80老妇人性视频| 久久这里有免费精品| 国产精品久久综合久久| 日韩欧美一级aa大片| 亚洲成人精品女人久久久| 9国产精品久久久久老师| 欧美黑人性暴力猛交喷水| 国产精品自拍偷拍a| 久久精品国产999| nagger可以指黑人吗| 自拍偷拍日韩欧美亚洲| 97国产在线观看高清| 婷婷五月亚洲综合在线| 97人妻夜夜爽二区欧美极品| 一区二区三区的久久的蜜桃的视频| 国产大学生援交正在播放| 直接观看免费黄网站| 青青草精品在线视频观看| 男女啪啪视频免费在线观看| 熟女国产一区亚洲中文字幕| 国产1区,2区,3区| 在线免费观看欧美小视频| 成人免费做爰高潮视频| 中文字母永久播放1区2区3区| 久久久麻豆精亚洲av麻花| 福利在线视频网址导航| 大香蕉伊人国产在线| 欧美男人大鸡吧插女人视频| 国产91嫩草久久成人在线视频| 亚洲av日韩精品久久久| 男人插女人视频网站| 天天想要天天操天天干| 中国产一级黄片免费视频播放| 99精品免费久久久久久久久a| 人妻素人精油按摩中出| 亚洲 中文字幕在线 日韩| 亚洲精品国品乱码久久久久| 精品人人人妻人人玩日产欧| 91精品国产黑色丝袜| 三级av中文字幕在线观看| 亚洲成人三级在线播放| 午夜精品福利91av| 男生用鸡操女生视频动漫| 精品人妻伦一二三区久 | 99精品免费观看视频| 99精品国自产在线人| 黄色黄色黄片78在线| 天天日天天日天天擦| 亚洲国产精品免费在线观看| 播放日本一区二区三区电影| 动漫美女的小穴视频| av天堂中文免费在线| 精品久久久久久久久久久久人妻| 亚洲综合一区成人在线| 久草电影免费在线观看| 亚洲美女美妇久久字幕组| 中文字幕成人日韩欧美| 扒开腿挺进肉嫩小18禁视频| 天天干天天操天天摸天天射| av在线资源中文字幕| 日本高清成人一区二区三区| 中文字幕人妻av在线观看| 国产精品自拍偷拍a| 制服丝袜在线人妻中文字幕| 蜜桃久久久久久久人妻| 亚国产成人精品久久久| 国产精品自拍偷拍a| 亚洲精品欧美日韩在线播放| 538精品在线观看视频| 亚洲图库另类图片区| 欧美成人综合色在线噜噜| 熟女人妻三十路四十路人妻斩| 欧美色呦呦最新网址| 摧残蹂躏av一二三区| 一二三区在线观看视频| 欧美一级色视频美日韩| 蜜桃精品久久久一区二区| yy96视频在线观看| 成人18禁网站在线播放| 精品区一区二区三区四区人妻| 天天日天天做天天日天天做| 亚洲欧美另类手机在线| 美女吃鸡巴操逼高潮视频| 综合页自拍视频在线播放| 国产chinesehd精品麻豆| 国产av一区2区3区| 免费无毒热热热热热热久| 91破解版永久免费| 日本成人一区二区不卡免费在线| 欧美成人精品欧美一级黄色| 欧美女同性恋免费a| 888亚洲欧美国产va在线播放| 自拍偷拍 国产资源| 亚洲成人国产av在线| 一区二区三区四区视频在线播放 | 免费观看成年人视频在线观看| av一区二区三区人妻| 天天摸天天亲天天舔天天操天天爽| 亚洲一级美女啪啪啪| 日本黄色特一级视频| 国产揄拍高清国内精品对白| 亚洲欧洲一区二区在线观看| 动漫av网站18禁| 无码中文字幕波多野不卡| 亚洲激情唯美亚洲激情图片| 最新的中文字幕 亚洲| 国产精品手机在线看片| 亚洲av成人网在线观看| 在线免费观看靠比视频的网站 | 成人av免费不卡在线观看| 视频一区二区在线免费播放| av中文字幕网址在线| 成人性黑人一级av| 狍和女人的王色毛片| 欧美日本aⅴ免费视频| 午夜精品久久久久麻豆影视| 久久精品国产亚洲精品166m| 天天草天天色天天干| 三级av中文字幕在线观看| 美日韩在线视频免费看| 大香蕉玖玖一区2区| 国产又粗又硬又猛的毛片视频 | 亚洲中文字幕国产日韩| 91国内精品久久久久精品一| 日韩北条麻妃一区在线| 亚洲精品麻豆免费在线观看| 中文字幕午夜免费福利视频| 青青在线视频性感少妇和隔壁黑丝| 亚洲激情,偷拍视频| 免费在线观看污污视频网站| 日本韩国亚洲综合日韩欧美国产| 91国内视频在线观看| 一区二区麻豆传媒黄片| 888欧美视频在线| 日本性感美女视频网站| 亚洲欧美精品综合图片小说| 亚洲在线一区二区欧美| 亚洲精品一区二区三区老狼| 亚洲精品乱码久久久本| 最新的中文字幕 亚洲| 不卡日韩av在线观看| 亚洲成人av在线一区二区| 18禁污污污app下载| 夜夜嗨av蜜臀av| 污污小视频91在线观看| 99婷婷在线观看视频| 久草视频在线一区二区三区资源站| 久久精品国产23696| 成人免费做爰高潮视频| 少妇人妻真实精品视频| 精品少妇一二三视频在线| 欧美日本在线视频一区| 亚洲在线观看中文字幕av| 亚洲嫩模一区二区三区| 97瑟瑟超碰在线香蕉| 国产亚洲视频在线二区| 视频一区二区综合精品| 热久久只有这里有精品| 国产大学生援交正在播放| 玩弄人妻熟妇性色av少妇| 人妻少妇亚洲精品中文字幕| 国产精品久久久黄网站| 欧美在线精品一区二区三区视频| 动色av一区二区三区| 亚洲欧美综合另类13p| 久久人人做人人妻人人玩精品vr| 真实国模和老外性视频| 亚洲成人激情av在线| 十八禁在线观看地址免费| 国产又粗又猛又爽又黄的视频美国| 99国内精品永久免费视频| 扒开腿挺进肉嫩小18禁视频| 把腿张开让我插进去视频| 亚洲午夜高清在线观看| 欧美日韩国产一区二区三区三州| 青青草原色片网站在线观看| 一区二区三区视频,福利一区二区| 99热99这里精品6国产| 日本三极片中文字幕| 久久h视频在线观看| 欧美日韩国产一区二区三区三州| 亚洲美女美妇久久字幕组| free性日本少妇| 大屁股肉感人妻中文字幕在线| 天天日天天爽天天爽| 在线观看亚洲人成免费网址| 自拍偷拍 国产资源| 91精品视频在线观看免费| 亚洲青青操骚货在线视频| 欧洲亚洲欧美日韩综合| 一区二区三区四区中文| 和邻居少妇愉情中文字幕| 精品91自产拍在线观看一区| 日本裸体熟妇区二区欧美| 久久人人做人人妻人人玩精品vr| 香港一级特黄大片在线播放| 人妻久久久精品69系列| 天天操天天爽天天干| 日韩美女精品视频在线观看网站| 欧美特色aaa大片| 午夜精品一区二区三区更新| 黄片大全在线观看观看| 亚洲福利精品视频在线免费观看| 亚洲一区二区三区在线高清| 天天操天天干天天日狠狠插 | 亚洲欧美色一区二区| 国产日韩av一区二区在线| 欧美香蕉人妻精品一区二区| 欧美精产国品一二三区| 另类av十亚洲av| 女同性ⅹxx女同h偷拍| 中文字幕欧美日韩射射一| 揄拍成人国产精品免费看视频| 女人精品内射国产99| 亚洲熟女综合色一区二区三区四区| 鸡巴操逼一级黄色气| 亚洲天堂第一页中文字幕| 亚洲人妻30pwc| 大香蕉大香蕉大香蕉大香蕉大香蕉 | 在线不卡成人黄色精品| 欧美亚洲自偷自拍 在线| 少妇ww搡性bbb91| 成年人中文字幕在线观看| 男人插女人视频网站| 在线国产日韩欧美视频| 大屁股熟女一区二区三区| 日本a级视频老女人| 欧美特级特黄a大片免费| tube69日本少妇| 色哟哟在线网站入口| 亚洲国产美女一区二区三区软件 | 亚洲成人国产av在线| 青青青国产片免费观看视频| av完全免费在线观看av| 久久久久久久亚洲午夜综合福利| 大骚逼91抽插出水视频| 18禁污污污app下载| 亚洲av无乱一区二区三区性色| 丰满的继坶3中文在线观看| 中文字幕一区二区亚洲一区| 久久三久久三久久三久久| 亚洲av色图18p| 美女张开两腿让男人桶av| 青青擦在线视频国产在线| 午夜在线观看一区视频| 国产大鸡巴大鸡巴操小骚逼小骚逼| 欧美一级片免费在线成人观看| 精品黑人一区二区三区久久国产 | 国产美女精品福利在线| 99精品国产免费久久| 亚洲欧美国产麻豆综合| 成人av免费不卡在线观看| 五十路熟女人妻一区二区9933| 亚洲av无乱一区二区三区性色| 天天操,天天干,天天射| 最新日韩av传媒在线| 免费无码人妻日韩精品一区二区 | 国产高潮无码喷水AV片在线观看| 青青青青青免费视频| 亚洲国产在人线放午夜| 国产精品成人xxxx| 91麻豆精品久久久久| 超碰97人人做人人爱| 国产高清97在线观看视频| 馒头大胆亚洲一区二区| 成人av在线资源网站| 亚洲欧美成人综合在线观看| 国产乱子伦一二三区| 少妇系列一区二区三区视频| 午夜在线精品偷拍一区二| 激情人妻校园春色亚洲欧美| 成年人黄色片免费网站| 亚洲成人三级在线播放| 黑人进入丰满少妇视频| 久久机热/这里只有| 国产在线91观看免费观看| 中文字幕人妻熟女在线电影| 无码国产精品一区二区高潮久久4 日韩欧美一级精品在线观看 | 专门看国产熟妇的网站| 神马午夜在线观看视频| 国产精品大陆在线2019不卡| 性感美女高潮视频久久久| 超黄超污网站在线观看| 性感美女高潮视频久久久| gogo国模私拍视频| 国产不卡av在线免费| 亚洲 自拍 色综合图| 亚洲中文字字幕乱码| 午夜精品一区二区三区更新| 久久久久久久99精品| 99婷婷在线观看视频| 青青青aaaa免费| 在线制服丝袜中文字幕| 日韩影片一区二区三区不卡免费| 久久久久久97三级| 国产精品成久久久久三级蜜臀av| 亚洲一级美女啪啪啪| 中国无遮挡白丝袜二区精品| 亚洲国产精品中文字幕网站| 中文人妻AV久久人妻水| 香蕉av影视在线观看| 欧美aa一级一区三区四区| 老鸭窝在线观看一区| 欧美成一区二区三区四区| 11久久久久久久久久久| 最新97国产在线视频| 日韩美女搞黄视频免费| 白白操白白色在线免费视频| 中文字幕在线观看国产片| 夜夜嗨av一区二区三区中文字幕| 亚洲成a人片777777| 97超碰最新免费在线观看| 国产亚洲精品品视频在线| 北条麻妃av在线免费观看| 偷偷玩弄新婚人妻h视频| 91人妻精品久久久久久久网站| 成人蜜桃美臀九一一区二区三区| 五十路丰满人妻熟妇| 免费av岛国天堂网站| 欧美成人精品欧美一级黄色| 91成人在线观看免费视频| 日韩少妇人妻精品无码专区| 人妻熟女在线一区二区| 亚洲免费在线视频网站| 成年女人免费播放视频| 大白屁股精品视频国产| 欧美伊人久久大香线蕉综合| 国产精品日韩欧美一区二区| gogo国模私拍视频| 91国偷自产一区二区三区精品| 全国亚洲男人的天堂| 欧美日本国产自视大全| 绝色少妇高潮3在线观看| 最近的中文字幕在线mv视频| 夏目彩春在线中文字幕| 中文字幕亚洲久久久| 日本午夜爽爽爽爽爽视频在线观看| 熟女91pooyn熟女| 熟女视频一区,二区,三区| 超碰97免费人妻麻豆| 又色又爽又黄的美女裸体| 粉嫩av懂色av蜜臀av| 国产1区,2区,3区| 欧美日韩亚洲国产无线码| 久久久久久久精品成人热| 国产亚洲欧美视频网站| 成人av亚洲一区二区| 91av中文视频在线| 天天夜天天日天天日| 欧美精品免费aaaaaa| 四川乱子伦视频国产vip| 啪啪啪啪啪啪啪免费视频| 亚洲 欧美 自拍 偷拍 在线| 国产激情av网站在线观看| 国产成人无码精品久久久电影| 大骚逼91抽插出水视频| 久久久久久久亚洲午夜综合福利| 午夜国产福利在线观看| 欲乱人妻少妇在线视频裸| 沈阳熟妇28厘米大战黑人| 亚洲视频乱码在线观看| 日韩三级电影华丽的外出| 真实国产乱子伦一区二区| 日韩精品中文字幕福利| 日本少妇人妻xxxxx18| 91在线免费观看成人| 精品少妇一二三视频在线| 在线免费观看av日韩| 521精品视频在线观看| 亚洲精品福利网站图片| 91天堂天天日天天操| 日韩少妇人妻精品无码专区| 91国内精品久久久久精品一 | 93视频一区二区三区| 1000部国产精品成人观看视频| 动漫黑丝美女的鸡巴| 大肉大捧一进一出好爽在线视频| 东京热男人的av天堂| 99久久激情婷婷综合五月天| 伊人综合免费在线视频| 中文字幕在线免费第一页| 亚洲一区二区三区精品乱码| 久久免看30视频口爆视频| 亚洲一级 片内射视正片| 精品日产卡一卡二卡国色天香| 最新的中文字幕 亚洲| 欧美亚洲牲夜夜综合久久| 97色视频在线观看| 热思思国产99re| 中英文字幕av一区| 久草视频首页在线观看| 啪啪啪18禁一区二区三区 | 中文字幕一区二区三区蜜月| av中文字幕电影在线看| 最近中文字幕国产在线| 成人色综合中文字幕| 欲乱人妻少妇在线视频裸| 亚洲一区av中文字幕在线观看| 99久久激情婷婷综合五月天| 一区二区视频视频视频| 男人的网址你懂的亚洲欧洲av| 自拍偷拍日韩欧美一区二区| 五十路在线观看完整版| 国产精品久久久久久久精品视频 | 日本脱亚入欧是指什么| 2022国产综合在线干| 福利午夜视频在线观看| 91av精品视频在线| chinese国产盗摄一区二区| 亚洲人妻视频在线网| 久久久久久性虐视频| 天天操天天干天天插| 99热这里只有精品中文| 日本三极片视频网站观看| 中文字幕人妻三级在线观看| 色综合色综合色综合色| 伊人情人综合成人久久网小说| 真实国模和老外性视频| 亚洲一区二区人妻av| 中文字幕日韩精品日本| 午夜精品一区二区三区更新| free性日本少妇| 福利视频网久久91| 99精品视频在线观看婷婷| 日本成人一区二区不卡免费在线| 新婚人妻聚会被中出| 少妇露脸深喉口爆吞精| 欧美日韩亚洲国产无线码| 日本韩国亚洲综合日韩欧美国产 | 黄工厂精品视频在线观看| 国产精品人妻66p| 亚洲国产第一页在线观看| 伊人成人综合开心网| 亚洲欧美自拍另类图片| 国产精品中文av在线播放| 欧美性受xx黑人性猛交| 欧美另类重口味极品在线观看| 国产视频一区在线观看| 久久久久久久精品成人热| 干逼又爽又黄又免费的视频| 人妻3p真实偷拍一二区| 激情人妻校园春色亚洲欧美| 黄色大片男人操女人逼| 日本高清撒尿pissing| 黑人巨大的吊bdsm| 国产精品久久久久久久女人18| 不卡精品视频在线观看| 91中文字幕免费在线观看| 黄片三级三级三级在线观看| 一区二区三区四区视频| 88成人免费av网站| 精品人妻一二三区久久| 激情啪啪啪啪一区二区三区 | 欧美成人综合色在线噜噜| 99国内小视频在现欢看| 2021天天色天天干| 久久一区二区三区人妻欧美| 国产精品3p和黑人大战| 91片黄在线观看喷潮| 午夜频道成人在线91| 五月激情婷婷久久综合网| 538精品在线观看视频| 看一级特黄a大片日本片黑人| 99久久超碰人妻国产| 亚洲综合另类精品小说| 天堂资源网av中文字幕| 97资源人妻免费在线视频| 亚洲一区二区三区精品乱码| 18禁网站一区二区三区四区| 好男人视频在线免费观看网站| 国内精品在线播放第一页| 果冻传媒av一区二区三区| 国产精品入口麻豆啊啊啊| 这里有精品成人国产99| 做爰视频毛片下载蜜桃视频1| 亚洲综合一区成人在线| 大香蕉伊人国产在线| tube69日本少妇| 三级黄色亚洲成人av| 国内资源最丰富的网站| 在线观看视频一区麻豆| av俺也去在线播放| 香蕉aⅴ一区二区三区| 日本韩国免费一区二区三区视频| 男人的网址你懂的亚洲欧洲av| 中文字幕一区二区三区人妻大片 | 任你操视频免费在线观看| 揄拍成人国产精品免费看视频| 国产露脸对白在线观看| 91精品激情五月婷婷在线| nagger可以指黑人吗| 一色桃子久久精品亚洲| 日本午夜福利免费视频| 免费人成黄页网站在线观看国产 | 伊人综合aⅴ在线网| 国产亚洲欧美视频网站| 老熟妇xxxhd老熟女| 色狠狠av线不卡香蕉一区二区 | 亚洲公开视频在线观看| 天天操天天爽天天干| 国产九色91在线观看精品| 91社福利《在线观看| 偷青青国产精品青青在线观看| 久青青草视频手机在线免费观看| 欧美性受xx黑人性猛交| 熟女少妇激情五十路| 亚洲美女高潮喷浆视频| 国产成人综合一区2区| 大香蕉玖玖一区2区| 中国熟女一区二区性xx| 亚洲少妇人妻无码精品| 日韩欧美亚洲熟女人妻| 亚洲1区2区3区精华液| 在线制服丝袜中文字幕| 99热这里只有国产精品6| 亚洲av自拍天堂网| 在线视频自拍第三页| 国产精品久久久久久美女校花| 久草福利电影在线观看| 国产日韩av一区二区在线| 粉嫩av蜜乳av蜜臀| 一区二区三区另类在线| 天天操夜夜骑日日摸| 日本女人一级免费片| 大香蕉大香蕉在线看| 国产janese在线播放| 都市激情校园春色狠狠| 精品一区二区三四区| 在线成人日韩av电影| 成年人啪啪视频在线观看| 日本韩国免费福利精品| 精品视频国产在线观看| 青青青青青操视频在线观看| 操的小逼流水的文章| 一级A一级a爰片免费免会员 | 少妇系列一区二区三区视频| 亚洲国产欧美一区二区三区久久| 国产一级麻豆精品免费| 国产精选一区在线播放| 亚洲 欧美 精品 激情 偷拍 | 91精品国产91久久自产久强| 午夜精品福利一区二区三区p | 日韩剧情片电影在线收看| 噜噜色噜噜噜久色超碰| 午夜婷婷在线观看视频| 岛国黄色大片在线观看| 亚洲男人的天堂a在线| 精品一区二区三区欧美| 91九色porny国产蝌蚪视频| gogo国模私拍视频| 亚洲中文字幕校园春色| 久碰精品少妇中文字幕av| 91社福利《在线观看| 亚洲人人妻一区二区三区| 日韩欧美制服诱惑一区在线| 中文字幕 亚洲av| 丰满少妇人妻xxxxx| 欧美专区第八页一区在线播放| 亚洲精品在线资源站| av手机在线观播放网站| 又色又爽又黄又刺激av网站| 午夜国产免费福利av| 国产美女精品福利在线| 免费av岛国天堂网站| 2020久久躁狠狠躁夜夜躁| 国产刺激激情美女网站| 啊啊啊视频试看人妻| 中国熟女@视频91| 久久麻豆亚洲精品av| 国产精品久久久久久久精品视频| 国产精品久久久久国产三级试频| sejizz在线视频| 亚洲精品无码色午夜福利理论片| 视频 一区二区在线观看| 99精品免费久久久久久久久a| 成人av久久精品一区二区| 欧美色呦呦最新网址| 亚洲中文字字幕乱码| 男大肉棒猛烈插女免费视频 | 91精品国产观看免费| 2022国产精品视频| 亚洲国产第一页在线观看| 亚洲最大黄了色网站| 操操网操操伊剧情片中文字幕网| avjpm亚洲伊人久久| 欧美专区第八页一区在线播放| 搡老妇人老女人老熟女| 日韩美女综合中文字幕pp| 日韩av中文在线免费观看| av网站色偷偷婷婷网男人的天堂| 欧美天堂av无线av欧美| 成人av电影免费版| 97少妇精品在线观看| 日本一道二三区视频久久| 亚洲视频在线视频看视频在线| 国产精品国产三级国产午| jiujiure精品视频在线| 人妻熟女在线一区二区| 91国产资源在线视频| 98视频精品在线观看| 日本美女成人在线视频| 岛国一区二区三区视频在线| 久久久久只精品国产三级| 91精品国产高清自在线看香蕉网| 久久这里只有精品热视频| 国产成人一区二区三区电影网站| 888欧美视频在线| 亚洲一区二区三区精品视频在线| 五十路老熟女码av| 2017亚洲男人天堂| 色哟哟在线网站入口| 超碰97人人做人人爱| 中文字母永久播放1区2区3区| 免费岛国喷水视频在线观看 | 最新黄色av网站在线观看| 久久这里只有精品热视频| 东京干手机福利视频| 国产成人精品久久二区91| 9色精品视频在线观看| wwwxxx一级黄色片| 黄片三级三级三级在线观看| 伊人情人综合成人久久网小说| 女警官打开双腿沦为性奴| 国产女人露脸高潮对白视频| 1000小视频在线| 国产av福利网址大全| 91精品国产91久久自产久强| 五月色婷婷综合开心网4438| 在线观看的黄色免费网站| 亚国产成人精品久久久| 啊用力插好舒服视频| 综合国产成人在线观看| 91久久人澡人人添人人爽乱| 成人国产影院在线观看| 91久久精品色伊人6882| 婷婷久久一区二区字幕网址你懂得 | 国产男女视频在线播放| av中文字幕在线导航| 91极品新人『兔兔』精品新作| 男大肉棒猛烈插女免费视频| 久久精品美女免费视频| 91精品一区二区三区站长推荐| 日日夜夜大香蕉伊人| 都市激情校园春色狠狠| 欧美在线精品一区二区三区视频 | 国产视频网站国产视频| 久草电影免费在线观看| 亚洲成人情色电影在线观看| 大鸡巴操b视频在线| 538精品在线观看视频| 成人18禁网站在线播放| 最新91九色国产在线观看| 可以免费看的www视频你懂的| 国产在线自在拍91国语自产精品| 亚洲欧美激情中文字幕| 久久久精品国产亚洲AV一 | 91 亚洲视频在线观看| 综合一区二区三区蜜臀| 激情啪啪啪啪一区二区三区| 福利视频广场一区二区| 亚洲一区二区三区偷拍女厕91| 亚洲av无码成人精品区辽| 国产日本精品久久久久久久| 中文字幕在线免费第一页| av高潮迭起在线观看| 免费观看成年人视频在线观看| 人妻丝袜精品中文字幕| 成人精品在线观看视频| 免费一级黄色av网站| 亚洲少妇高潮免费观看| 日本人妻少妇18—xx| 免费观看污视频网站| 熟女视频一区,二区,三区| 中文人妻AV久久人妻水| 啪啪啪啪啪啪啪免费视频| 亚洲一级美女啪啪啪| 亚洲综合另类精品小说| 岛国一区二区三区视频在线| 国产+亚洲+欧美+另类| 女生被男生插的视频网站| av网址国产在线观看| 最新日韩av传媒在线| 午夜dv内射一区区| 超碰97人人做人人爱| 精品高跟鞋丝袜一区二区|