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

詳解iOS使用Keychain中的kSecClassGenericPassword存儲數(shù)據(jù)

 更新時間:2016年11月23日 16:02:55   作者:陳劍-月亮說話  
iOS設(shè)備中的Keychain是一個安全的存儲容器,本篇文章主要介紹了iOS使用Keychain中的kSecClassGenericPassword存儲數(shù)據(jù),有興趣的可以了解一下。

iOS設(shè)備中的Keychain是一個安全的存儲容器,可以用來為不同應(yīng)用保存敏感信息比如用戶名,密碼,網(wǎng)絡(luò)密碼,認(rèn)證令牌。蘋果自己用keychain來保存Wi-Fi網(wǎng)絡(luò)密碼,VPN憑證等等。它是一個sqlite數(shù)據(jù)庫,位于/private/var/Keychains/keychain-2.db,其保存的所有數(shù)據(jù)都是加密過的。模擬器下keychain文件路徑:~/Library/Application Support/iPhone Simulator/4.3/Library/Keychains

keychain里保存的信息不會因App被刪除而丟失,在用戶重新安裝App后依然有效,數(shù)據(jù)還在。

關(guān)于備份,只會備份數(shù)據(jù),到那時不會備份設(shè)備的密鑰,換句話說,即使拿到數(shù)據(jù),也沒有辦法解密里面的內(nèi)容。

比較復(fù)雜的數(shù)據(jù),使用蘋果官方發(fā)布的KeychainItemWrapper或者SFHFKeychainUtils會很方便。如果是比較簡單的,就不用蘋果提供的類了,自己寫個簡單的類來實(shí)現(xiàn)就好了。

兩種方法都需要在”Build Phases“中導(dǎo)入庫"Security.framework"

一、自己封裝的類

(1)實(shí)現(xiàn)代碼(思路是將數(shù)據(jù)封裝進(jìn)NSDictionary,通過NSKeyedArchiver歸檔后保存)

a)MyKeychain.h

// 
// MyKeychainh 
// UUIDdemo 
// 
// Created by 555chy on 6/10/ 
// Copyright © 2016 555chy All rights reserved 
// 
 
#import <Foundation/Foundationh> 
#import <Security/Securityh> 
 
@interface MyKeychain : NSObject 
 
+ (BOOL)save:(NSString*)service data:(id)data; 
+ (id)load:(NSString*)service; 
+ (void)delete:(NSString*)service; 
 
@end 
b)MyKeychainm
// 
// MyKeychainm 
// UUIDdemo 
// 
// Created by 555chy on 6/10/ 
// Copyright © 2016 555chy All rights reserved 
// 
 
#import "MyKeychainh" 
 
@implementation MyKeychain 
 
+ (NSMutableDictionary*) getKeychainQuery: (NSString*)service { 
  return [NSMutableDictionary dictionaryWithObjectsAndKeys: 
    (id)kSecClassGenericPassword, (id)kSecClass, 
    service, (id)kSecAttrService, 
    service, (id)kSecAttrAccount, 
    (id)kSecAttrAccessibleAfterFirstUnlock, (id)kSecAttrAccessible, 
   nil nil]; 
} 
 
+ (BOOL) save:(NSString*)service data:(id)data { 
  NSMutableDictionary *keychainQuery = [self getKeychainQuery:service]; 
  SecItemDelete((CFDictionaryRef)keychainQuery); 
  [keychainQuery setObject:[NSKeyedArchiver archivedDataWithRootObject:data] forKey:(id)kSecValueData]; 
  return SecItemAdd((CFDictionaryRef)keychainQuery, NULL) == noErr; 
} 
 
+ (id) load:(NSString*)service { 
  id ret = NULL; 
  NSMutableDictionary *keychainQuery = [self getKeychainQuery:service]; 
  [keychainQuery setObject:(id)kCFBooleanTrue forKey:(id)kSecReturnData]; 
  [keychainQuery setObject:(id)kSecMatchLimitOne forKey:(id)kSecMatchLimit]; 
  NSData *keyData = NULL; 
  if(SecItemCopyMatching((CFDictionaryRef)keychainQuery, (CFTypeRef*)(void*)&keyData) == noErr) { 
    @try { 
      ret = [NSKeyedUnarchiver unarchiveObjectWithData:keyData]; 
    } 
    @catch (NSException *exception) { 
      NSLog(@"Unarchive of %@ failed: %@", service, exception); 
    } 
    @finally { 
    } 
  } 
  return ret; 
} 
 
+ (void) delete:(NSString*)service { 
  NSMutableDictionary *keychainQuery = [self getKeychainQuery:service]; 
  SecItemDelete((CFDictionaryRef)keychainQuery); 
} 
 
@end 

c)ViewController.m

// 
// ViewControllerm 
// UUIDdemo 
// 
// Created by 555chy on 6/10/ 
// Copyright © 2016 555chy All rights reserved 
// 
 
#import "ViewControllerh" 
#import "MyKeychainh" 
 
@interface ViewController () 
 
@end 
 
@implementation ViewController 
 
NSString *KEY_PACKAGE_NAME = @"comchyuuiddemouuid"; 
NSString *KEY_UUID = @"uuid"; 
 
-(void) saveIdfv { 
  NSString *idfv = [[[UIDevice currentDevice] identifierForVendor] UUIDString]; 
  NSLog(@"get from UIDevice, idfv is %@", idfv); 
   
  NSMutableDictionary *dataDict = [NSMutableDictionary dictionary]; 
  [dataDict setObject:idfv forKey:KEY_UUID]; 
  BOOL ret = [MyKeychain save:KEY_PACKAGE_NAME data:dataDict]; 
  NSLog(@"save %@ %@", idfv, ret?@"succ":@"fail"); 
} 
 
-(void) reloadIdfv { 
  NSMutableDictionary *loadData = [MyKeychain load:KEY_PACKAGE_NAME]; 
  NSString *loadIdfv = [loadData objectForKey:KEY_UUID]; 
  if(loadIdfv) { 
    NSLog(@"load idfv is %@", loadIdfv); 
  } else { 
    NSLog(@"load idfv, but it not exist"); 
  } 
} 
 
- (void)viewDidLoad { 
  [super viewDidLoad]; 
  // Do any additional setup after loading the view, typically from a nib 
   
  [self reloadIdfv]; 
   
  [self saveIdfv]; 
   
  [self reloadIdfv]; 
 
  [MyKeychain delete:KEY_PACKAGE_NAME]; 
  NSLog(@"delete idfv from keychain"); 
   
  [self reloadIdfv]; 
   
  [self saveIdfv]; 
} 
 
- (void)didReceiveMemoryWarning { 
  [super didReceiveMemoryWarning]; 
  // Dispose of any resources that can be recreated 
} 
 
@end 

(2)運(yùn)行結(jié)果

第一次運(yùn)行

第二次運(yùn)行
在模擬器上每次運(yùn)行實(shí)際上都是卸載前一個APP,然后再安裝新的APP。而保存在keychain中的IDFV標(biāo)識符依然還在。

(3)基本語法

SecItemAdd 增
SecItemUpdate 改
SecItemDelete 刪
SecItemCopyMatching 查

(4)SecItem.h(變量的介紹基本都在頭文件中了,看下頭文件中的注釋就能明白其中的含義)

/* 
 * Copyright (c) 2006-2014 Apple Inc All Rights Reserved 
 * 
 * @APPLE_LICENSE_HEADER_START@ 
 * 
 * This file contains Original Code and/or Modifications of Original Code 
 * as defined in and that are subject to the Apple Public Source License 
 * Version 0 (the 'License') You may not use this file except in 
 * compliance with the License Please obtain a copy of the License at 
 * http://wwwopensourceapplecom/apsl/ and read it before using this 
 * file 
 * 
 * The Original Code and all software distributed under the License are 
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT 
 * Please see the License for the specific language governing rights and 
 * limitations under the License 
 * 
 * @APPLE_LICENSE_HEADER_END@ 
 */ 
 
/*! 
  @header SecItem 
  SecItem defines CoreFoundation-based constants and functions for 
  access to Security items (certificates, keys, identities, and 
  passwords) 
*/ 
 
#ifndef _SECURITY_SECITEM_H_ 
#define _SECURITY_SECITEM_H_ 
 
#include <Security/SecBaseh> 
#include <CoreFoundation/CFArrayh> 
#include <CoreFoundation/CFDictionaryh> 
 
__BEGIN_DECLS 
 
CF_ASSUME_NONNULL_BEGIN 
CF_IMPLICIT_BRIDGING_ENABLED 
 
/*! 
  @enum Class Key Constant 
  @discussion Predefined key constant used to get or set item class values in 
    a dictionary Its value is one of the constants defined in the Value 
    Constants for kSecClass 
  @constant kSecClass Specifies a dictionary key whose value is the item's 
    class code You use this key to get or set a value of type CFTypeRef 
    that contains the item class code 
*/ 
extern const CFStringRef kSecClass 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @enum Class Value Constants 
  @discussion Predefined item class constants used to get or set values in 
    a dictionary The kSecClass constant is the key and its value is one 
    of the constants defined here 
  @constant kSecClassGenericPassword Specifies generic password items 
  @constant kSecClassInternetPassword Specifies Internet password items 
  @constant kSecClassCertificate Specifies certificate items 
  @constant kSecClassKey Specifies key items 
  @constant kSecClassIdentity Specifies identity items 
*/ 
extern const CFStringRef kSecClassGenericPassword 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecClassInternetPassword 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecClassCertificate 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecClassKey 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecClassIdentity 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
 
 
/*! 
  @enum Attribute Key Constants 
  @discussion Predefined item attribute keys used to get or set values in a 
    dictionary Not all attributes apply to each item class The table 
    below lists the currently defined attributes for each item class: 
 
  kSecClassGenericPassword item attributes: 
    kSecAttrAccessible 
    kSecAttrAccessControl 
    kSecAttrAccessGroup 
    kSecAttrCreationDate 
    kSecAttrModificationDate 
    kSecAttrDescription 
    kSecAttrComment 
    kSecAttrCreator 
    kSecAttrType 
    kSecAttrLabel 
    kSecAttrIsInvisible 
    kSecAttrIsNegative 
    kSecAttrAccount 
    kSecAttrService 
    kSecAttrGeneric 
    kSecAttrSynchronizable 
 
  kSecClassInternetPassword item attributes: 
    kSecAttrAccessible 
    kSecAttrAccessControl 
    kSecAttrAccessGroup 
    kSecAttrCreationDate 
    kSecAttrModificationDate 
    kSecAttrDescription 
    kSecAttrComment 
    kSecAttrCreator 
    kSecAttrType 
    kSecAttrLabel 
    kSecAttrIsInvisible 
    kSecAttrIsNegative 
    kSecAttrAccount 
    kSecAttrSecurityDomain 
    kSecAttrServer 
    kSecAttrProtocol 
    kSecAttrAuthenticationType 
    kSecAttrPort 
    kSecAttrPath 
    kSecAttrSynchronizable 
 
  kSecClassCertificate item attributes: 
    kSecAttrAccessible 
    kSecAttrAccessControl 
    kSecAttrAccessGroup 
    kSecAttrCertificateType 
    kSecAttrCertificateEncoding 
    kSecAttrLabel 
    kSecAttrSubject 
    kSecAttrIssuer 
    kSecAttrSerialNumber 
    kSecAttrSubjectKeyID 
    kSecAttrPublicKeyHash 
    kSecAttrSynchronizable 
 
  kSecClassKey item attributes: 
    kSecAttrAccessible 
    kSecAttrAccessControl 
    kSecAttrAccessGroup 
    kSecAttrKeyClass 
    kSecAttrLabel 
    kSecAttrApplicationLabel 
    kSecAttrIsPermanent 
    kSecAttrApplicationTag 
    kSecAttrKeyType 
    kSecAttrKeySizeInBits 
    kSecAttrEffectiveKeySize 
    kSecAttrCanEncrypt 
    kSecAttrCanDecrypt 
    kSecAttrCanDerive 
    kSecAttrCanSign 
    kSecAttrCanVerify 
    kSecAttrCanWrap 
    kSecAttrCanUnwrap 
    kSecAttrSynchronizable 
 
  kSecClassIdentity item attributes: 
    Since an identity is the combination of a private key and a 
    certificate, this class shares attributes of both kSecClassKey and 
    kSecClassCertificate 
 
   @constant kSecAttrAccessible Specifies a dictionary key whose value 
   indicates when your application needs access to an item's data You 
   should choose the most restrictive option that meets your application's 
   needs to allow the system to protect that item in the best way possible 
   See the "kSecAttrAccessible Value Constants" section for a list of 
   values which can be specified 
   IMPORTANT: This attribute is currently not supported for OS X keychain 
   items, unless the kSecAttrSynchronizable attribute is also present If 
   both attributes are specified on either OS X or iOS, the value for the 
   kSecAttrAccessible key may only be one whose name does not end with 
   "ThisDeviceOnly", as those cannot sync to another device 
 
   @constant kSecAttrAccessControl Specifies a dictionary key whose value 
   is SecAccessControl instance which contains access control conditions 
   for item 
 
   @constant kSecAttrAccessGroup Specifies a dictionary key whose value is 
   a CFStringRef indicating which access group a item is in The access 
   groups that a particular application has membership in are determined by 
   two entitlements for that application The application-identifier 
   entitlement contains the application's single access group, unless 
   there is a keychain-access-groups entitlement present The latter 
   has as its value a list of access groups; the first item in this list 
   is the default access group Unless a specific access group is provided 
   as the value of kSecAttrAccessGroup when SecItemAdd is called, new items 
   are created in the application's default access group Specifying this 
   attribute in SecItemCopyMatching, SecItemUpdate, or SecItemDelete calls 
   limits the search to the specified access group (of which the calling 
   application must be a member to obtain matching results) To share 
   keychain items between multiple applications, each application must have 
   a common group listed in its keychain-access-groups entitlement, and each 
   must specify this shared access group name as the value for the 
   kSecAttrAccessGroup key in the dictionary passed to SecItem functions 
 
   @constant kSecAttrSynchronizable Specifies a dictionary key whose value is 
   a CFBooleanRef indicating whether the item in question can be synchronized 
   To add a new item which can be synced to other devices, or to obtain 
   synchronizable results from a query, supply this key with a value of 
   kCFBooleanTrue If the key is not supplied, or has a value of 
   kCFBooleanFalse, then no synchronizable items will be added or returned 
   A predefined value, kSecAttrSynchronizableAny, may be provided instead of 
   kCFBooleanTrue if both synchronizable and non-synchronizable results are 
   desired 
 
   IMPORTANT: Specifying the kSecAttrSynchronizable key has several caveats: 
 
     - Updating or deleting items using the kSecAttrSynchronizable key will 
      affect all copies of the item, not just the one on your local device 
      Be sure that it makes sense to use the same password on all devices 
      before deciding to make a password synchronizable 
     - Only password items can currently be synchronized Keychain syncing 
      is not supported for certificates or cryptographic keys 
     - Items stored or obtained using the kSecAttrSynchronizable key cannot 
      specify SecAccessRef-based access control with kSecAttrAccess If a 
      password is intended to be shared between multiple applications, the 
      kSecAttrAccessGroup key must be specified, and each application 
      using this password must have a 'keychain-access-groups' entitlement 
      with the specified access group value 
     - Items stored or obtained using the kSecAttrSynchronizable key may 
      not also specify a kSecAttrAccessible value which is incompatible 
      with syncing (namely, those whose names end with "ThisDeviceOnly") 
     - Items stored or obtained using the kSecAttrSynchronizable key cannot 
      be specified by reference You must pass kSecReturnAttributes and/or 
      kSecReturnData to retrieve results; kSecReturnRef is currently not 
      supported for synchronizable items 
     - Persistent references to synchronizable items should be avoided; 
      while they may work locally, they cannot be moved between devices, 
      and may not resolve if the item is modified on some other device 
     - When specifying a query that uses the kSecAttrSynchronizable key, 
      search keys are limited to the item's class and attributes 
      The only search constant which may be used is kSecMatchLimit; other 
      constants using the kSecMatch prefix are not supported at this time 
 
  @constant kSecAttrCreationDate (read-only) Specifies a dictionary key whose 
    value is the item's creation date You use this key to get a value 
    of type CFDateRef that represents the date the item was created 
  @constant kSecAttrModificationDate (read-only) Specifies a dictionary key 
    whose value is the item's modification date You use this key to get 
    a value of type CFDateRef that represents the last time the item was 
    updated 
  @constant kSecAttrDescription Specifies a dictionary key whose value is 
    the item's description attribute You use this key to set or get a 
    value of type CFStringRef that represents a user-visible string 
    describing this particular kind of item (eg, "disk image password") 
  @constant kSecAttrComment Specifies a dictionary key whose value is the 
    item's comment attribute You use this key to set or get a value of 
    type CFStringRef containing the user-editable comment for this item 
  @constant kSecAttrCreator Specifies a dictionary key whose value is the 
    item's creator attribute You use this key to set or get a value of 
    type CFNumberRef that represents the item's creator This number is 
    the unsigned integer representation of a four-character code (eg, 
    'aCrt') 
  @constant kSecAttrType Specifies a dictionary key whose value is the item's 
    type attribute You use this key to set or get a value of type 
    CFNumberRef that represents the item's type This number is the 
    unsigned integer representation of a four-character code (eg, 
    'aTyp') 
  @constant kSecAttrLabel Specifies a dictionary key whose value is the 
    item's label attribute You use this key to set or get a value of 
    type CFStringRef containing the user-visible label for this item 
  @constant kSecAttrIsInvisible Specifies a dictionary key whose value is the 
    item's invisible attribute You use this key to set or get a value 
    of type CFBooleanRef that indicates whether the item is invisible 
    (ie, should not be displayed) 
  @constant kSecAttrIsNegative Specifies a dictionary key whose value is the 
    item's negative attribute You use this key to set or get a value of 
    type CFBooleanRef that indicates whether there is a valid password 
    associated with this keychain item This is useful if your application 
    doesn't want a password for some particular service to be stored in 
    the keychain, but prefers that it always be entered by the user 
  @constant kSecAttrAccount Specifies a dictionary key whose value is the 
    item's account attribute You use this key to set or get a CFStringRef 
    that contains an account name (Items of class 
    kSecClassGenericPassword, kSecClassInternetPassword have this 
    attribute) 
  @constant kSecAttrService Specifies a dictionary key whose value is the 
    item's service attribute You use this key to set or get a CFStringRef 
    that represents the service associated with this item (Items of class 
    kSecClassGenericPassword have this attribute) 
  @constant kSecAttrGeneric Specifies a dictionary key whose value is the 
    item's generic attribute You use this key to set or get a value of 
    CFDataRef that contains a user-defined attribute (Items of class 
    kSecClassGenericPassword have this attribute) 
  @constant kSecAttrSecurityDomain Specifies a dictionary key whose value 
    is the item's security domain attribute You use this key to set or 
    get a CFStringRef value that represents the Internet security domain 
    (Items of class kSecClassInternetPassword have this attribute) 
  @constant kSecAttrServer Specifies a dictionary key whose value is the 
    item's server attribute You use this key to set or get a value of 
    type CFStringRef that contains the server's domain name or IP address 
    (Items of class kSecClassInternetPassword have this attribute) 
  @constant kSecAttrProtocol Specifies a dictionary key whose value is the 
    item's protocol attribute You use this key to set or get a value of 
    type CFNumberRef that denotes the protocol for this item (see the 
    SecProtocolType enum in SecKeychainItemh) (Items of class 
    kSecClassInternetPassword have this attribute) 
  @constant kSecAttrAuthenticationType Specifies a dictionary key whose value 
    is the item's authentication type attribute You use this key to set 
    or get a value of type CFNumberRef that denotes the authentication 
    scheme for this item (see the kSecAttrAuthenticationType value 
    constants below) 
  @constant kSecAttrPort Specifies a dictionary key whose value is the item's 
    port attribute You use this key to set or get a CFNumberRef value 
    that represents an Internet port number (Items of class 
    kSecClassInternetPassword have this attribute) 
  @constant kSecAttrPath Specifies a dictionary key whose value is the item's 
    path attribute, typically this is the path component of the URL You use 
    this key to set or get a CFStringRef value that represents a path (Items 
    of class kSecClassInternetPassword have this attribute) 
  @constant kSecAttrSubject (read-only) Specifies a dictionary key whose 
    value is the item's subject You use this key to get a value of type 
    CFDataRef that contains the X500 subject name of a certificate 
    (Items of class kSecClassCertificate have this attribute) 
  @constant kSecAttrIssuer (read-only) Specifies a dictionary key whose value 
    is the item's issuer You use this key to get a value of type 
    CFDataRef that contains the X500 issuer name of a certificate (Items 
    of class kSecClassCertificate have this attribute) 
  @constant kSecAttrSerialNumber (read-only) Specifies a dictionary key whose 
    value is the item's serial number You use this key to get a value 
    of type CFDataRef that contains the serial number data of a 
    certificate (Items of class kSecClassCertificate have this 
    attribute) 
  @constant kSecAttrSubjectKeyID (read-only) Specifies a dictionary key whose 
    value is the item's subject key ID You use this key to get a value 
    of type CFDataRef that contains the subject key ID of a certificate 
    (Items of class kSecClassCertificate have this attribute) 
  @constant kSecAttrPublicKeyHash (read-only) Specifies a dictionary key 
    whose value is the item's public key hash You use this key to get a 
    value of type CFDataRef that contains the hash of a certificate's 
    public key (Items of class kSecClassCertificate have this attribute) 
  @constant kSecAttrCertificateType (read-only) Specifies a dictionary key 
    whose value is the item's certificate type You use this key to get 
    a value of type CFNumberRef that denotes the certificate type 
    (Currently only the value of this attribute must be equal to the 
    version of the X509 certificate So 1 for v1 2 for v2 and 3 for v3 
    certificates) Only items of class kSecClassCertificate have this 
    attribute 
  @constant kSecAttrCertificateEncoding (read-only) Specifies a dictionary 
    key whose value is the item's certificate encoding You use this key 
    to get a value of type CFNumberRef that denotes the certificate 
    encoding (Currently only the value 3 meaning 
    kSecAttrCertificateEncodingDER is supported) Only items of class 
    kSecClassCertificate have this attribute 
  @constant kSecAttrKeyClass (read only) Specifies a dictionary key whose 
    value is one of kSecAttrKeyClassPublic, kSecAttrKeyClassPrivate or 
    kSecAttrKeyClassSymmetric 
  @constant kSecAttrApplicationLabel Specifies a dictionary key whose value 
    is the key's application label attribute This is different from the 
    kSecAttrLabel (which is intended to be human-readable) This attribute 
    is used to look up a key programmatically; in particular, for keys of 
    class kSecAttrKeyClassPublic and kSecAttrKeyClassPrivate, the value of 
    this attribute is the hash of the public key 
  @constant kSecAttrIsPermanent Specifies a dictionary key whose value is a 
    CFBooleanRef indicating whether the key in question will be stored 
    permanently 
  @constant kSecAttrApplicationTag Specifies a dictionary key whose value is a 
    CFDataRef containing private tag data 
  @constant kSecAttrKeyType Specifies a dictionary key whose value is a 
    CFNumberRef indicating the algorithm associated with this key 
    (Currently only the value 42 is supported, alternatively you can use 
    kSecAttrKeyTypeRSA) 
  @constant kSecAttrKeySizeInBits Specifies a dictionary key whose value 
    is a CFNumberRef indicating the number of bits in this key 
  @constant kSecAttrEffectiveKeySize Specifies a dictionary key whose value 
    is a CFNumberRef indicating the effective number of bits in this key 
    For example, a DES key has a kSecAttrKeySizeInBits of 64, but a 
    kSecAttrEffectiveKeySize of 56 bits 
  @constant kSecAttrCanEncrypt Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    encrypt data 
  @constant kSecAttrCanDecrypt Specifies a dictionary key whose value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    decrypt data 
  @constant kSecAttrCanDerive Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    derive another key 
  @constant kSecAttrCanSign Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    create a digital signature 
  @constant kSecAttrCanVerify Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    verify a digital signature 
  @constant kSecAttrCanWrap Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    wrap another key 
  @constant kSecAttrCanUnwrap Specifies a dictionary key whole value is a 
    CFBooleanRef indicating whether the key in question can be used to 
    unwrap another key 
  @constant kSecAttrSyncViewHint Specifies a dictionary key whose value is 
  a CFStringRef This value is part of the primary key of each item, and 
  can be used to help distiguish Sync Views when defining their 
  queries 
  @constant kSecAttrTokenID Specifies a dictionary key whose presence 
  indicates that item is backed by external token Value of this attribute 
  is CFStringRef uniquely identifying containing token When this attribute 
  is not present, item is stored in internal keychain database 
  Note that once item is created, this attribute cannot be changed - in other 
  words it is not possible to migrate existing items to, from or between tokens 
  Currently the only available value for this attribute is 
  kSecAttrTokenIDSecureEnclave, which indicates that item (private key) is 
  backed by device's Secure Enclave 
 */ 
extern const CFStringRef kSecAttrAccessible 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessControl 
  __OSX_AVAILABLE_STARTING(__MAC_10_10, __IPHONE_8_0); 
extern const CFStringRef kSecAttrAccessGroup 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_3_0); 
extern const CFStringRef kSecAttrSynchronizable 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0); 
extern const CFStringRef kSecAttrCreationDate 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrModificationDate 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrDescription 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrComment 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCreator 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrType 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrLabel 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrIsInvisible 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrIsNegative 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAccount 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrService 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrGeneric 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrSecurityDomain 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrServer 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocol 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationType 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrPort 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrPath 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrSubject 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrIssuer 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrSerialNumber 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrSubjectKeyID 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrPublicKeyHash 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCertificateType 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCertificateEncoding 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeyClass 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrApplicationLabel 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrIsPermanent 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrApplicationTag 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeyType 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeySizeInBits 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrEffectiveKeySize 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanEncrypt 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanDecrypt 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanDerive 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanSign 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanVerify 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanWrap 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrCanUnwrap 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrSyncViewHint 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
extern const CFStringRef kSecAttrTokenID 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
 
/*! 
  @enum kSecAttrAccessible Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrAccessible constant is the key and its 
    value is one of the constants defined here 
    When asking SecItemCopyMatching to return the item's data, the error 
    errSecInteractionNotAllowed will be returned if the item's data is not 
    available until a device unlock occurs 
  @constant kSecAttrAccessibleWhenUnlocked Item data can only be accessed 
    while the device is unlocked This is recommended for items that only 
    need be accesible while the application is in the foreground Items 
    with this attribute will migrate to a new device when using encrypted 
    backups 
  @constant kSecAttrAccessibleAfterFirstUnlock Item data can only be 
    accessed once the device has been unlocked after a restart This is 
    recommended for items that need to be accesible by background 
    applications Items with this attribute will migrate to a new device 
    when using encrypted backups 
  @constant kSecAttrAccessibleAlways Item data can always be accessed 
    regardless of the lock state of the device This is not recommended 
    for anything except system use Items with this attribute will migrate 
    to a new device when using encrypted backups 
  @constant kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly Item data can 
     only be accessed while the device is unlocked This class is only 
     available if a passcode is set on the device This is recommended for 
     items that only need to be accessible while the application is in the 
     foreground Items with this attribute will never migrate to a new 
     device, so after a backup is restored to a new device, these items 
     will be missing No items can be stored in this class on devices 
     without a passcode Disabling the device passcode will cause all 
     items in this class to be deleted 
  @constant kSecAttrAccessibleWhenUnlockedThisDeviceOnly Item data can only 
    be accessed while the device is unlocked This is recommended for items 
    that only need be accesible while the application is in the foreground 
    Items with this attribute will never migrate to a new device, so after 
    a backup is restored to a new device, these items will be missing 
  @constant kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly Item data can 
    only be accessed once the device has been unlocked after a restart 
    This is recommended for items that need to be accessible by background 
    applications Items with this attribute will never migrate to a new 
    device, so after a backup is restored to a new device these items will 
    be missing 
  @constant kSecAttrAccessibleAlwaysThisDeviceOnly Item data can always 
    be accessed regardless of the lock state of the device This option 
    is not recommended for anything except system use Items with this 
    attribute will never migrate to a new device, so after a backup is 
    restored to a new device, these items will be missing 
*/ 
extern const CFStringRef kSecAttrAccessibleWhenUnlocked 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessibleAfterFirstUnlock 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessibleAlways 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly 
  __OSX_AVAILABLE_STARTING(__MAC_10_10, __IPHONE_8_0); 
extern const CFStringRef kSecAttrAccessibleWhenUnlockedThisDeviceOnly 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
extern const CFStringRef kSecAttrAccessibleAlwaysThisDeviceOnly 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
 
/*! 
  @enum kSecAttrProtocol Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrProtocol constant is the key and its 
    value is one of the constants defined here 
  @constant kSecAttrProtocolFTP 
  @constant kSecAttrProtocolFTPAccount 
  @constant kSecAttrProtocolHTTP 
  @constant kSecAttrProtocolIRC 
  @constant kSecAttrProtocolNNTP 
  @constant kSecAttrProtocolPOP 
  @constant kSecAttrProtocolSMTP 
  @constant kSecAttrProtocolSOCKS 
  @constant kSecAttrProtocolIMAP 
  @constant kSecAttrProtocolLDAP 
  @constant kSecAttrProtocolAppleTalk 
  @constant kSecAttrProtocolAFP 
  @constant kSecAttrProtocolTelnet 
  @constant kSecAttrProtocolSSH 
  @constant kSecAttrProtocolFTPS 
  @constant kSecAttrProtocolHTTPS 
  @constant kSecAttrProtocolHTTPProxy 
  @constant kSecAttrProtocolHTTPSProxy 
  @constant kSecAttrProtocolFTPProxy 
  @constant kSecAttrProtocolSMB 
  @constant kSecAttrProtocolRTSP 
  @constant kSecAttrProtocolRTSPProxy 
  @constant kSecAttrProtocolDAAP 
  @constant kSecAttrProtocolEPPC 
  @constant kSecAttrProtocolIPP 
  @constant kSecAttrProtocolNNTPS 
  @constant kSecAttrProtocolLDAPS 
  @constant kSecAttrProtocolTelnetS 
  @constant kSecAttrProtocolIMAPS 
  @constant kSecAttrProtocolIRCS 
  @constant kSecAttrProtocolPOP3S 
*/ 
extern const CFStringRef kSecAttrProtocolFTP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolFTPAccount 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolHTTP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolIRC 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolNNTP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolPOP3 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolSMTP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolSOCKS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolIMAP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolLDAP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolAppleTalk 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolAFP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolTelnet 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolSSH 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolFTPS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolHTTPS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolHTTPProxy 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolHTTPSProxy 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolFTPProxy 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolSMB 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolRTSP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolRTSPProxy 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolDAAP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolEPPC 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolIPP 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolNNTPS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolLDAPS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolTelnetS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolIMAPS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolIRCS 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrProtocolPOP3S 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @enum kSecAttrAuthenticationType Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrAuthenticationType constant is the key 
    and its value is one of the constants defined here 
  @constant kSecAttrAuthenticationTypeNTLM 
  @constant kSecAttrAuthenticationTypeMSN 
  @constant kSecAttrAuthenticationTypeDPA 
  @constant kSecAttrAuthenticationTypeRPA 
  @constant kSecAttrAuthenticationTypeHTTPBasic 
  @constant kSecAttrAuthenticationTypeHTTPDigest 
  @constant kSecAttrAuthenticationTypeHTMLForm 
  @constant kSecAttrAuthenticationTypeDefault 
*/ 
extern const CFStringRef kSecAttrAuthenticationTypeNTLM 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeMSN 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeDPA 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeRPA 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeHTTPBasic 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeHTTPDigest 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeHTMLForm 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecAttrAuthenticationTypeDefault 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @enum kSecAttrKeyClass Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrKeyClass constant is the key 
    and its value is one of the constants defined here 
  @constant kSecAttrKeyClassPublic 
  @constant kSecAttrKeyClassPrivate 
  @constant kSecAttrKeyClassSymmetric 
*/ 
extern const CFStringRef kSecAttrKeyClassPublic 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeyClassPrivate 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeyClassSymmetric 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
 
/*! 
  @enum kSecAttrKeyType Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrKeyType constant is the key 
    and its value is one of the constants defined here 
  @constant kSecAttrKeyTypeRSA 
  @constant kSecAttrKeyTypeEC 
*/ 
extern const CFStringRef kSecAttrKeyTypeRSA 
  __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_2_0); 
extern const CFStringRef kSecAttrKeyTypeEC 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_4_0); 
 
/*! 
  @enum kSecAttrSynchronizable Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecAttrSynchronizable constant is the key 
    and its value is one of the constants defined here 
  @constant kSecAttrSynchronizableAny Specifies that both synchronizable and 
    non-synchronizable results should be returned from this query This may 
    be used as a value for the kSecAttrSynchronizable dictionary key in a 
    call to SecItemCopyMatching, SecItemUpdate, or SecItemDelete 
*/ 
extern const CFStringRef kSecAttrSynchronizableAny 
  __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0); 
 
/*! 
  @enum Search Constants 
  @discussion Predefined search constants used to set values in a query 
    dictionary You can specify a combination of search attributes and 
    item attributes when looking for matching items with the 
    SecItemCopyMatching function 
  @constant kSecMatchPolicy Specifies a dictionary key whose value is a 
    SecPolicyRef If provided, returned certificates or identities must 
    verify with this policy 
  @constant kSecMatchIssuers Specifies a dictionary key whose value is a 
    CFArray of X500 names (of type CFDataRef) If provided, returned 
    certificates or identities will be limited to those whose 
    certificate chain contains one of the issuers provided in this list 
  @constant kSecMatchEmailAddressIfPresent Specifies a dictionary key whose 
    value is a CFStringRef containing an RFC822 email address If 
    provided, returned certificates or identities will be limited to those 
    that contain the address, or do not contain any email address 
  @constant kSecMatchSubjectContains Specifies a dictionary key whose value 
    is a CFStringRef If provided, returned certificates or identities 
    will be limited to those containing this string in the subject 
  @constant kSecMatchCaseInsensitive Specifies a dictionary key whose value 
    is a CFBooleanRef If this value is kCFBooleanFalse, or is not 
    provided, then case-sensitive string matching is performed 
  @constant kSecMatchTrustedOnly Specifies a dictionary key whose value is 
    a CFBooleanRef If provided with a value of kCFBooleanTrue, only 
    certificates which can be verified back to a trusted anchor will be 
    returned If this value is kCFBooleanFalse, or is not provided, then 
    both trusted and untrusted certificates may be returned 
  @constant kSecMatchValidOnDate Specifies a dictionary key whose value is 
    of type CFDateRef If provided, returned keys, certificates or 
    identities will be limited to those which are valid for the given date 
    Pass a value of kCFNull to indicate the current date 
  @constant kSecMatchLimit Specifies a dictionary key whose value is a 
    CFNumberRef If provided, this value specifies the maximum number of 
    results to return If not provided, results are limited to the first 
    item found Predefined values are provided for a single item 
    (kSecMatchLimitOne) and all matching items (kSecMatchLimitAll) 
  @constant kSecMatchLimitOne Specifies that results are limited to the first 
    item found; used as a value for the kSecMatchLimit dictionary key 
  @constant kSecMatchLimitAll Specifies that an unlimited number of results 
    may be returned; used as a value for the kSecMatchLimit dictionary 
    key 
*/ 
extern const CFStringRef kSecMatchPolicy 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchItemList 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchSearchList 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchIssuers 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchEmailAddressIfPresent 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchSubjectContains 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchCaseInsensitive 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchTrustedOnly 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchValidOnDate 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchLimit 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchLimitOne 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecMatchLimitAll 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
 
/*! 
  @enum Return Type Key Constants 
  @discussion Predefined return type keys used to set values in a dictionary 
    You use these keys to specify the type of results which should be 
    returned by the SecItemCopyMatching or SecItemAdd function You can 
    specify zero or more of these return types If more than one of these 
    result types is specified, the result is returned as a CFDictionaryRef 
    whose keys are the result types and values are the requested data 
  @constant kSecReturnData Specifies a dictionary key whose value is of type 
    CFBooleanRef A value of kCFBooleanTrue indicates that the data of 
    an item (CFDataRef) should be returned For keys and password 
    items, data is secret (encrypted) and may require the user to enter 
    a password for access 
  @constant kSecReturnAttributes Specifies a dictionary key whose value is 
    of type CFBooleanRef A value of kCFBooleanTrue indicates that the 
    (non-encrypted) attributes of an item (CFDictionaryRef) should be 
    returned 
  @constant kSecReturnRef Specifies a dictionary key whose value is a 
    CFBooleanRef A value of kCFBooleanTrue indicates that a reference 
    should be returned Depending on the item class requested, the 
    returned reference(s) may be of type SecKeychainItemRef, SecKeyRef, 
    SecCertificateRef, or SecIdentityRef 
  @constant kSecReturnPersistentRef Specifies a dictionary key whose value 
    is of type CFBooleanRef A value of kCFBooleanTrue indicates that a 
    persistent reference to an item (CFDataRef) should be returned 
*/ 
extern const CFStringRef kSecReturnData 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecReturnAttributes 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecReturnRef 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecReturnPersistentRef 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
 
/*! 
  @enum Value Type Key Constants 
  @discussion Predefined value type keys used to pass values in a dictionary 
    You can specify zero or more of these types depending on the function 
    you are calling For SecItemCopyMatching or SecItemAdd these are 
    used as keys in the results dictionary 
  @constant kSecValueData Specifies a dictionary key whose value is of type 
    CFDataRef For keys and password items, data is secret (encrypted) 
    and may require the user to enter a password for access 
  @constant kSecValueRef Specifies a dictionary key whose value, depending 
    on the item class requested, is of type SecKeychainItemRef, SecKeyRef, 
    SecCertificateRef, or SecIdentityRef 
  @constant kSecValuePersistentRef Specifies a dictionary key whose value 
    is of type CFDataRef The bytes in this CFDataRef can be stored by 
    the caller and used on a subsequent invocation of the application (or 
    even a different application) to retrieve the item referenced by it 
*/ 
extern const CFStringRef kSecValueData 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecValueRef 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecValuePersistentRef 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
 
/*! 
  @enum Other Constants 
  @discussion Predefined constants used to set values in a dictionary 
  @constant kSecUseItemList Specifies a dictionary key whose value is a 
    CFArray of items If provided, this array is treated as the set of 
    all possible items to search, or add if the API being called is 
    SecItemAdd The items in this array may be of type SecKeyRef, 
    SecCertificateRef, SecIdentityRef, or CFDataRef (for a persistent 
    item reference) The items in the array must all be of the same 
    type When this attribute is provided, no keychains are searched 
  @constant kSecUseOperationPrompt Specifies a dictionary key whose value 
    is a CFStringRef that represents a user-visible string describing 
    the operation for which the application is attempting to authenticate 
    The application is responsible for the text localization 
  @constant kSecUseNoAuthenticationUI Specifies a dictionary key whose value 
    is a CFBooleanRef If provided with a value of kCFBooleanTrue, the error 
    errSecInteractionNotAllowed will be returned if the item is attempting 
    to authenticate with UI 
  @constant kSecUseAuthenticationUI Specifies a dictionary key whose value 
    is one of kSecUseAuthenticationUIAllow, kSecUseAuthenticationUIFail, kSecUseAuthenticationUISkip 
  @constant kSecUseAuthenticationContext Specifies a dictionary key whose value 
    is LAContext to be used for keychain item authentication 
    * If the item requires authentication and this key is omitted, a new context 
     will be created just for the purpose of the single call 
    * If the specified context has been previously authenticated, the operation 
     will succeed without asking user for authentication 
    * If the specified context has not been previously authenticated, the new 
     authentication will be started on this context, allowing caller to 
     eventually reuse the sucessfully authenticated context in subsequent 
     keychain operations 
*/ 
extern const CFStringRef kSecUseItemList 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
extern const CFStringRef kSecUseOperationPrompt 
  __OSX_AVAILABLE_STARTING(__MAC_10_10, __IPHONE_8_0); 
extern const CFStringRef kSecUseNoAuthenticationUI 
  __OSX_AVAILABLE_BUT_DEPRECATED_MSG(__MAC_10_10, __MAC_10_11, __IPHONE_8_0, __IPHONE_9_0, "Use a kSecAuthenticationUI instead"); 
extern const CFStringRef kSecUseAuthenticationUI 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
extern const CFStringRef kSecUseAuthenticationContext 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
 
/*! 
  @enum kSecUseAuthenticationUI Value Constants 
  @discussion Predefined item attribute constants used to get or set values 
    in a dictionary The kSecUseAuthenticationUI constant is the key and its 
    value is one of the constants defined here 
    If the key kSecUseAuthenticationUI not provided then kSecUseAuthenticationUIAllow 
    is used as default 
  @constant kSecUseAuthenticationUIAllow Specifies that authenticate UI can appear 
  @constant kSecUseAuthenticationUIFail Specifies that the error 
    errSecInteractionNotAllowed will be returned if an item needs 
    to authenticate with UI 
  @constant kSecUseAuthenticationUIAllowSkip Specifies that all items which need 
    to authenticate with UI will be silently skipped This value can be used 
    only with SecItemCopyMatching 
 */ 
extern const CFStringRef kSecUseAuthenticationUIAllow 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
extern const CFStringRef kSecUseAuthenticationUIFail 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
extern const CFStringRef kSecUseAuthenticationUISkip 
  __OSX_AVAILABLE_STARTING(__MAC_10_11, __IPHONE_9_0); 
 
/*! 
   @enum kSecAttrTokenID Value Constants 
   @discussion Predefined item attribute constant used to get or set values 
     in a dictionary The kSecAttrTokenID constant is the key and its value 
     can be kSecAttrTokenIDSecureEnclave 
   @constant kSecAttrTokenIDSecureEnclave Specifies well-known identifier of the 
     token implemented using device's Secure Enclave The only keychain items 
     supported by the Secure Enclave token are 256-bit elliptic curve keys 
     (kSecAttrKeyTypeEC) Keys must be generated on the secure enclave using 
     SecKeyGenerateKeyPair call with kSecAttrTokenID set to 
     kSecAttrTokenIDSecureEnclave in the parameters dictionary, it is not 
     possible to import pregenerated keys to kSecAttrTokenIDSecureEnclave token 
*/ 
extern const CFStringRef kSecAttrTokenIDSecureEnclave 
  __OSX_AVAILABLE_STARTING(__MAC_NA, __IPHONE_9_0); 
 
/*! 
  @function SecItemCopyMatching 
  @abstract Returns one or more items which match a search query 
  @param query A dictionary containing an item class specification and 
    optional attributes for controlling the search See the "Keychain 
    Search Attributes" section for a description of currently defined 
    search attributes 
  @param result On return, a CFTypeRef reference to the found item(s) The 
    exact type of the result is based on the search attributes supplied 
    in the query, as discussed below 
  @result A result code See "Security Error Codes" (SecBaseh) 
  @discussion Attributes defining a search are specified by adding key/value 
    pairs to the query dictionary 
 
  A typical query consists of: 
 
   * a kSecClass key, whose value is a constant from the Class 
    Constants section that specifies the class of item(s) to be searched 
   * one or more keys from the "Attribute Key Constants" section, whose value 
    is the attribute data to be matched 
   * one or more keys from the "Search Constants" section, whose value is 
    used to further refine the search 
   * a key from the "Return Type Key Constants" section, specifying the type of 
    results desired 
 
  Result types are specified as follows: 
 
   * To obtain the data of a matching item (CFDataRef), specify 
    kSecReturnData with a value of kCFBooleanTrue 
   * To obtain the attributes of a matching item (CFDictionaryRef), specify 
    kSecReturnAttributes with a value of kCFBooleanTrue 
   * To obtain a reference to a matching item (SecKeychainItemRef, 
    SecKeyRef, SecCertificateRef, or SecIdentityRef), specify kSecReturnRef 
    with a value of kCFBooleanTrue 
   * To obtain a persistent reference to a matching item (CFDataRef), 
    specify kSecReturnPersistentRef with a value of kCFBooleanTrue Note 
    that unlike normal references, a persistent reference may be stored 
    on disk or passed between processes 
   * If more than one of these result types is specified, the result is 
    returned as a CFDictionaryRef containing all the requested data 
   * If a result type is not specified, no results are returned 
 
  By default, this function returns only the first match found To obtain 
  more than one matching item at a time, specify kSecMatchLimit with a value 
  greater than The result will be a CFArrayRef containing up to that 
  number of matching items; the items' types are described above 
 
  To filter a provided list of items down to those matching the query, 
  specify a kSecMatchItemList whose value is a CFArray of SecKeychainItemRef, 
  SecKeyRef, SecCertificateRef, or SecIdentityRef items The objects in the 
  provided array must be of the same type 
 
  To convert from a persistent item reference to a normal item reference, 
  specify a kSecValuePersistentRef whose value a CFDataRef (the persistent 
  reference), and a kSecReturnRef whose value is kCFBooleanTrue 
*/ 
OSStatus SecItemCopyMatching(CFDictionaryRef query, CFTypeRef * __nullable CF_RETURNS_RETAINED result) 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @function SecItemAdd 
  @abstract Add one or more items to a keychain 
  @param attributes A dictionary containing an item class specification and 
    optional entries specifying the item's attribute values See the 
    "Attribute Key Constants" section for a description of currently defined 
    attributes 
  @param result On return, a CFTypeRef reference to the newly added item(s) 
    The exact type of the result is based on the values supplied 
    in attributes, as discussed below Pass NULL if this result is not 
    required 
  @result A result code See "Security Error Codes" (SecBaseh) 
  @discussion Attributes defining an item are specified by adding key/value 
    pairs to the attributes dictionary To add multiple items to a keychain 
    at once use the kSecUseItemList key with an array of items as its value 
    This is currently only supported for non password items 
 
  Result types are specified as follows: 
 
   * To obtain the data of the added item (CFDataRef), specify 
    kSecReturnData with a value of kCFBooleanTrue 
   * To obtain all the attributes of the added item (CFDictionaryRef), 
    specify kSecReturnAttributes with a value of kCFBooleanTrue 
   * To obtain a reference to the added item (SecKeychainItemRef, SecKeyRef, 
    SecCertificateRef, or SecIdentityRef), specify kSecReturnRef with a 
    value of kCFBooleanTrue 
   * To obtain a persistent reference to the added item (CFDataRef), specify 
    kSecReturnPersistentRef with a value of kCFBooleanTrue Note that 
    unlike normal references, a persistent reference may be stored on disk 
    or passed between processes 
   * If more than one of these result types is specified, the result is 
    returned as a CFDictionaryRef containing all the requested data 
   * If a result type is not specified, no results are returned 
*/ 
OSStatus SecItemAdd(CFDictionaryRef attributes, CFTypeRef * __nullable CF_RETURNS_RETAINED result) 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @function SecItemUpdate 
  @abstract Modify zero or more items which match a search query 
  @param query A dictionary containing an item class specification and 
    optional attributes for controlling the search See the "Attribute 
    Constants" and "Search Constants" sections for a description of 
    currently defined search attributes 
  @param attributesToUpdate A dictionary containing one or more attributes 
    whose values should be set to the ones specified Only real keychain 
    attributes are permitted in this dictionary (no "meta" attributes are 
    allowed) See the "Attribute Key Constants" section for a description of 
    currently defined value attributes 
  @result A result code See "Security Error Codes" (SecBaseh) 
  @discussion Attributes defining a search are specified by adding key/value 
    pairs to the query dictionary 
*/ 
OSStatus SecItemUpdate(CFDictionaryRef query, 
  CFDictionaryRef attributesToUpdate) 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
/*! 
  @function SecItemDelete 
  @abstract Delete zero or more items which match a search query 
  @param query A dictionary containing an item class specification and 
    optional attributes for controlling the search See the "Attribute 
    Constants" and "Search Constants" sections for a description of 
    currently defined search attributes 
  @result A result code See "Security Error Codes" (SecBaseh) 
  @discussion Attributes defining a search are specified by adding key/value 
    pairs to the query dictionary 
 
  By default, this function deletes all items matching the specified query 
  You can change this behavior by specifying one of the follow keys: 
 
   * To delete an item identified by a transient reference, specify 
    kSecValueRef with a reference returned by using the kSecReturnRef 
    key in a previous call to SecItemCopyMatching or SecItemAdd 
   * To delete an item identified by a persistent reference, specify 
    kSecValuePersistentRef with a persistent reference returned by 
    using the kSecReturnPersistentRef key to SecItemCopyMatching or 
    SecItemAdd 
   * To delete multiple items specify kSecMatchItemList with an array 
    of references 
   * If more than one of these result keys is specified, the behavior is 
    undefined 
*/ 
OSStatus SecItemDelete(CFDictionaryRef query) 
  __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_2_0); 
 
CF_IMPLICIT_BRIDGING_DISABLED 
CF_ASSUME_NONNULL_END 
 
__END_DECLS 
 
#endif /* !_SECURITY_SECITEM_H_ */ 

二、蘋果官方的KeychainItemWrapper

官方示例地址

https://developer.apple.com/library/ios/samplecode/GenericKeychain/Listings/Classes_KeychainItemWrapper_m.html#//apple_ref/doc/uid/DTS40007797-Classes_KeychainItemWrapper_m-DontLinkElementID_10

/* 
   File: KeychainItemWrapperm 
 Abstract: 
 Objective-C wrapper for accessing a single keychain item 
  
 Version: 2 
  
 Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple 
 Inc ("Apple") in consideration of your agreement to the following 
 terms, and your use, installation, modification or redistribution of 
 this Apple software constitutes acceptance of these terms If you do 
 not agree with these terms, please do not use, install, modify or 
 redistribute this Apple software 
  
 In consideration of your agreement to abide by the following terms, and 
 subject to these terms, Apple grants you a personal, non-exclusive 
 license, under Apple's copyrights in this original Apple software (the 
 "Apple Software"), to use, reproduce, modify and redistribute the Apple 
 Software, with or without modifications, in source and/or binary forms; 
 provided that if you redistribute the Apple Software in its entirety and 
 without modifications, you must retain this notice and the following 
 text and disclaimers in all such redistributions of the Apple Software 
 Neither the name, trademarks, service marks or logos of Apple Inc may 
 be used to endorse or promote products derived from the Apple Software 
 without specific prior written permission from Apple Except as 
 expressly stated in this notice, no other rights or licenses, express or 
 implied, are granted by Apple herein, including but not limited to any 
 patent rights that may be infringed by your derivative works or by other 
 works in which the Apple Software may be incorporated 
  
 The Apple Software is provided by Apple on an "AS IS" basis APPLE 
 MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION 
 THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS 
 FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND 
 OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS 
  
 IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL 
 OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, 
 MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED 
 AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE), 
 STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE 
 POSSIBILITY OF SUCH DAMAGE 
  
 Copyright (C) 2010 Apple Inc All Rights Reserved 
  
*/  
  
#import "KeychainItemWrapperh" 
#import <Security/Securityh> 
  
/* 
 
These are the default constants and their respective types, 
available for the kSecClassGenericPassword Keychain Item class: 
 
kSecAttrAccessGroup     -    CFStringRef 
kSecAttrCreationDate    -    CFDateRef 
kSecAttrModificationDate  -    CFDateRef 
kSecAttrDescription     -    CFStringRef 
kSecAttrComment       -    CFStringRef 
kSecAttrCreator       -    CFNumberRef 
kSecAttrType        -    CFNumberRef 
kSecAttrLabel        -    CFStringRef 
kSecAttrIsInvisible     -    CFBooleanRef 
kSecAttrIsNegative     -    CFBooleanRef 
kSecAttrAccount       -    CFStringRef 
kSecAttrService       -    CFStringRef 
kSecAttrGeneric       -    CFDataRef 
 
See the header file Security/SecItemh for more details 
 
*/ 
  
@interface KeychainItemWrapper (PrivateMethods) 
/* 
The decision behind the following two methods (secItemFormatToDictionary and dictionaryToSecItemFormat) was 
to encapsulate the transition between what the detail view controller was expecting (NSString *) and what the 
Keychain API expects as a validly constructed container class 
*/ 
- (NSMutableDictionary *)secItemFormatToDictionary:(NSDictionary *)dictionaryToConvert; 
- (NSMutableDictionary *)dictionaryToSecItemFormat:(NSDictionary *)dictionaryToConvert; 
  
// Updates the item in the keychain, or adds it if it doesn't exist 
- (void)writeToKeychain; 
  
@end 
  
@implementation KeychainItemWrapper 
  
@synthesize keychainItemData, genericPasswordQuery; 
  
- (id)initWithIdentifier: (NSString *)identifier accessGroup:(NSString *) accessGroup; 
{ 
  if (self = [super init]) 
  { 
    // Begin Keychain search setup The genericPasswordQuery leverages the special user 
    // defined attribute kSecAttrGeneric to distinguish itself between other generic Keychain 
    // items which may be included by the same application 
    genericPasswordQuery = [[NSMutableDictionary alloc] init]; 
     
    [genericPasswordQuery setObject:(id)kSecClassGenericPassword forKey:(id)kSecClass]; 
    [genericPasswordQuery setObject:identifier forKey:(id)kSecAttrGeneric]; 
     
    // The keychain access group attribute determines if this item can be shared 
    // amongst multiple apps whose code signing entitlements contain the same keychain access group 
    if (accessGroup != nil) 
    { 
#if TARGET_IPHONE_SIMULATOR 
      // Ignore the access group if running on the iPhone simulator 
      //  
      // Apps that are built for the simulator aren't signed, so there's no keychain access group 
      // for the simulator to check This means that all apps can see all keychain items when run 
      // on the simulator 
      // 
      // If a SecItem contains an access group attribute, SecItemAdd and SecItemUpdate on the 
      // simulator will return -25243 (errSecNoAccessForItem) 
#else       
      [genericPasswordQuery setObject:accessGroup forKey:(id)kSecAttrAccessGroup]; 
#endif 
    } 
     
    // Use the proper search constants, return only the attributes of the first match 
    [genericPasswordQuery setObject:(id)kSecMatchLimitOne forKey:(id)kSecMatchLimit]; 
    [genericPasswordQuery setObject:(id)kCFBooleanTrue forKey:(id)kSecReturnAttributes]; 
     
    NSDictionary *tempQuery = [NSDictionary dictionaryWithDictionary:genericPasswordQuery]; 
     
    NSMutableDictionary *outDictionary = nil; 
     
    if (! SecItemCopyMatching((CFDictionaryRef)tempQuery, (CFTypeRef *)&outDictionary) == noErr) 
    { 
      // Stick these default values into keychain item if nothing found 
      [self resetKeychainItem]; 
       
      // Add the generic attribute and the keychain access group 
      [keychainItemData setObject:identifier forKey:(id)kSecAttrGeneric]; 
      if (accessGroup != nil) 
      { 
#if TARGET_IPHONE_SIMULATOR 
        // Ignore the access group if running on the iPhone simulator 
        //  
        // Apps that are built for the simulator aren't signed, so there's no keychain access group 
        // for the simulator to check This means that all apps can see all keychain items when run 
        // on the simulator 
        // 
        // If a SecItem contains an access group attribute, SecItemAdd and SecItemUpdate on the 
        // simulator will return -25243 (errSecNoAccessForItem) 
#else       
        [keychainItemData setObject:accessGroup forKey:(id)kSecAttrAccessGroup]; 
#endif 
      } 
    } 
    else 
    { 
      // load the saved data from Keychain 
      selfkeychainItemData = [self secItemFormatToDictionary:outDictionary]; 
    } 
     
    [outDictionary release]; 
  } 
   
  return self; 
} 
  
- (void)dealloc 
{ 
  [keychainItemData release]; 
  [genericPasswordQuery release]; 
   
  [super dealloc]; 
} 
  
- (void)setObject:(id)inObject forKey:(id)key  
{ 
  if (inObject == nil) return; 
  id currentObject = [keychainItemData objectForKey:key]; 
  if (![currentObject isEqual:inObject]) 
  { 
    [keychainItemData setObject:inObject forKey:key]; 
    [self writeToKeychain]; 
  } 
} 
  
- (id)objectForKey:(id)key 
{ 
  return [keychainItemData objectForKey:key]; 
} 
  
- (void)resetKeychainItem 
{ 
  OSStatus junk = noErr; 
  if (!keychainItemData)  
  { 
    selfkeychainItemData = [[NSMutableDictionary alloc] init]; 
  } 
  else if (keychainItemData) 
  { 
    NSMutableDictionary *tempDictionary = [self dictionaryToSecItemFormat:keychainItemData]; 
    junk = SecItemDelete((CFDictionaryRef)tempDictionary); 
    NSAssert( junk == noErr || junk == errSecItemNotFound, @"Problem deleting current dictionary" ); 
  } 
   
  // Default attributes for keychain item 
  [keychainItemData setObject:@"" forKey:(id)kSecAttrAccount]; 
  [keychainItemData setObject:@"" forKey:(id)kSecAttrLabel]; 
  [keychainItemData setObject:@"" forKey:(id)kSecAttrDescription]; 
   
  // Default data for keychain item 
  [keychainItemData setObject:@"" forKey:(id)kSecValueData]; 
} 
  
- (NSMutableDictionary *)dictionaryToSecItemFormat:(NSDictionary *)dictionaryToConvert 
{ 
  // The assumption is that this method will be called with a properly populated dictionary 
  // containing all the right key/value pairs for a SecItem 
   
  // Create a dictionary to return populated with the attributes and data 
  NSMutableDictionary *returnDictionary = [NSMutableDictionary dictionaryWithDictionary:dictionaryToConvert]; 
   
  // Add the Generic Password keychain item class attribute 
  [returnDictionary setObject:(id)kSecClassGenericPassword forKey:(id)kSecClass]; 
   
  // Convert the NSString to NSData to meet the requirements for the value type kSecValueData 
  // This is where to store sensitive data that should be encrypted 
  NSString *passwordString = [dictionaryToConvert objectForKey:(id)kSecValueData]; 
  [returnDictionary setObject:[passwordString dataUsingEncoding:NSUTF8StringEncoding] forKey:(id)kSecValueData]; 
   
  return returnDictionary; 
} 
  
- (NSMutableDictionary *)secItemFormatToDictionary:(NSDictionary *)dictionaryToConvert 
{ 
  // The assumption is that this method will be called with a properly populated dictionary 
  // containing all the right key/value pairs for the UI element 
   
  // Create a dictionary to return populated with the attributes and data 
  NSMutableDictionary *returnDictionary = [NSMutableDictionary dictionaryWithDictionary:dictionaryToConvert]; 
   
  // Add the proper search key and class attribute 
  [returnDictionary setObject:(id)kCFBooleanTrue forKey:(id)kSecReturnData]; 
  [returnDictionary setObject:(id)kSecClassGenericPassword forKey:(id)kSecClass]; 
   
  // Acquire the password data from the attributes 
  NSData *passwordData = NULL; 
  if (SecItemCopyMatching((CFDictionaryRef)returnDictionary, (CFTypeRef *)&passwordData) == noErr) 
  { 
    // Remove the search, class, and identifier key/value, we don't need them anymore 
    [returnDictionary removeObjectForKey:(id)kSecReturnData]; 
     
    // Add the password to the dictionary, converting from NSData to NSString 
    NSString *password = [[[NSString alloc] initWithBytes:[passwordData bytes] length:[passwordData length]  
                           encoding:NSUTF8StringEncoding] autorelease]; 
    [returnDictionary setObject:password forKey:(id)kSecValueData]; 
  } 
  else 
  { 
    // Don't do anything if nothing is found 
    NSAssert(NO, @"Serious error, no matching item found in the keychain\n"); 
  } 
   
  [passwordData release]; 
   
  return returnDictionary; 
} 
  
- (void)writeToKeychain 
{ 
  NSDictionary *attributes = NULL; 
  NSMutableDictionary *updateItem = NULL; 
  OSStatus result; 
   
  if (SecItemCopyMatching((CFDictionaryRef)genericPasswordQuery, (CFTypeRef *)&attributes) == noErr) 
  { 
    // First we need the attributes from the Keychain 
    updateItem = [NSMutableDictionary dictionaryWithDictionary:attributes]; 
    // Second we need to add the appropriate search key/values 
    [updateItem setObject:[genericPasswordQuery objectForKey:(id)kSecClass] forKey:(id)kSecClass]; 
     
    // Lastly, we need to set up the updated attribute list being careful to remove the class 
    NSMutableDictionary *tempCheck = [self dictionaryToSecItemFormat:keychainItemData]; 
    [tempCheck removeObjectForKey:(id)kSecClass]; 
     
#if TARGET_IPHONE_SIMULATOR 
    // Remove the access group if running on the iPhone simulator 
    //  
    // Apps that are built for the simulator aren't signed, so there's no keychain access group 
    // for the simulator to check This means that all apps can see all keychain items when run 
    // on the simulator 
    // 
    // If a SecItem contains an access group attribute, SecItemAdd and SecItemUpdate on the 
    // simulator will return -25243 (errSecNoAccessForItem) 
    // 
    // The access group attribute will be included in items returned by SecItemCopyMatching, 
    // which is why we need to remove it before updating the item 
    [tempCheck removeObjectForKey:(id)kSecAttrAccessGroup]; 
#endif 
     
    // An implicit assumption is that you can only update a single item at a time 
     
    result = SecItemUpdate((CFDictionaryRef)updateItem, (CFDictionaryRef)tempCheck); 
    NSAssert( result == noErr, @"Couldn't update the Keychain Item" ); 
  } 
  else 
  { 
    // No previous item found; add the new one 
    result = SecItemAdd((CFDictionaryRef)[self dictionaryToSecItemFormat:keychainItemData], NULL); 
    NSAssert( result == noErr, @"Couldn't add the Keychain Item" ); 
  } 
} 
  
@end 

看到這里會發(fā)現(xiàn)蘋果的KeychainWrapper和我們自定義的工具類實(shí)現(xiàn)原理都一樣,就是調(diào)用那幾個方法,所以就不展開介紹了,將來有空再補(bǔ)上。

相關(guān)文章

最新評論

一区二区久久成人网| 国产在线免费观看成人| 青青擦在线视频国产在线| 一色桃子久久精品亚洲 | 经典av尤物一区二区| 啪啪啪操人视频在线播放| 中文乱理伦片在线观看| 888亚洲欧美国产va在线播放| 无码中文字幕波多野不卡| 日本福利午夜电影在线观看| 黄片大全在线观看观看| 国产乱子伦精品视频潮优女| 黄色片一级美女黄色片| 蜜臀成人av在线播放| 一区二区三区日本伦理| 国产一区二区火爆视频| 性感美女福利视频网站| 亚洲人妻30pwc| 97小视频人妻一区二区| 人妻丝袜诱惑我操她视频| 日韩近亲视频在线观看| 久草福利电影在线观看| 日韩中文字幕福利av| 日韩欧美中文国产在线| 中文字幕一区二区三区蜜月| 久久www免费人成一看片| 久久久久久九九99精品| 青青草亚洲国产精品视频| 国产精品成人xxxx| 成年人的在线免费视频| 综合一区二区三区蜜臀| 黄色av网站免费在线| 大鸡吧插逼逼视频免费看| 在线观看免费视频色97| 大香蕉福利在线观看| rct470中文字幕在线| 亚洲免费国产在线日韩| 888欧美视频在线| 欧美激情电影免费在线| 91久久人澡人人添人人爽乱| 亚洲精品高清自拍av| 大屁股熟女一区二区三区| 瑟瑟视频在线观看免费视频| 爆乳骚货内射骚货内射在线| 不卡一区一区三区在线| 激情图片日韩欧美人妻| 日本真人性生活视频免费看| 香港一级特黄大片在线播放| 91免费观看在线网站| 99热久久这里只有精品| 啪啪啪18禁一区二区三区| 91精品一区二区三区站长推荐| 自拍偷拍日韩欧美亚洲| 日本性感美女三级视频| 66久久久久久久久久久| 91久久人澡人人添人人爽乱| 国产免费高清视频视频| 久久久精品欧洲亚洲av| 亚洲成人黄色一区二区三区| 亚洲国产40页第21页| 黄色成人在线中文字幕| 久久美欧人妻少妇一区二区三区| 黄色男人的天堂视频| 久久久91蜜桃精品ad| chinese国产盗摄一区二区| 熟妇一区二区三区高清版| 成人乱码一区二区三区av| 99热色原网这里只有精品| 日本啪啪啪啪啪啪啪| a v欧美一区=区三区| 十八禁在线观看地址免费| 少妇人妻久久久久视频黄片| 亚洲成人线上免费视频观看| 自拍偷拍亚洲另类色图| 亚洲自拍偷拍综合色| 久久精品国产亚洲精品166m| 91麻豆精品91久久久久同性| 熟女在线视频一区二区三区| 伊人网中文字幕在线视频| 东游记中文字幕版哪里可以看到| 午夜精品亚洲精品五月色| 午夜精品一区二区三区更新| 亚洲免费va在线播放| 在线观看的黄色免费网站| 亚洲最大黄 嗯色 操 啊| 亚洲天天干 夜夜操| 孕妇奶水仑乱A级毛片免费看| 亚洲国产40页第21页| 在线新三级黄伊人网| 黄色资源视频网站日韩| 大香蕉大香蕉在线有码 av| 在线观看欧美黄片一区二区三区| 久久永久免费精品人妻专区| 91精品综合久久久久3d动漫| 久久久久久久一区二区三| 大屁股熟女一区二区三区| 懂色av蜜桃a v| 另类av十亚洲av| 久久精品亚洲成在人线a| 国内自拍第一页在线观看| 老司机福利精品免费视频一区二区| av天堂中文免费在线| 青娱乐最新视频在线| 国产在线观看黄色视频| 欧美 亚洲 另类综合| 国产欧美精品一区二区高清| 久久久久久久99精品| chinese国产盗摄一区二区| 天天躁日日躁狠狠躁躁欧美av | 日韩a级精品一区二区| 75国产综合在线视频| 78色精品一区二区三区| 日韩亚洲高清在线观看| 换爱交换乱高清大片| 在线视频这里只有精品自拍| 黄色三级网站免费下载| 日韩精品一区二区三区在线播放| 青青草亚洲国产精品视频| 玖玖一区二区在线观看| 中文字幕 人妻精品| 日韩北条麻妃一区在线| 青青青青青青青青青青草青青| 久久尻中国美女视频| 日本高清撒尿pissing| 午夜毛片不卡免费观看视频 | 欧美香蕉人妻精品一区二区| 久草视频在线一区二区三区资源站 | 国产精品伦理片一区二区| 99热这里只有精品中文| 天天插天天色天天日| 天美传媒mv视频在线观看| 熟女在线视频一区二区三区| 中文字幕一区的人妻欧美日韩| 人妻少妇亚洲精品中文字幕| 国产亚洲四十路五十路| 国产污污污污网站在线| 午夜国产免费福利av| 视频啪啪啪免费观看| 午夜精品福利91av| 国产黄色a级三级三级三级 | 加勒比视频在线免费观看| 成人影片高清在线观看| 人人爽亚洲av人人爽av| 成人24小时免费视频| 日韩a级黄色小视频| 黄色成年网站午夜在线观看| 国产午夜无码福利在线看| 黄网十四区丁香社区激情五月天| 97黄网站在线观看| 丝袜长腿第一页在线| 国产黄色a级三级三级三级| 日本一二三中文字幕| av新中文天堂在线网址| 丰满的子国产在线观看| 成人影片高清在线观看| 成人av中文字幕一区| 日韩黄色片在线观看网站| 午夜精品久久久久久99热| 免费在线看的黄网站| 黄页网视频在线免费观看| 丝袜美腿视频诱惑亚洲无| 欧洲国产成人精品91铁牛tv| 国产高潮无码喷水AV片在线观看| 最新黄色av网站在线观看| 最近中文2019年在线看| 欧美国产亚洲中英文字幕| 亚洲变态另类色图天堂网| 国产亚洲国产av网站在线| 啪啪啪啪啪啪啪啪av| 久久久久久久久久一区二区三区 | 婷婷六月天中文字幕| 国产精品人妻66p| 青娱乐在线免费视频盛宴| 高清一区二区欧美系列| 天天操天天干天天艹| 日本少妇人妻xxxxx18| 成人sm视频在线观看| 国产高清精品一区二区三区| 91精品激情五月婷婷在线| 老司机免费福利视频网| 丝袜长腿第一页在线| 100%美女蜜桃视频| 91色老99久久九九爱精品| 在线新三级黄伊人网| 亚洲黄色av网站免费播放| 九九视频在线精品播放| 国产精品久久久久久美女校花| 亚洲av日韩高清hd| 色伦色伦777国产精品| 天堂av在线最新版在线| 日韩一个色综合导航| 国内精品在线播放第一页| 99久久激情婷婷综合五月天| 亚洲av天堂在线播放| 老司机福利精品视频在线| 国产在线观看免费人成短视频| 五月婷婷在线观看视频免费| 护士特殊服务久久久久久久| 51国产成人精品视频| 国产a级毛久久久久精品| 日本黄色特一级视频| 青青青青青免费视频| 日本一二三区不卡无| 国产性色生活片毛片春晓精品| 亚洲综合图片20p| 91天堂天天日天天操| 亚洲人人妻一区二区三区| 亚洲色偷偷综合亚洲AV伊人| 亚洲1卡2卡三卡4卡在线观看| 99热久久极品热亚洲| 欧美视频综合第一页| 亚洲福利午夜久久久精品电影网| 成熟丰满熟妇高潮xx×xx| 国产三级片久久久久久久 | 日本熟妇色熟妇在线观看| 成人乱码一区二区三区av| 一个色综合男人天堂| 欧美成人综合视频一区二区| 天天干天天日天天谢综合156| 天天日天天操天天摸天天舔| 91在线视频在线精品3| 婷婷色国产黑丝少妇勾搭AV| 成人伊人精品色xxxx视频| 在线观看亚洲人成免费网址| 欧美国品一二三产区区别| 一区二区三区四区中文| 亚洲码av无色中文| 天堂av在线播放免费| 香蕉片在线观看av| 欧美精品国产综合久久| 免费啪啪啪在线观看视频| 孕妇奶水仑乱A级毛片免费看| 好男人视频在线免费观看网站| 3D动漫精品啪啪一区二区下载| 亚洲熟妇x久久av久久| 国产成人精品亚洲男人的天堂| 免费在线观看污污视频网站| 久久久精品999精品日本| 天天操天天干天天日狠狠插| 久久久极品久久蜜桃| 99热国产精品666| 日本少妇人妻xxxxxhd| 福利视频一区二区三区筱慧| 黑人性生活视频免费看| 欧美视频不卡一区四区| 欧亚日韩一区二区三区观看视频 | 国产九色91在线视频| 中国黄色av一级片| 欧美另类一区二区视频| 日韩a级精品一区二区| 免费人成黄页网站在线观看国产| 涩爱综合久久五月蜜臀| 97年大学生大白天操逼| 日韩欧美在线观看不卡一区二区 | 欧美成人黄片一区二区三区 | 天天摸天天亲天天舔天天操天天爽| av高潮迭起在线观看| 视频一区 二区 三区 综合| 中文字幕人妻一区二区视频| 国产又粗又猛又爽又黄的视频美国| 二区中出在线观看老师| 日韩美女综合中文字幕pp| 亚洲天堂av最新网址| 久久久久久久久久一区二区三区| 91欧美在线免费观看| 亚洲福利天堂久久久久久 | 日本女大学生的黄色小视频| 亚洲国产美女一区二区三区软件| 欧美亚洲一二三区蜜臀| 中文字幕1卡1区2区3区| 韩国女主播精品视频网站| 成人av天堂丝袜在线观看| av资源中文字幕在线观看| 亚洲午夜伦理视频在线| 日韩成人免费电影二区| 无码国产精品一区二区高潮久久4 日韩欧美一级精品在线观看 | 久草电影免费在线观看| 青青青青青操视频在线观看| 伊人成人综合开心网| 唐人色亚洲av嫩草| 亚洲一区av中文字幕在线观看| 亚洲自拍偷拍综合色| 欧美一区二区三区四区性视频| 一色桃子人妻一区二区三区| 亚洲激情唯美亚洲激情图片| 亚洲自拍偷拍综合色| 红桃av成人在线观看| 国产视频精品资源网站| 亚洲天堂av最新网址| 传媒在线播放国产精品一区| 精品亚洲国产中文自在线| 亚洲精品国偷自产在线观看蜜桃| 欧美日韩激情啪啪啪| 欧美viboss性丰满| 婷婷色中文亚洲网68| 国产精品手机在线看片| 人妻激情图片视频小说| 欧洲黄页网免费观看| 国内自拍第一页在线观看| 欧美在线偷拍视频免费看| 四川乱子伦视频国产vip| 97国产在线观看高清| 国产精品人妻熟女毛片av久| 日本女大学生的黄色小视频| 国产亚洲天堂天天一区| 免费观看污视频网站| 欧美日本在线视频一区| 久久精品美女免费视频| 黑人巨大的吊bdsm| 一区二区三区四区中文| 最新日韩av传媒在线| 一区二区麻豆传媒黄片 | 日韩无码国产精品强奸乱伦| 91国偷自产一区二区三区精品| 亚洲成人激情av在线| 99精品国自产在线人| 在线播放一区二区三区Av无码| 超碰公开大香蕉97| 大香蕉日本伊人中文在线| 一区二区麻豆传媒黄片| 国产精品自拍偷拍a| 国产精品免费不卡av| 免费在线看的黄网站| 2021天天色天天干| 超pen在线观看视频公开97| 男人操女人逼逼视频网站| 亚洲狠狠婷婷综合久久app| 亚洲va天堂va国产va久| 熟妇一区二区三区高清版| 欧美亚洲少妇福利视频| 久久久精品精品视频视频| 黄色视频成年人免费观看| 午夜在线观看一区视频| 亚洲激情av一区二区| 97少妇精品在线观看| 青青青青青青草国产| 免费男阳茎伸入女阳道视频| 日韩亚洲高清在线观看| 岛国免费大片在线观看| 亚洲国产成人在线一区| 激情色图一区二区三区| 亚洲精品色在线观看视频| 黄工厂精品视频在线观看 | 久久久久久久精品成人热| 欧美成人黄片一区二区三区| 日韩av有码中文字幕| 日曰摸日日碰夜夜爽歪歪| 后入美女人妻高清在线| 亚洲 人妻 激情 中文| 1区2区3区4区视频在线观看| 午夜精品一区二区三区城中村| 亚洲熟女久久久36d| 日韩美女福利视频网| 国产麻豆91在线视频| 青青青青青青青青青青草青青| 人妻自拍视频中国大陆| 免费费一级特黄真人片| 日本xx片在线观看| 93视频一区二区三区| 亚洲一区二区久久久人妻| 欧美区一区二区三视频| 精品av国产一区二区三区四区| 久久久久久9999久久久久| 99热国产精品666| 精产国品久久一二三产区区别 | 亚洲女人的天堂av| 人妻激情图片视频小说| 538精品在线观看视频| 中国熟女@视频91| 9国产精品久久久久老师| aiss午夜免费视频| 超污视频在线观看污污污| 亚洲天堂精品福利成人av| 亚洲国产精品免费在线观看| 亚洲va天堂va国产va久| 涩涩的视频在线观看视频| 亚洲va国产va欧美精品88| 黄色中文字幕在线播放| 亚洲激情av一区二区| 亚洲欧美另类自拍偷拍色图| 91色网站免费在线观看| 韩国黄色一级二级三级| 在线观看黄色成年人网站| 天天夜天天日天天日| 自拍 日韩 欧美激情| 国产九色91在线观看精品| 日本一二三区不卡无| 久久免看30视频口爆视频| 果冻传媒av一区二区三区| 夜夜躁狠狠躁日日躁麻豆内射 | 大鸡巴操b视频在线| 亚洲精品乱码久久久久久密桃明| 精品suv一区二区69| av黄色成人在线观看| 337p日本大胆欧美人| 午夜久久香蕉电影网| 久久久久久99国产精品| 精品人妻每日一部精品| 顶级尤物粉嫩小尤物网站| 亚洲av男人天堂久久| 国产成人精品午夜福利训2021| 狠狠的往里顶撞h百合| 大鸡吧插入女阴道黄色片| ka0ri在线视频| 中国视频一区二区三区| 55夜色66夜色国产精品站| 无码精品一区二区三区人| 北条麻妃肉色丝袜视频| 国产又色又刺激在线视频| 天天插天天狠天天操| 人妻无码中文字幕专区| 国产va在线观看精品| 日韩av有码中文字幕| 99国内小视频在现欢看| 亚洲免费福利一区二区三区| 99久久超碰人妻国产| 国产日韩欧美美利坚蜜臀懂色| 成年美女黄网站18禁久久| 91精品国产91青青碰| 岛国免费大片在线观看| 国产精品人久久久久久| 午夜久久久久久久99| 亚洲第一黄色在线观看| 大香蕉大香蕉在线有码 av| 天天色天天操天天透| 啪啪啪啪啪啪啪免费视频| 中文字幕av男人天堂| 欧美黄色录像免费看的| 日韩在线视频观看有码在线| 大屁股熟女一区二区三区| 亚洲国产精品中文字幕网站| 久草福利电影在线观看| 三级黄色亚洲成人av| 日韩欧美中文国产在线| 欧美久久久久久三级网| 男女之间激情网午夜在线| 天天通天天透天天插| 亚洲人妻av毛片在线| 91亚洲国产成人精品性色| 我想看操逼黄色大片| 亚洲一区二区三区精品乱码| 美女 午夜 在线视频| 国产老熟女伦老熟妇ⅹ| 青青青青视频在线播放| 精品av久久久久久久| 国产视频在线视频播放| 操人妻嗷嗷叫视频一区二区| 婷婷久久一区二区字幕网址你懂得| 亚洲av男人天堂久久| 男生用鸡操女生视频动漫| 亚洲日本一区二区三区| 亚洲熟妇久久无码精品| 五月色婷婷综合开心网4438| 91中文字幕免费在线观看| 超鹏97历史在线观看| 午夜场射精嗯嗯啊啊视频| 爱有来生高清在线中文字幕| 肏插流水妹子在线乐播下载| 国产视频在线视频播放| 中文字幕av第1页中文字幕| 亚洲综合在线视频可播放| 午夜极品美女福利视频| 香港一级特黄大片在线播放| 好男人视频在线免费观看网站| 亚洲免费在线视频网站| 初美沙希中文字幕在线| 色综合天天综合网国产成人| 国产刺激激情美女网站| 最新国产精品网址在线观看| 男人操女人的逼免费视频| 亚洲欧美清纯唯美另类 | 亚洲av色图18p| 亚洲精品乱码久久久本| 亚洲区欧美区另类最新章节| 中文字幕无码日韩专区免费| 91在线视频在线精品3| 91久久综合男人天堂| 中文字幕最新久久久| 天干天天天色天天日天天射| 日本高清撒尿pissing| 人人在线视频一区二区| 五月天中文字幕内射| 国产精品人妻熟女毛片av久| 亚洲中文字幕乱码区| 天天日天天爽天天爽| 66久久久久久久久久久| 玖玖一区二区在线观看| 在线新三级黄伊人网| 亚洲2021av天堂| 亚洲国产精品美女在线观看| 免费av岛国天堂网站| 亚洲精品欧美日韩在线播放| 社区自拍揄拍尻屁你懂的| 中文字幕午夜免费福利视频| 粗大的内捧猛烈进出爽大牛汉子| 国产视频在线视频播放| 国产极品精品免费视频| 91香蕉成人app下载| 亚洲精品 欧美日韩| 青青青激情在线观看视频| 免费成人va在线观看| 一区二区三区 自拍偷拍| 成人24小时免费视频| 久久综合老鸭窝色综合久久| 国产一区自拍黄视频免费观看| 日韩美女福利视频网| 精品日产卡一卡二卡国色天香| 99国内小视频在现欢看| 中文字幕日韩精品日本| 91she九色精品国产| 日本性感美女视频网站| 久久一区二区三区人妻欧美| 国产美女一区在线观看| 无码日韩人妻精品久久| 成人精品在线观看视频| 亚洲特黄aaaa片| 日本真人性生活视频免费看| 午夜精品一区二区三区4| 中文字幕中文字幕 亚洲国产| 农村胖女人操逼视频| 久久这里有免费精品| 黄片色呦呦视频免费看| 国产视频精品资源网站| 人妻少妇性色欲欧美日韩| jul—619中文字幕在线| 狠狠躁夜夜躁人人爽天天天天97| 91麻豆精品秘密入口在线观看 | 日本精品美女在线观看| 亚洲精品午夜久久久久| 91av精品视频在线| 红桃av成人在线观看| 操日韩美女视频在线免费看| 国产精品欧美日韩区二区| 成人av久久精品一区二区| 亚洲伊人av天堂有码在线| 日本人妻少妇18—xx| 国产精品亚洲在线观看| 天天插天天狠天天操| 国产女人露脸高潮对白视频| 91桃色成人网络在线观看| 欧美成人综合视频一区二区 | aaa久久久久久久久| 5528327男人天堂| 五十路av熟女松本翔子| 中文字幕1卡1区2区3区| 丰满的子国产在线观看| 亚洲午夜电影之麻豆| 2022中文字幕在线| 天天日天天日天天擦| 国产精品国产三级麻豆| 国产亚州色婷婷久久99精品| 一区二区三区四区五区性感视频| 一区二区三区四区视频| 日韩在线中文字幕色| 免费看高清av的网站| 9久在线视频只有精品| 一区二区三区视频,福利一区二区| 日韩a级精品一区二区| 75国产综合在线视频| 性欧美激情久久久久久久| www久久久久久久久久久| 天天插天天色天天日| 精品美女福利在线观看| 亚洲国产精品久久久久久6| 亚洲人妻av毛片在线| 夜色福利视频在线观看| 中国产一级黄片免费视频播放| 久久精品美女免费视频| 动漫美女的小穴视频| 在线观看免费岛国av| 日韩美在线观看视频黄| 日本三极片视频网站观看| 精品av国产一区二区三区四区 | 大香蕉大香蕉大香蕉大香蕉大香蕉| av一区二区三区人妻| 欧美精品亚洲精品日韩在线| 国产黄网站在线观看播放| 一个人免费在线观看ww视频| 国产亚洲视频在线观看| 日本高清成人一区二区三区| 亚洲男人在线天堂网| 欲满人妻中文字幕在线| 香港三日本三韩国三欧美三级| 免费看高清av的网站| 毛茸茸的大外阴中国视频| 密臀av一区在线观看| 成人性黑人一级av| 精品亚洲在线免费观看| 经典av尤物一区二区| 国产日本欧美亚洲精品视| 亚洲精品国产在线电影| 91久久精品色伊人6882| 在线观看免费视频色97| 91www一区二区三区| 日韩加勒比东京热二区| 熟女在线视频一区二区三区| 日本一区二区三区免费小视频| 适合午夜一个人看的视频| 熟女人妻在线观看视频| 日日摸夜夜添夜夜添毛片性色av| 国产一区二区欧美三区| 国产va精品免费观看| 57pao国产一区二区| 人妻凌辱欧美丰满熟妇| 国产一级麻豆精品免费| 果冻传媒av一区二区三区| 国产妇女自拍区在线观看| 在线国产精品一区二区三区| 最新91九色国产在线观看| 久久久久久久久久一区二区三区| 国产激情av网站在线观看| 97国产在线av精品| 一级黄片大鸡巴插入美女| 成人av天堂丝袜在线观看| 91老熟女连续高潮对白| 日韩欧美亚洲熟女人妻| 亚洲成人国产综合一区| 日本黄色特一级视频| 日韩午夜福利精品试看| 91九色porny国产蝌蚪视频| 啪啪啪18禁一区二区三区| 在线国产日韩欧美视频| av俺也去在线播放| 久青青草视频手机在线免费观看| 亚洲中文字幕综合小综合| 最新国产精品拍在线观看| 老司机欧美视频在线看| 久久久久久久久久一区二区三区| 啊啊好大好爽啊啊操我啊啊视频 | 中文字幕无码一区二区免费| 国产自拍黄片在线观看| 欧美日韩人妻久久精品高清国产| 久久久久91精品推荐99| 97精品人妻一区二区三区精品| 淫秽激情视频免费观看| 国产午夜激情福利小视频在线| 欧美视频综合第一页| 国产黄色大片在线免费播放| 视频在线免费观看你懂得| 亚洲 清纯 国产com| 早川濑里奈av黑人番号| 亚洲天堂精品久久久| 青青青青操在线观看免费| 国产精品精品精品999| 国产之丝袜脚在线一区二区三区| 国产性色生活片毛片春晓精品 | 成年女人免费播放视频| 综合色区亚洲熟妇shxstz| 日本最新一二三区不卡在线 | asmr福利视频在线观看| 黑人大几巴狂插日本少妇| 天天躁日日躁狠狠躁躁欧美av| 偷拍自拍视频图片免费| 国产欧美精品免费观看视频| 国产一区二区神马久久| 亚洲狠狠婷婷综合久久app| 黄色片年轻人在线观看| 2021久久免费视频| 五十路av熟女松本翔子| 黄色录像鸡巴插进去| 家庭女教师中文字幕在线播放| av老司机精品在线观看| 女生被男生插的视频网站| 中国视频一区二区三区| 清纯美女在线观看国产| 午夜在线观看岛国av,com| 天天躁夜夜躁日日躁a麻豆| 中文字幕av第1页中文字幕| 97瑟瑟超碰在线香蕉| 97少妇精品在线观看| 人妻激情图片视频小说| 国产精品黄色的av| 午夜在线观看一区视频| 激情五月婷婷综合色啪| 欧美黑人性暴力猛交喷水| 999九九久久久精品| 在线免费观看视频一二区| 自拍偷拍vs一区二区三区| 成人久久精品一区二区三区| 青青青青在线视频免费观看| 夏目彩春在线中文字幕| 97香蕉碰碰人妻国产樱花| 久草视频首页在线观看| 成年人该看的视频黄免费| 日韩北条麻妃一区在线| 激情内射在线免费观看| 欧美精品久久久久久影院| 欧美一区二区三区久久久aaa| 国内资源最丰富的网站| 最新91九色国产在线观看| 欧美精品激情在线最新观看视频| 亚洲av男人天堂久久| 日曰摸日日碰夜夜爽歪歪| 啪啪啪啪啪啪啪免费视频| av网站色偷偷婷婷网男人的天堂| 中文字幕一区二区三区人妻大片| 久久h视频在线观看| 亚洲最大黄了色网站| 老司机免费视频网站在线看| 日视频免费在线观看| 成人国产激情自拍三区| 久久久久久久久久性潮| 日本啪啪啪啪啪啪啪| 欧美熟妇一区二区三区仙踪林| 91色老99久久九九爱精品| 亚洲精品无码色午夜福利理论片| 天天日天天爽天天干| 亚洲成人情色电影在线观看| 丰满少妇人妻xxxxx| 中国老熟女偷拍第一页| 亚洲一区二区激情在线| 大香蕉大香蕉大香蕉大香蕉大香蕉| lutube在线成人免费看| 天天综合天天综合天天网| 成年人该看的视频黄免费| 亚洲 欧美 自拍 偷拍 在线| 欧美爆乳肉感大码在线观看| 日本性感美女写真视频| 国产av国片精品一区二区| 亚洲自拍偷拍综合色| 精品国产亚洲av一淫| 亚洲另类图片蜜臀av| 日本少妇的秘密免费视频| av中文在线天堂精品| 中文人妻AV久久人妻水| 91香蕉成人app下载| 97人妻人人澡爽人人精品| 亚洲天堂有码中文字幕视频| 亚洲人妻av毛片在线| 强行扒开双腿猛烈进入免费版| 91人妻精品一区二区在线看| 91久久综合男人天堂| 国产午夜激情福利小视频在线| 国产熟妇一区二区三区av| 日本一区精品视频在线观看| 中文字幕日韩精品日本| 亚洲一区二区三区精品乱码| 色花堂在线av中文字幕九九| 绝色少妇高潮3在线观看| 成人sm视频在线观看| 国产精品成久久久久三级蜜臀av| 日韩加勒比东京热二区| 不卡精品视频在线观看| 超级av免费观看一区二区三区| 边摸边做超爽毛片18禁色戒| 天天日天天干天天干天天日| 国产成人午夜精品福利| 老司机99精品视频在线观看| 日韩精品二区一区久久| 午夜久久久久久久精品熟女| 在线国产精品一区二区三区| 中文字幕人妻三级在线观看| 人人人妻人人澡人人| 亚洲精品国产综合久久久久久久久 | 成年女人免费播放视频| 亚洲一区久久免费视频| 又大又湿又爽又紧A视频| 国产一区av澳门在线观看| 国产a级毛久久久久精品| 国产成人精品一区在线观看| 国产成人小视频在线观看无遮挡| 欧美女同性恋免费a| 欧美另类一区二区视频| 天天艹天天干天天操| 天天干天天插天天谢| 国产精品手机在线看片| jiuse91九色视频| 在线观看免费视频网| 天天操天天干天天日狠狠插| 人人人妻人人澡人人| 亚洲av男人的天堂你懂的| 99亚洲美女一区二区三区| 亚洲国产第一页在线观看| 好太好爽好想要免费| 久草极品美女视频在线观看| 在线免费观看av日韩| 91chinese在线视频| 青青草视频手机免费在线观看| 黄色黄色黄片78在线| 青青青青青青青青青国产精品视频| 搡老熟女一区二区在线观看| 国产一区成人在线观看视频| 夜夜嗨av蜜臀av| 亚洲2021av天堂| 天堂av在线播放免费| 精品美女久久久久久| 欧美成人综合色在线噜噜| 亚洲一区二区三区精品视频在线| 鸡巴操逼一级黄色气| 一级黄片大鸡巴插入美女| 国产一区av澳门在线观看| 成年人黄色片免费网站| 2020国产在线不卡视频| 亚洲 图片 欧美 图片| 亚洲精品国品乱码久久久久| 亚洲一区二区三区精品乱码| 亚洲欧美清纯唯美另类| 亚洲激情,偷拍视频| 99精品久久久久久久91蜜桃| 最新黄色av网站在线观看| 桃色视频在线观看一区二区| 97超碰国语国产97超碰| 人人爽亚洲av人人爽av| 中文字幕av熟女人妻| 端庄人妻堕落挣扎沉沦| 热久久只有这里有精品| 欧美国产亚洲中英文字幕| 91在线免费观看成人| 亚洲 欧美 精品 激情 偷拍| 成年人该看的视频黄免费| 亚洲中文字字幕乱码| 又大又湿又爽又紧A视频| 久久久久久久久久性潮| 国产亚洲视频在线观看| 亚洲成人黄色一区二区三区| 最后99天全集在线观看| 一个人免费在线观看ww视频| aiss午夜免费视频| 免费在线福利小视频| 91国产在线视频免费观看| 欧美另类重口味极品在线观看| 沙月文乃人妻侵犯中文字幕在线| 视频一区 二区 三区 综合| 婷婷激情四射在线观看视频| 亚洲午夜电影之麻豆| 亚洲一级av无码一级久久精品| 免费在线观看视频啪啪| 97精品人妻一区二区三区精品| 天天操天天弄天天射| 婷婷色国产黑丝少妇勾搭AV | 人人爽亚洲av人人爽av| 国产精品成人xxxx| 成年人该看的视频黄免费| 日韩av免费观看一区| 涩涩的视频在线观看视频| 国产又色又刺激在线视频| 中文字日产幕乱六区蜜桃| 国产卡一卡二卡三乱码手机| 久久www免费人成一看片| 在线观看av亚洲情色| 日韩一个色综合导航| 一区二区在线视频中文字幕 | 欧美亚洲牲夜夜综合久久| 视频 国产 精品 熟女 | 果冻传媒av一区二区三区| 国产麻豆精品人妻av| 75国产综合在线视频| 婷婷综合亚洲爱久久| 午夜dv内射一区区| 黄色成人在线中文字幕| caoporm超碰国产| 自拍偷拍日韩欧美亚洲| 欧美日韩情色在线观看| 午夜激情久久不卡一区二区| 久草视频首页在线观看| 人妻无码色噜噜狠狠狠狠色| 日韩精品电影亚洲一区| 在线免费观看亚洲精品电影| 婷婷久久久久深爱网| 黄色片黄色片wyaa| 护士小嫩嫩又紧又爽20p| 91香蕉成人app下载| av无限看熟女人妻另类av| 亚洲男人的天堂a在线| 国产精品黄片免费在线观看| 国产超码片内射在线| 亚洲一区二区三区偷拍女厕91| 亚洲高清免费在线观看视频| 天天插天天狠天天操| 亚洲欧美激情国产综合久久久| 福利国产视频在线观看| 欧美伊人久久大香线蕉综合| 偷拍自拍国产在线视频| 青青青青青手机视频| 亚洲欧美色一区二区| 成年人免费看在线视频| 日本免费午夜视频网站| 国产熟妇乱妇熟色T区| 亚洲中文精品人人免费| 日韩影片一区二区三区不卡免费| 日美女屁股黄邑视频| 亚洲午夜电影在线观看| 夜色撩人久久7777| 国产成人综合一区2区| 国产精品国产三级国产精东| 91久久综合男人天堂| 亚洲天堂第一页中文字幕| 欧美偷拍亚洲一区二区| 亚洲成人国产av在线| 最新激情中文字幕视频| av在线资源中文字幕| 久久农村老妇乱69系列| 国产美女精品福利在线| 亚洲美女美妇久久字幕组| 动漫精品视频在线观看| 91极品新人『兔兔』精品新作| 国产卡一卡二卡三乱码手机| 免费观看国产综合视频| 日韩近亲视频在线观看| 中文字幕人妻av在线观看| 国产麻豆精品人妻av| 久久这里只有精彩视频免费| 夜女神免费福利视频| 青娱乐在线免费视频盛宴| 播放日本一区二区三区电影| 亚洲护士一区二区三区| 欧美黑人性猛交xxxxⅹooo| 性生活第二下硬不起来| 成人影片高清在线观看| 中文字幕第一页国产在线| 中文人妻AV久久人妻水| 久久机热/这里只有| 亚洲一区二区三区偷拍女厕91| 超碰公开大香蕉97| 国产乱子伦精品视频潮优女| 亚洲激情偷拍一区二区| 午夜的视频在线观看| 99热国产精品666| 日韩欧美国产精品91| 偷偷玩弄新婚人妻h视频| 新97超碰在线观看| 91九色国产熟女一区二区| 人妻少妇亚洲一区二区| 成人av久久精品一区二区| 亚洲精品精品国产综合| 色花堂在线av中文字幕九九| 中文字幕av熟女人妻| 干逼又爽又黄又免费的视频| 亚洲国产40页第21页| 亚洲少妇人妻无码精品| 日韩人妻丝袜中文字幕| 漂亮 人妻被中出中文| 在线视频精品你懂的| 亚洲午夜精品小视频| 麻豆性色视频在线观看| 国产chinesehd精品麻豆| 欧美日本aⅴ免费视频| 中文字幕国产专区欧美激情| 午夜久久久久久久精品熟女| 伊拉克及约旦宣布关闭领空| 97黄网站在线观看| 亚洲午夜福利中文乱码字幕| 边摸边做超爽毛片18禁色戒| 日本五十路熟新垣里子| 欧美精品黑人性xxxx| 精品av国产一区二区三区四区| 97香蕉碰碰人妻国产樱花| 天堂av在线最新版在线| 午夜毛片不卡免费观看视频| 久久精品美女免费视频| 在线观看的黄色免费网站| 成人sm视频在线观看| 插小穴高清无码中文字幕| 国产使劲操在线播放| 亚洲av成人免费网站| 天天干天天日天天谢综合156| 亚洲欧美一区二区三区电影| 亚洲av色香蕉一区二区三区| 亚洲av色香蕉一区二区三区| 成人资源在线观看免费官网| 中文字幕网站你懂的| 久久久久久久亚洲午夜综合福利| 国产三级影院在线观看| 国产亚洲天堂天天一区| 国产精品大陆在线2019不卡| 91精品国产91久久自产久强| 老司机福利精品免费视频一区二区 | 国产露脸对白在线观看| av线天堂在线观看| sejizz在线视频| 色偷偷伊人大杳蕉综合网| 午夜青青草原网在线观看| 欧美精品久久久久久影院| 亚洲一区二区三区久久午夜| 亚洲一区二区三区久久午夜| 欧美国品一二三产区区别| 欧美3p在线观看一区二区三区| 久久久精品999精品日本| 欧美日韩情色在线观看| 国产性感美女福利视频| 91久久精品色伊人6882| 欧美香蕉人妻精品一区二区| 免费在线播放a级片| 午夜激情精品福利视频| 婷婷六月天中文字幕| 69精品视频一区二区在线观看| 亚洲国产欧美一区二区三区久久| 国产在线一区二区三区麻酥酥| 韩国男女黄色在线观看| 精品一区二区三区三区色爱| 国产a级毛久久久久精品| 国产麻豆91在线视频| 色婷婷综合激情五月免费观看| 亚洲欧美清纯唯美另类 | 97瑟瑟超碰在线香蕉| 白嫩白嫩美女极品国产在线观看| 韩国亚洲欧美超一级在线播放视频| japanese五十路熟女熟妇| 最新国产精品网址在线观看| 精内国产乱码久久久久久| 91色九色porny| 中文字幕一区二区三区人妻大片| 日韩欧美中文国产在线| 天堂中文字幕翔田av| 日本阿v视频在线免费观看| 97国产在线观看高清| 亚洲一级av无码一级久久精品| 人妻另类专区欧美制服| 天天干天天搞天天摸| 大香蕉伊人中文字幕| 日本少妇的秘密免费视频| 人妻少妇亚洲一区二区| 亚洲成人三级在线播放| 可以在线观看的av中文字幕| 天码人妻一区二区三区在线看 | 肏插流水妹子在线乐播下载| 搡老妇人老女人老熟女| 国产高潮无码喷水AV片在线观看| 美女av色播在线播放| 亚洲嫩模一区二区三区| 无码日韩人妻精品久久| 亚洲 国产 成人 在线| 天堂av在线官网中文| 天天射夜夜操狠狠干| 在线免费观看亚洲精品电影| 欧美老鸡巴日小嫩逼| 一区二区三区毛片国产一区| 亚洲成人三级在线播放| 亚洲在线免费h观看网站| 久草极品美女视频在线观看| 亚洲精品国产久久久久久| 成人午夜电影在线观看 久久| 日本免费一级黄色录像| 国产黄色a级三级三级三级| 视频二区在线视频观看| 日比视频老公慢点好舒服啊| 亚洲av无硬久久精品蜜桃| 欧美亚洲少妇福利视频| 91快播视频在线观看| 久久精品视频一区二区三区四区| 日本黄色三级高清视频| 黑人大几巴狂插日本少妇| 五十路在线观看完整版| 91国产资源在线视频| 一区二区三区美女毛片| 国产在线自在拍91国语自产精品 | 免费av岛国天堂网站| 2020国产在线不卡视频| 日日夜夜大香蕉伊人| 岛国毛片视频免费在线观看| 最新的中文字幕 亚洲| 国产午夜无码福利在线看| 亚洲精品久久视频婷婷| 99久久激情婷婷综合五月天| 老司机99精品视频在线观看| 中文字幕人妻被公上司喝醉在线| 快插进小逼里大鸡吧视频| 自拍偷拍亚洲另类色图| 国产密臀av一区二区三| av乱码一区二区三区| 女同久久精品秋霞网| 一区二区三区久久中文字幕| 欧美aa一级一区三区四区| 乱亲女秽乱长久久久| 又粗又硬又猛又黄免费30| 91九色porny国产在线| 大屁股熟女一区二区三区| 88成人免费av网站| 一区二区视频在线观看免费观看| 啊啊好慢点插舔我逼啊啊啊视频| 91小伙伴中女熟女高潮| 免费成人va在线观看| 欧美天堂av无线av欧美| 欧美在线一二三视频| 午夜婷婷在线观看视频| 久久综合老鸭窝色综合久久| 一级黄片大鸡巴插入美女 | weyvv5国产成人精品的视频| 午夜av一区二区三区| 久草极品美女视频在线观看| 日韩av有码中文字幕| 一区二区三区麻豆福利视频| 国产一区二区久久久裸臀| 99av国产精品欲麻豆| 亚洲av男人天堂久久| 少妇人妻二三区视频| 91精品一区二区三区站长推荐| 在线观看免费视频网| huangse网站在线观看| 青青青青操在线观看免费| 欧美一区二区中文字幕电影| www日韩a级s片av| 久久这里只有精彩视频免费| 亚洲成av人无码不卡影片一| 国产精品中文av在线播放| 亚洲第一黄色在线观看| 玖玖一区二区在线观看| 天天做天天爽夜夜做少妇| 美女在线观看日本亚洲一区| 亚洲1区2区3区精华液| 亚洲男人的天堂a在线| 999热精品视频在线| 欧美另类z0z变态| 人人爱人人妻人人澡39| 手机看片福利盒子日韩在线播放| 丰满少妇人妻xxxxx| 视频二区在线视频观看| 黄色无码鸡吧操逼视频| 亚洲精品国品乱码久久久久 | 无码日韩人妻精品久久| 日韩美女福利视频网| 中文字幕 亚洲av| 2020中文字幕在线播放| 亚洲成人午夜电影在线观看| 国产黄色大片在线免费播放 | 在线观看一区二区三级| 97成人免费在线观看网站| gogo国模私拍视频| 2018最新中文字幕在线观看| 91精品国产高清自在线看香蕉网| 国产精品成人xxxx| 国产av一区2区3区| 国产在线观看黄色视频| 亚洲国产精品美女在线观看| 亚洲精品国产久久久久久| 国产精品久久久久久久久福交| 欧美日韩精品永久免费网址| 精品久久久久久高潮| 男女第一次视频在线观看| 亚洲va天堂va国产va久| 国产一区二区火爆视频| 在线免费观看日本片| 3344免费偷拍视频| 美女福利视频导航网站| 嫩草aⅴ一区二区三区| 在线不卡成人黄色精品| 中文字日产幕乱六区蜜桃| 国产精品成久久久久三级蜜臀av | 精品久久久久久久久久久a√国产 日本女大学生的黄色小视频 | 大鸡吧插逼逼视频免费看| 亚洲免费在线视频网站| 日本高清在线不卡一区二区| 开心 色 六月 婷婷| 18禁精品网站久久| 亚洲精品色在线观看视频| 国产使劲操在线播放| 国产实拍勾搭女技师av在线| 国产精品视频资源在线播放| 欧美女同性恋免费a| 78色精品一区二区三区| 五月色婷婷综合开心网4438| 亚洲av男人的天堂你懂的| 欧美日韩v中文在线| 亚洲成a人片777777| 色爱av一区二区三区| 国产 在线 免费 精品| 超鹏97历史在线观看| 99热这里只有精品中文| 日本男女操逼视频免费看| 日韩av熟妇在线观看| 一区二区视频视频视频| 888欧美视频在线| 青青青aaaa免费| 黑人变态深video特大巨大| 婷婷久久久综合中文字幕| 亚洲精品亚洲人成在线导航| 色花堂在线av中文字幕九九| 天天日天天做天天日天天做| 内射久久久久综合网| 青青青视频自偷自拍38碰| 97青青青手机在线视频| 亚洲精品精品国产综合| 日韩黄色片在线观看网站| 国产激情av网站在线观看| 精品乱子伦一区二区三区免费播| 在线新三级黄伊人网| 久久久极品久久蜜桃| 91精品国产黑色丝袜| 99国内精品永久免费视频| 欧美亚洲中文字幕一区二区三区| 欧美精品资源在线观看| 插逼视频双插洞国产操逼插洞| 国产综合高清在线观看| 狠狠地躁夜夜躁日日躁| 亚洲欧美一卡二卡三卡| 在线成人日韩av电影| 亚洲精品亚洲人成在线导航| 38av一区二区三区| 91快播视频在线观看| 色哟哟国产精品入口| 天天日天天玩天天摸| av完全免费在线观看av| 成人av天堂丝袜在线观看| 欧美一区二区三区高清不卡tv | 青青社区2国产视频| 欧美日韩熟女一区二区三区| 亚洲精品三级av在线免费观看| 97成人免费在线观看网站| 中文字幕在线乱码一区二区| 久草视频首页在线观看| 天天干夜夜操啊啊啊| 黑人巨大的吊bdsm| 日韩欧美国产精品91| 国产九色91在线视频| 国产精品探花熟女在线观看| 国产精品人妻66p| 日韩欧美中文国产在线| 青青草国内在线视频精选| 韩国女主播精品视频网站| 少妇被强干到高潮视频在线观看| 老司机福利精品视频在线| 欧美成人精品欧美一级黄色| 在线免费观看av日韩| 亚洲av男人的天堂你懂的| 国产午夜无码福利在线看| 欧美日韩亚洲国产无线码| 18禁美女黄网站色大片下载| 晚上一个人看操B片| 早川濑里奈av黑人番号| 国产丰满熟女成人视频| 亚洲成人av在线一区二区| 欧美香蕉人妻精品一区二区| 成人久久精品一区二区三区| wwwxxx一级黄色片| 国产日韩精品一二三区久久久 | 亚洲精品久久综合久| 日本又色又爽又黄又粗| 成人高清在线观看视频| 黄工厂精品视频在线观看| av俺也去在线播放| 国产清纯美女al在线| 中国无遮挡白丝袜二区精品| 日本少妇的秘密免费视频| 91精品国产综合久久久蜜| 中文字幕av一区在线观看| 岛国av高清在线成人在线| 婷婷色中文亚洲网68| 9色在线视频免费观看| 精品少妇一二三视频在线| 免费无毒热热热热热热久| 青青青视频手机在线观看| 9l人妻人人爽人人爽| wwwxxx一级黄色片| 天干天天天色天天日天天射 | 国产乱子伦一二三区| 国产黄色片在线收看| 少妇被强干到高潮视频在线观看| 国产又色又刺激在线视频| 婷婷五月亚洲综合在线| 国产日韩av一区二区在线| 日韩中文字幕在线播放第二页| 久久三久久三久久三久久| 亚洲综合一区成人在线| 在线观看国产网站资源| 最新国产亚洲精品中文在线| 亚洲成人激情视频免费观看了 | 狠狠躁狠狠爱网站视频| 18禁网站一区二区三区四区| 日韩人妻在线视频免费| 人人妻人人澡欧美91精品| 国产精品国产三级国产精东 | 美女操逼免费短视频下载链接| 91精品国产91青青碰| 热久久只有这里有精品| 欧美成人一二三在线网| 99婷婷在线观看视频| 日韩一区二区电国产精品| 黑人性生活视频免费看| 超碰公开大香蕉97| 爱有来生高清在线中文字幕| 色综合色综合色综合色| 黄色大片男人操女人逼| 熟女人妻一区二区精品视频| 自拍偷拍vs一区二区三区| 国际av大片在线免费观看| 国产欧美精品一区二区高清 | 伊人成人在线综合网| 五十路息与子猛烈交尾视频 | 亚洲国产欧美国产综合在线| 青青青激情在线观看视频| 福利一二三在线视频观看| 日本成人不卡一区二区| 视频啪啪啪免费观看| 日韩午夜福利精品试看| 日韩欧美亚洲熟女人妻| 2020久久躁狠狠躁夜夜躁| 国产av欧美精品高潮网站| 精品亚洲中文字幕av | 中文字幕av第1页中文字幕| 中国黄色av一级片| 新97超碰在线观看| 亚洲一区二区人妻av| 91极品新人『兔兔』精品新作| 久久久精品国产亚洲AV一| 三级等保密码要求条款| 99热久久这里只有精品| 日本av高清免费网站| 亚洲欧美色一区二区| 婷婷色中文亚洲网68| 日韩美女精品视频在线观看网站| 年轻的人妻被夫上司侵犯| 自拍偷区二区三区麻豆| 日本免费午夜视频网站| 亚洲精品高清自拍av| 亚洲第一黄色在线观看 | 大陆av手机在线观看| 亚洲在线观看中文字幕av| 久久永久免费精品人妻专区| 超黄超污网站在线观看| 国产三级影院在线观看| 日日操综合成人av| 91极品新人『兔兔』精品新作| 日韩av有码中文字幕| 亚洲av自拍偷拍综合| 国产亚洲四十路五十路| 久久久久久99国产精品| 爆乳骚货内射骚货内射在线| 99一区二区在线观看| 男女之间激情网午夜在线| 欧美成一区二区三区四区| 小泽玛利亚视频在线观看| 日本韩国亚洲综合日韩欧美国产 | 大香蕉伊人中文字幕| 精品亚洲国产中文自在线| av手机免费在线观看高潮| 国产欧美精品不卡在线| 日本成人不卡一区二区| 玩弄人妻熟妇性色av少妇| 青草青永久在线视频18| 漂亮 人妻被中出中文| 男生舔女生逼逼视频| 九色精品视频在线播放| 啪啪啪18禁一区二区三区| 亚洲午夜高清在线观看| 国产一区自拍黄视频免费观看| 国产又粗又硬又猛的毛片视频 | 岛国青草视频在线观看| 在线视频自拍第三页| www日韩毛片av| 国产精品日韩欧美一区二区| 亚洲熟色妇av日韩熟色妇在线 | 日本一区二区三区免费小视频| 91精品国产91青青碰| 香蕉av影视在线观看| 婷婷久久久综合中文字幕| 欧美视频一区免费在线| 男人在床上插女人视频| 青青草人人妻人人妻| 国产janese在线播放| 欧美一区二区中文字幕电影| 在线成人日韩av电影| 中文字幕熟女人妻久久久| 乱亲女秽乱长久久久| 欧美成人小视频在线免费看| 91she九色精品国产| 69精品视频一区二区在线观看| 男大肉棒猛烈插女免费视频| 99国内精品永久免费视频| 久久永久免费精品人妻专区| 自拍偷拍一区二区三区图片| av天堂中文免费在线| 亚洲国产欧美一区二区三区久久| 大香蕉玖玖一区2区| 青青青视频手机在线观看| 三上悠亚和黑人665番号| 亚洲午夜高清在线观看| 男人的天堂一区二区在线观看| av欧美网站在线观看| 韩国一级特黄大片做受| 91av精品视频在线| 日韩a级精品一区二区| 欧美精品国产综合久久| 视频一区 二区 三区 综合| 成年人午夜黄片视频资源| 新97超碰在线观看| 精品黑人一区二区三区久久国产| 亚洲成人av一区久久| 经典国语激情内射视频| 91精品国产黑色丝袜| 91啪国自产中文字幕在线| 日韩在线视频观看有码在线| 亚洲精品亚洲人成在线导航| 57pao国产一区二区| 久久久久久性虐视频| 久久精品国产999| 久久久久久久久久性潮| 国产精品视频资源在线播放| 日本性感美女视频网站| 久久精品在线观看一区二区| 国语对白xxxx乱大交| 日韩激情文学在线视频| 亚洲va天堂va国产va久| 国产亚洲精品视频合集| 午夜福利资源综合激情午夜福利资| chinese国产盗摄一区二区| 精品人人人妻人人玩日产欧| 国产精品亚洲在线观看| 女生被男生插的视频网站| 成人高潮aa毛片免费| 国产97在线视频观看| 久久麻豆亚洲精品av| 欧美一级色视频美日韩| 抽查舔水白紧大视频| 偷拍美女一区二区三区| 久久丁香花五月天色婷婷| 日本脱亚入欧是指什么| 久久久久久久久久久免费女人| 欧美特色aaa大片| 青青青青草手机在线视频免费看| 男大肉棒猛烈插女免费视频| 中文 成人 在线 视频| 99热99这里精品6国产| 女人精品内射国产99| 1024久久国产精品| 特级欧美插插插插插bbbbb| 青青在线视频性感少妇和隔壁黑丝| 爱有来生高清在线中文字幕| 黄色资源视频网站日韩| 色呦呦视频在线观看视频| 天天摸天天日天天操| 美女骚逼日出水来了| 999九九久久久精品| 国产精品黄色的av| 国产一区自拍黄视频免费观看| 欧美精产国品一二三产品区别大吗| 日韩美女福利视频网| 人妻3p真实偷拍一二区| 欧美80老妇人性视频| 18禁精品网站久久| 国产精品自偷自拍啪啪啪| 精品日产卡一卡二卡国色天香| 综合一区二区三区蜜臀| 国产一区成人在线观看视频| 2021最新热播中文字幕| 国产麻豆剧果冻传媒app| 色97视频在线播放| 国产午夜亚洲精品麻豆| 国产男女视频在线播放| 中文字母永久播放1区2区3区| 大鸡巴操b视频在线| 亚洲成人午夜电影在线观看| 天天爽夜夜爽人人爽QC| 亚洲日本一区二区三区| 国产黄色片在线收看| 天天色天天舔天天射天天爽| 欧美精品国产综合久久| 国产女人叫床高潮大片视频| 日本免费午夜视频网站| 亚洲午夜伦理视频在线| 亚洲乱码中文字幕在线| 一级黄片大鸡巴插入美女| 午夜免费观看精品视频| 国产在线观看免费人成短视频| 亚洲欧洲一区二区在线观看| 欧美日韩精品永久免费网址| 天天做天天爽夜夜做少妇| 国产97视频在线精品| okirakuhuhu在线观看| 中文人妻AV久久人妻水| 影音先锋女人av噜噜色| 亚洲av成人网在线观看| 丝袜肉丝一区二区三区四区在线| 热久久只有这里有精品| 久久久噜噜噜久久熟女av| 都市激情校园春色狠狠| 国产又粗又黄又硬又爽| 成人高潮aa毛片免费| 日本欧美视频在线观看三区| 亚洲av日韩av第一区二区三区| 天堂av在线播放免费| 大学生A级毛片免费视频| 一区二区三区在线视频福利| 社区自拍揄拍尻屁你懂的| 国产三级精品三级在线不卡| 久久久精品国产亚洲AV一| 福利午夜视频在线观看| 少妇高潮无套内谢麻豆| 久久精品国产亚洲精品166m| 婷婷午夜国产精品久久久| 精品国产亚洲av一淫| 亚洲最大黄了色网站| 国产 在线 免费 精品| 又色又爽又黄的美女裸体| 成年午夜免费无码区| 久久久精品999精品日本| 综合一区二区三区蜜臀| 欧美成人综合视频一区二区 | 综合激情网激情五月五月婷婷| 亚洲免费va在线播放| 91国产在线免费播放| 91亚洲精品干熟女蜜桃频道| 人妻熟女中文字幕aⅴ在线| 精品一区二区三区午夜| 极品丝袜一区二区三区| 欧美一区二区三区乱码在线播放 | 9久在线视频只有精品| 新97超碰在线观看| av在线shipin| 91色九色porny| 日韩美女精品视频在线观看网站| 在线观看av亚洲情色| 日本真人性生活视频免费看| 和邻居少妇愉情中文字幕| 涩爱综合久久五月蜜臀| 精品av国产一区二区三区四区| 熟女国产一区亚洲中文字幕| 婷婷色国产黑丝少妇勾搭AV| 精品一线二线三线日本| 亚洲人妻av毛片在线| 男生舔女生逼逼的视频| 人妻3p真实偷拍一二区| 特级欧美插插插插插bbbbb| 亚洲另类综合一区小说| 国产综合高清在线观看| 亚洲高清国产自产av| 欧美精品伦理三区四区| 91国内精品自线在拍白富美| 国产综合高清在线观看| 亚洲av无码成人精品区辽| 可以免费看的www视频你懂的| 午夜免费体验区在线观看| 日韩人妻xxxxx| 狠狠鲁狠狠操天天晚上干干| 精品黑人巨大在线一区| 女同性ⅹxx女同hd| 激情人妻校园春色亚洲欧美| 夜女神免费福利视频| 一区二区熟女人妻视频| 大香蕉大香蕉在线有码 av| 91麻豆精品久久久久| 亚洲欧美激情国产综合久久久| 亚洲熟妇无码一区二区三区| 干逼又爽又黄又免费的视频| 99的爱精品免费视频| 热久久只有这里有精品| 青青草成人福利电影| nagger可以指黑人吗| 大香蕉福利在线观看| 97国产在线av精品| 又大又湿又爽又紧A视频| 91色老99久久九九爱精品| 亚洲av无乱一区二区三区性色| 极品粉嫩小泬白浆20p主播| 国产真实灌醉下药美女av福利| 天天艹天天干天天操| 春色激情网欧美成人| 99精品国产aⅴ在线观看| 亚洲精品高清自拍av| 青娱乐蜜桃臀av色| 午夜激情久久不卡一区二区| 午夜免费体验区在线观看| 国产精品国色综合久久| 这里有精品成人国产99| 在线成人日韩av电影| 偷拍3456eee| 又大又湿又爽又紧A视频| 沙月文乃人妻侵犯中文字幕在线 | 欧美精产国品一二三产品价格| 亚洲图片偷拍自拍区| 成年人的在线免费视频| 午夜精品一区二区三区福利视频| 乱亲女秽乱长久久久| 国产 在线 免费 精品| 18禁美女羞羞免费网站| 久久这里只有精彩视频免费| 白白操白白色在线免费视频| 国产在线观看黄色视频| 在线观看视频网站麻豆| 十八禁在线观看地址免费| 免费观看成年人视频在线观看 | 国产麻豆国语对白露脸剧情| 精品国产在线手机在线| 绝顶痉挛大潮喷高潮无码 | asmr福利视频在线观看| 在线免费观看亚洲精品电影| 91国产资源在线视频| 黄色成人在线中文字幕| 91p0rny九色露脸熟女| 国产密臀av一区二区三| 午夜久久久久久久精品熟女| 18禁免费av网站| 亚洲综合在线视频可播放| 久久www免费人成一看片| 中文字幕奴隷色的舞台50| 熟女少妇激情五十路| 国产麻豆精品人妻av| 日本阿v视频在线免费观看| 四虎永久在线精品免费区二区| 福利片区一区二体验区| 精品乱子伦一区二区三区免费播| 成人高潮aa毛片免费| 曰本无码人妻丰满熟妇啪啪| 青青伊人一精品视频| 少妇高潮一区二区三区| 熟女91pooyn熟女| 日本少妇高清视频xxxxx| 中文字幕之无码色多多| 欧美视频中文一区二区三区| 黄色视频成年人免费观看| 美女骚逼日出水来了| 91精品国产观看免费| 黑人借宿ntr人妻的沦陷2| 色在线观看视频免费的| 亚洲国产最大av综合| 日本男女操逼视频免费看| 欧美一区二区三区啪啪同性| 一区二区在线观看少妇| av乱码一区二区三区| 1区2区3区不卡视频| 一区二区视频在线观看免费观看| 成人av在线资源网站| 国产在线免费观看成人| av森泽佳奈在线观看| 精品老妇女久久9g国产| 91片黄在线观看喷潮| 91 亚洲视频在线观看| 国产刺激激情美女网站| 最近中文字幕国产在线| 成年美女黄网站18禁久久| 欧美成人猛片aaaaaaa| 91国内视频在线观看| 中文字幕在线一区精品| 人妻少妇性色欲欧美日韩| 好了av中文字幕在线| 绝顶痉挛大潮喷高潮无码| 少妇一区二区三区久久久| 亚洲午夜在线视频福利| 亚洲国产在线精品国偷产拍 | 日本av熟女在线视频| 日韩精品电影亚洲一区| 人妻自拍视频中国大陆| av无限看熟女人妻另类av| 日本人妻精品久久久久久| 毛片av在线免费看| 日本免费视频午夜福利视频| 国产不卡av在线免费| 五十路av熟女松本翔子| 亚洲在线免费h观看网站| 久久精品美女免费视频| 国产麻豆91在线视频| 日韩精品二区一区久久| 春色激情网欧美成人| 粉嫩av蜜乳av蜜臀| 偷拍自拍福利视频在线观看| 92福利视频午夜1000看| 精品国产污污免费网站入口自| 日韩人妻丝袜中文字幕| 日韩美av高清在线| a v欧美一区=区三区| 99精品国产aⅴ在线观看| chinese国产盗摄一区二区| 日韩激情文学在线视频| 女同性ⅹxx女同hd| 男女啪啪啪啪啪的网站| 特级欧美插插插插插bbbbb| 日韩欧美一级aa大片| gogo国模私拍视频| 国产精品久久久久久久女人18| 国际av大片在线免费观看| 不卡精品视频在线观看| 五月天中文字幕内射| tube69日本少妇| 在线播放一区二区三区Av无码| 免费成人av中文字幕| 人妻丝袜av在线播放网址| 伊人网中文字幕在线视频| 日韩欧美国产精品91| 人人爽亚洲av人人爽av| 国产一区二区欧美三区| 中文字幕人妻一区二区视频| 成人免费毛片aaaa| 亚洲国产欧美国产综合在线| av森泽佳奈在线观看| 国产女人露脸高潮对白视频| 青青社区2国产视频| huangse网站在线观看| 国产精品久久久久久久女人18| 直接观看免费黄网站| 51国产偷自视频在线播放| av森泽佳奈在线观看| 亚洲精品 日韩电影| 欧美韩国日本国产亚洲| 最新中文字幕乱码在线| 偷拍美女一区二区三区| 久草视频在线一区二区三区资源站 | 在线新三级黄伊人网| 国产成人无码精品久久久电影| 人妻无码色噜噜狠狠狠狠色| 国产又粗又猛又爽又黄的视频在线| 亚洲福利天堂久久久久久| 大香蕉大香蕉大香蕉大香蕉大香蕉| 粗大的内捧猛烈进出爽大牛汉子| 日韩欧美高清免费在线| 亚洲卡1卡2卡三卡四老狼| av手机在线免费观看日韩av| 人妻丰满熟妇综合网| 护士特殊服务久久久久久久| 色综合久久五月色婷婷综合| 精品av久久久久久久| 国内精品在线播放第一页| 日本少妇在线视频大香蕉在线观看| 999九九久久久精品| 国产九色91在线视频| 中文字幕日韩人妻在线三区| 888欧美视频在线| 日韩精品中文字幕福利| 亚洲最大黄了色网站| 免费成人av中文字幕| 美女骚逼日出水来了| 中文字幕日韩精品日本| sejizz在线视频| 黑人进入丰满少妇视频| 国产女人露脸高潮对白视频| 黄片色呦呦视频免费看| 亚洲中文字幕国产日韩| 又粗又硬又猛又爽又黄的| wwwxxx一级黄色片| 亚洲一区二区三区偷拍女厕91 | 日韩人妻丝袜中文字幕| 91破解版永久免费| 精品视频国产在线观看| av手机免费在线观看高潮| 伊人成人综合开心网| 精品久久久久久久久久久久人妻| 亚洲欧美国产麻豆综合| 亚洲精品国品乱码久久久久| av久久精品北条麻妃av观看| 人妻无码中文字幕专区| 激情综合治理六月婷婷| 天堂av在线官网中文| 久久机热/这里只有| 欧美成人小视频在线免费看| 视频啪啪啪免费观看| 99精品免费观看视频| 青青青激情在线观看视频| 在线免费观看日本片| 国产亚洲欧美视频网站| 久久久久久久久久久免费女人| 亚洲1区2区3区精华液| 成人蜜臀午夜久久一区| 青青草视频手机免费在线观看| 成人网18免费视频版国产| 午夜国产福利在线观看| 欧美专区日韩专区国产专区| 成人国产小视频在线观看| 国产在线观看免费人成短视频| 欧美成人一二三在线网| 久久丁香婷婷六月天| 人妻少妇精品久久久久久 | 999九九久久久精品| av成人在线观看一区| av网址国产在线观看| 亚洲一区二区久久久人妻| 久久久久国产成人精品亚洲午夜| 最近中文字幕国产在线| 国产janese在线播放| 一本久久精品一区二区| 青青青青青青草国产| 亚洲高清免费在线观看视频| 亚洲精品中文字幕下载| 特一级特级黄色网片| 午夜精品一区二区三区4| 亚洲一区二区三区偷拍女厕91| 中文字幕人妻av在线观看| 久久丁香花五月天色婷婷| 好吊视频—区二区三区| 鸡巴操逼一级黄色气| 成人av电影免费版| 亚洲自拍偷拍综合色| 日韩加勒比东京热二区| 精品乱子伦一区二区三区免费播 | 日本韩国在线观看一区二区| 亚洲综合乱码一区二区| 麻豆性色视频在线观看| 亚洲av日韩高清hd| 偷拍自拍国产在线视频| 一区二区三区久久中文字幕| 91成人精品亚洲国产| 久久这里只有精品热视频| 亚洲青青操骚货在线视频| 国产视频一区二区午夜| 婷婷久久久久深爱网| 日本熟女50视频免费| 蜜桃视频入口久久久| 国产熟妇人妻ⅹxxxx麻豆| 午夜在线一区二区免费| 18禁网站一区二区三区四区| 丝袜肉丝一区二区三区四区在线看| 日韩一个色综合导航| 91国产资源在线视频| 快点插进来操我逼啊视频| 夜夜嗨av蜜臀av| 噜噜色噜噜噜久色超碰| 久久久噜噜噜久久熟女av| 伊人网中文字幕在线视频| 热思思国产99re| 天天摸天天亲天天舔天天操天天爽| 国产精品久久9999| 深夜男人福利在线观看| 免费在线黄色观看网站| 在线观看免费av网址大全| 中国无遮挡白丝袜二区精品| 国产在线91观看免费观看| 精品国产污污免费网站入口自| 午夜场射精嗯嗯啊啊视频| 日韩av大胆在线观看| 老司机99精品视频在线观看| 国产91精品拍在线观看| 欧美精品久久久久久影院| gogo国模私拍视频| 亚洲熟女女同志女同| huangse网站在线观看| 99久久中文字幕一本人| 成人av久久精品一区二区| 91免费观看在线网站| 国产97在线视频观看| 精品国产亚洲av一淫| 精品国产高潮中文字幕| 老熟妇xxxhd老熟女| 亚洲中文字幕国产日韩| 999热精品视频在线| 亚洲日本一区二区三区| 97少妇精品在线观看| 亚洲午夜高清在线观看| 强行扒开双腿猛烈进入免费版| 亚洲精品午夜aaa久久| 91she九色精品国产| 欧美日韩情色在线观看| 大屁股肉感人妻中文字幕在线| av成人在线观看一区| 丰满的继坶3中文在线观看| 精品91高清在线观看| 欧美色婷婷综合在线| 不卡精品视频在线观看| 国产精品一区二区av国| 欧美亚洲牲夜夜综合久久| 亚洲午夜高清在线观看| 天天插天天狠天天操| 久久久久久9999久久久久| 综合色区亚洲熟妇shxstz| 绯色av蜜臀vs少妇| av黄色成人在线观看| 欧美 亚洲 另类综合| 欧美日本国产自视大全| 大鸡巴操娇小玲珑的女孩逼| 欧美精品 日韩国产| 国产成人自拍视频在线免费观看| 国产福利小视频大全| 天天日天天天天天天天天天天| 91欧美在线免费观看| 日韩在线中文字幕色| 一色桃子人妻一区二区三区| 91老师蜜桃臀大屁股| 特级欧美插插插插插bbbbb| 亚洲图库另类图片区| 91在线免费观看成人| 白嫩白嫩美女极品国产在线观看| 亚洲自拍偷拍精品网| 中文字幕在线乱码一区二区| 久草视频在线免播放| 亚洲另类综合一区小说| 欧美精品中文字幕久久二区| 成人动漫大肉棒插进去视频| 91色秘乱一区二区三区| 久久久久久久久久久免费女人| 国产成人精品久久二区91| 91自产国产精品视频| 国产精品黄页网站视频| 国产精品久久久久久久女人18| 青青青青爽手机在线| 99久久超碰人妻国产| 久久农村老妇乱69系列| 99国内小视频在现欢看| 日日爽天天干夜夜操| 福利国产视频在线观看| 国产成人小视频在线观看无遮挡 | 啊啊啊想要被插进去视频| 精品91自产拍在线观看一区| 免费高清自慰一区二区三区网站 | 亚洲成人黄色一区二区三区| 欧美成人黄片一区二区三区| 一区二区三区久久久91| 亚洲精品乱码久久久本| 在线国产精品一区二区三区| 欧美精品久久久久久影院| 人人妻人人人操人人人爽| 大白屁股精品视频国产| 欧美一区二区三区激情啪啪啪| 天天通天天透天天插| 国产亚洲精品视频合集| 国产一区二区火爆视频| 五月天色婷婷在线观看视频免费| ka0ri在线视频| 熟妇一区二区三区高清版| 日本女大学生的黄色小视频| 黄色在线观看免费观看在线| 硬鸡巴动态操女人逼视频| 综合激情网激情五月五月婷婷| 美女日逼视频免费观看| aaa久久久久久久久| 国产精品熟女久久久久浪潮| 香蕉aⅴ一区二区三区| 在线播放国产黄色av| 色综合久久五月色婷婷综合 | 日本一本午夜在线播放| 青青色国产视频在线| 91天堂精品一区二区| 黑人性生活视频免费看| 男人操女人的逼免费视频| 欧美综合婷婷欧美综合| 亚洲va天堂va国产va久| 最新国产亚洲精品中文在线| 天天日天天日天天擦| 亚洲另类综合一区小说| 久久免看30视频口爆视频| 自拍偷拍日韩欧美一区二区| 中文字幕人妻一区二区视频| 又色又爽又黄的美女裸体| 欧美 亚洲 另类综合| 天天操天天弄天天射| 在线国产精品一区二区三区| 五十路息与子猛烈交尾视频 | 天天射夜夜操综合网| 欧美专区日韩专区国产专区| 亚洲高清国产一区二区三区| 日本一二三区不卡无| 国产精品久久久久久美女校花| 懂色av之国产精品| 国产黄网站在线观看播放| 欧美精品 日韩国产| 国产精品黄大片在线播放| 精品一区二区三区三区88| aⅴ五十路av熟女中出| 天天操,天天干,天天射| 久久久极品久久蜜桃| 日韩av中文在线免费观看| 亚洲国产中文字幕啊啊啊不行了| 日本女大学生的黄色小视频| 欧美一区二区三区四区性视频| 中文字幕免费在线免费| 一本久久精品一区二区| 中文字幕亚洲久久久| 日本少妇人妻xxxxx18| 大鸡吧插入女阴道黄色片| 国产黄色片在线收看| 成人sm视频在线观看| 国产熟妇一区二区三区av| 亚洲精品乱码久久久本| 欧美韩国日本国产亚洲| 久久艹在线观看视频| 亚洲综合自拍视频一区| 爱爱免费在线观看视频| 天天干天天日天天干天天操| 中文字幕人妻一区二区视频 | 激情综合治理六月婷婷| 51国产偷自视频在线播放| 91极品大一女神正在播放| 欧美视频一区免费在线| 日韩熟女系列一区二区三区| 久草电影免费在线观看| 97国产福利小视频合集| 亚洲精品无码久久久久不卡| 国产精品一区二区av国| 激情综合治理六月婷婷| 中文字幕—97超碰网| 午夜频道成人在线91| 蜜桃视频在线欧美一区| av完全免费在线观看av| 天天干天天插天天谢| 好太好爽好想要免费| 99视频精品全部15| 亚洲一级 片内射视正片| 天天摸天天日天天操| 久久久久只精品国产三级| 亚洲人人妻一区二区三区| 日本www中文字幕| 国产精品熟女久久久久浪潮| 蜜臀av久久久久久久| 亚洲免费在线视频网站| 欧美特色aaa大片| 在线免费观看欧美小视频| 人人在线视频一区二区| 美女福利视频网址导航| 男女第一次视频在线观看| 人妻丝袜精品中文字幕| 一区二区三区四区五区性感视频| 欧美在线精品一区二区三区视频 | 男人操女人逼逼视频网站| 真实国产乱子伦一区二区| 福利国产视频在线观看| 亚洲公开视频在线观看| 操人妻嗷嗷叫视频一区二区| 午夜dv内射一区区| 久久久久五月天丁香社区| 一区二区三区另类在线| 天天操夜夜操天天操天天操| 国产自拍黄片在线观看| 97香蕉碰碰人妻国产樱花| 欧美精品 日韩国产| 午夜dv内射一区区| 欧美怡红院视频在线观看| mm131美女午夜爽爽爽| aiss午夜免费视频| 天天做天天干天天舔| 天天操夜夜操天天操天天操| 男人天堂av天天操| 天天插天天狠天天操| 中国无遮挡白丝袜二区精品| 欧美怡红院视频在线观看| 97人妻色免费视频| 97年大学生大白天操逼| huangse网站在线观看| 人妻素人精油按摩中出| 天天操天天射天天操天天天| 亚洲一级特黄特黄黄色录像片| 久久久精品国产亚洲AV一| 精品亚洲在线免费观看| 国产成人精品一区在线观看| 久草电影免费在线观看| 亚洲日产av一区二区在线| 欧美精品 日韩国产| 亚洲第一伊人天堂网| 国产精品福利小视频a| 手机看片福利盒子日韩在线播放| 亚洲的电影一区二区三区 | 91av精品视频在线| 直接观看免费黄网站| caoporn蜜桃视频| 成熟熟女国产精品一区| 亚洲国产免费av一区二区三区| 日韩无码国产精品强奸乱伦| 九九热99视频在线观看97| 久久久久久久久久一区二区三区| 黄色男人的天堂视频| 精品久久久久久久久久中文蒉| av乱码一区二区三区| 国产剧情演绎系列丝袜高跟| 久久人人做人人妻人人玩精品vr| 国产成人精品午夜福利训2021| 欧美激情电影免费在线| 亚洲精品精品国产综合| 国产白嫩美女一区二区| 色花堂在线av中文字幕九九 | 国产精品入口麻豆啊啊啊| 国产成人自拍视频播放| 久久久久久久久久性潮| 黑人大几巴狂插日本少妇| 久久精品亚洲成在人线a| 亚洲成人激情av在线| 日本人妻精品久久久久久| 中国黄色av一级片| 人人妻人人澡人人爽人人dvl| 婷婷综合蜜桃av在线| 久久机热/这里只有| 午夜精品福利91av| 55夜色66夜色国产精品站| 亚洲av日韩高清hd| 扒开让我视频在线观看| 成人久久精品一区二区三区| 亚洲一区二区三区久久午夜 | 青青青青青青青青青青草青青| 久久久久91精品推荐99| 亚洲午夜电影之麻豆| 中文字幕高清免费在线人妻| 99久久99久国产黄毛片| 亚洲高清国产拍青青草原| 天天日天天天天天天天天天天| 天天日天天做天天日天天做| 韩国一级特黄大片做受| 一区二区三区四区视频在线播放| 久久久久久性虐视频| 一级黄片大鸡巴插入美女| 亚洲狠狠婷婷综合久久app| 青青青青操在线观看免费| 少妇人妻100系列| 最新97国产在线视频| 亚洲高清免费在线观看视频| 自拍偷拍日韩欧美一区二区| 韩国黄色一级二级三级| 国产精品亚洲а∨天堂免| 国产精品福利小视频a| 亚洲高清国产自产av| 在线免费观看黄页视频| 日日夜夜大香蕉伊人| 91精品激情五月婷婷在线| 青青青爽视频在线播放| 免费一级特黄特色大片在线观看| av中文字幕在线观看第三页| 国产伊人免费在线播放| 午夜在线一区二区免费| 在线免费观看99视频| 国内自拍第一页在线观看| 欧美一级色视频美日韩| 亚国产成人精品久久久| 狠狠躁夜夜躁人人爽天天天天97| 天堂va蜜桃一区入口| av在线播放国产不卡| 男人天堂色男人av| av中文字幕福利网| 五月天色婷婷在线观看视频免费| 玩弄人妻熟妇性色av少妇| 国产实拍勾搭女技师av在线| 天天干夜夜操天天舔| 亚洲熟妇x久久av久久| 97年大学生大白天操逼| 黄色片黄色片wyaa| 天天日天天爽天天爽| 熟女人妻在线中出观看完整版| 亚洲国产香蕉视频在线播放| 亚洲午夜电影在线观看| 久久久精品999精品日本| 91精品国产麻豆国产| 99热久久这里只有精品8| 亚洲粉嫩av一区二区三区| 综合色区亚洲熟妇shxstz| 成人午夜电影在线观看 久久| 粗大的内捧猛烈进出爽大牛汉子| 国产精品久久综合久久| 伊人情人综合成人久久网小说| 日本精品视频不卡一二三| 中文字幕人妻三级在线观看| 青青青青爽手机在线| 青草亚洲视频在线观看| 东京干手机福利视频| 国产真实乱子伦a视频| 93视频一区二区三区| 国产不卡av在线免费| 最后99天全集在线观看| 国产性色生活片毛片春晓精品 | 色综合久久久久久久久中文| 久久久久久99国产精品| 国语对白xxxx乱大交| 亚洲欧美另类手机在线| 国产实拍勾搭女技师av在线| 国产麻豆精品人妻av| 一级黄片大鸡巴插入美女 | 成人av亚洲一区二区| 精品乱子伦一区二区三区免费播| 一级黄片久久久久久久久| 久久久精品精品视频视频| 欧美一区二区三区久久久aaa| 美女小视频网站在线| 国产va在线观看精品| 欧美精产国品一二三区| 黄色视频在线观看高清无码 | 国产在线观看黄色视频| 日本精品美女在线观看| 久碰精品少妇中文字幕av | 日韩加勒比东京热二区| 一区二区麻豆传媒黄片| 精品亚洲中文字幕av| 99re6热在线精品| 涩爱综合久久五月蜜臀| 一区二区三区久久中文字幕| 欧美亚洲中文字幕一区二区三区| 亚洲最大黄 嗯色 操 啊| 日韩欧美高清免费在线| 中文字幕中文字幕人妻| 免费在线黄色观看网站| 青娱乐在线免费视频盛宴| 色狠狠av线不卡香蕉一区二区| 亚洲一区二区久久久人妻| 中国把吊插入阴蒂的视频| 欧美另类重口味极品在线观看| 国产精品成人xxxx| 国产黄色片在线收看| 婷婷六月天中文字幕| 日本人妻欲求不满中文字幕| 香港一级特黄大片在线播放| 午夜精品一区二区三区4| 91在线视频在线精品3| 亚洲在线一区二区欧美| 中文字幕一区二区自拍| 欧美精品中文字幕久久二区| 亚洲精品麻豆免费在线观看| 欧洲精品第一页欧洲精品亚洲| 9色在线视频免费观看| 91自产国产精品视频| 欧美日韩在线精品一区二区三| 顶级尤物粉嫩小尤物网站| 中文字幕一区的人妻欧美日韩| 天天艹天天干天天操| 色综合久久五月色婷婷综合| 19一区二区三区在线播放| 欧美专区日韩专区国产专区| 另类av十亚洲av| 男人的天堂av日韩亚洲| 久久久精品精品视频视频| 欧美精品久久久久久影院| 欧美地区一二三专区| 中国黄色av一级片| 日本最新一二三区不卡在线| 久久机热/这里只有| 欧美一区二区三区四区性视频| 久久久精品欧洲亚洲av| 亚洲综合在线观看免费| v888av在线观看视频| 亚洲成av人无码不卡影片一| 国产夫妻视频在线观看免费| 国产变态另类在线观看| 老司机午夜精品视频资源| 国产又大又黄免费观看| 男大肉棒猛烈插女免费视频| 白白操白白色在线免费视频 | 人人超碰国字幕观看97| av手机在线免费观看日韩av| 任我爽精品视频在线播放| 亚洲av日韩精品久久久| 播放日本一区二区三区电影| 中文字幕,亚洲人妻| 欧美久久一区二区伊人| 在线观看黄色成年人网站| 中文字幕在线乱码一区二区 | 激情综合治理六月婷婷| 亚洲伊人久久精品影院一美女洗澡 | japanese五十路熟女熟妇| 亚洲伊人久久精品影院一美女洗澡| 中文字幕 码 在线视频| 91精品国产91久久自产久强| 国产视频在线视频播放| 国产欧美精品不卡在线| 91chinese在线视频| 熟女人妻在线观看视频| 天天日天天透天天操| 97青青青手机在线视频| 天天干天天操天天扣| 天天操天天插天天色| 五十路熟女av天堂| 欧美一级色视频美日韩| 成人免费毛片aaaa| 精品老妇女久久9g国产| 日韩av中文在线免费观看| 啊啊啊想要被插进去视频| 国产精品成人xxxx| 亚洲视频在线观看高清| 亚洲午夜福利中文乱码字幕| 春色激情网欧美成人| 97国产在线观看高清| brazzers欧熟精品系列| 国产成人午夜精品福利| 噜噜色噜噜噜久色超碰| 99的爱精品免费视频| 11久久久久久久久久久| 黑人3p华裔熟女普通话| 快插进小逼里大鸡吧视频| 老熟妇凹凸淫老妇女av在线观看| 婷婷六月天中文字幕| 色偷偷伊人大杳蕉综合网| 2022国产综合在线干| 日日夜夜狠狠干视频| 中文字幕在线观看极品视频| 在线免费观看靠比视频的网站| 精品美女久久久久久| 男女啪啪视频免费在线观看 | 1区2区3区不卡视频| 精品久久久久久久久久久a√国产| 成人午夜电影在线观看 久久| 中文字幕一区二区三区人妻大片| 日曰摸日日碰夜夜爽歪歪| 欧美一区二区三区在线资源| 经典av尤物一区二区| 日韩精品啪啪视频一道免费| 高潮喷水在线视频观看| 亚洲免费成人a v| 青青青青青青草国产| 日韩av免费观看一区| 欧美亚洲偷拍自拍色图| 无码中文字幕波多野不卡| av俺也去在线播放| 欧美日本aⅴ免费视频| 欧美色呦呦最新网址| 三级等保密码要求条款| 国产精品欧美日韩区二区| 88成人免费av网站| 国产精品黄大片在线播放| 亚洲码av无色中文| 免费国产性生活视频| 精品一线二线三线日本| 国产午夜激情福利小视频在线| 日韩不卡中文在线视频网站| 欧美精品国产综合久久| 天天日天天舔天天射进去| 91九色porny蝌蚪国产成人| 中文字幕av第1页中文字幕| 欧亚日韩一区二区三区观看视频| 欧美黑人巨大性xxxxx猛交| 色综合久久无码中文字幕波多| 中国把吊插入阴蒂的视频| 欧美成人小视频在线免费看| 亚洲欧洲一区二区在线观看| 99re6热在线精品| 极品性荡少妇一区二区色欲| av新中文天堂在线网址| 一区二区三区的久久的蜜桃的视频| 蜜桃色婷婷久久久福利在线| 在线视频免费观看网| 熟女俱乐部一二三区| 亚洲午夜在线视频福利| 国产亚洲视频在线二区| 日韩人妻在线视频免费| 高潮视频在线快速观看国家快速| 大香蕉大香蕉大香蕉大香蕉大香蕉 | 玖玖一区二区在线观看| 98视频精品在线观看| 欧美另类一区二区视频| 蜜桃精品久久久一区二区| 久久久91蜜桃精品ad| 五十路人妻熟女av一区二区| 75国产综合在线视频| 国产精品久久9999| 老司机午夜精品视频资源| 免费无码人妻日韩精品一区二区| 人妻丝袜av在线播放网址| 国产精品视频一区在线播放| 人人爽亚洲av人人爽av| 粉嫩av蜜乳av蜜臀| 国产精品欧美日韩区二区| 91国内精品自线在拍白富美| 亚洲午夜伦理视频在线| 岛国免费大片在线观看| 一级A一级a爰片免费免会员| 人妻熟女中文字幕aⅴ在线| 一区二区视频在线观看免费观看 | 黄色黄色黄片78在线| 男人在床上插女人视频| 丝袜肉丝一区二区三区四区在线看| 鸡巴操逼一级黄色气| 91试看福利一分钟| 日本男女操逼视频免费看| 久草视频在线看免费| eeuss鲁片一区二区三区| 日本一道二三区视频久久| 亚洲精品国产在线电影| 免费黄色成人午夜在线网站| 国产成人午夜精品福利| 亚洲精品欧美日韩在线播放| 欧美va不卡视频在线观看| 中文字幕av男人天堂| 国产精品视频男人的天堂| 中英文字幕av一区| 3337p日本欧洲大胆色噜噜| 天天操天天爽天天干| 成人伊人精品色xxxx视频| 少妇与子乱在线观看| 欧美一区二区三区乱码在线播放| 亚洲推理片免费看网站| 清纯美女在线观看国产| 日美女屁股黄邑视频| 精品人妻每日一部精品| 小泽玛利亚视频在线观看| 抽查舔水白紧大视频| 久久久极品久久蜜桃| 亚洲一区二区人妻av| 伊拉克及约旦宣布关闭领空| 91欧美在线免费观看| 99精品亚洲av无码国产另类| gogo国模私拍视频| 国产妇女自拍区在线观看| 欧美亚洲中文字幕一区二区三区| 夜色17s精品人妻熟女| 日本少妇在线视频大香蕉在线观看| 无忧传媒在线观看视频| 国产精品自拍偷拍a| 国产av国片精品一区二区| 粉嫩av蜜乳av蜜臀| 国产免费av一区二区凹凸四季| 天天操天天干天天插| 3337p日本欧洲大胆色噜噜| 日韩av有码中文字幕| 亚洲 中文 自拍 另类 欧美| 丝袜亚洲另类欧美变态| 青青草原色片网站在线观看| 国产va精品免费观看| 亚洲免费福利一区二区三区| 福利视频网久久91| 国产精品国产三级麻豆| 日韩无码国产精品强奸乱伦| 天天操夜夜操天天操天天操| 中文字幕,亚洲人妻| 噜噜色噜噜噜久色超碰| 婷婷激情四射在线观看视频| 91国语爽死我了不卡| 欧美va不卡视频在线观看| 2021天天色天天干| 国产精品污污污久久| av天堂加勒比在线| 黄工厂精品视频在线观看| 特一级特级黄色网片| 99精品国产免费久久| 偷拍美女一区二区三区| aⅴ五十路av熟女中出| 欧美成人黄片一区二区三区| 播放日本一区二区三区电影| 人妻丝袜诱惑我操她视频| 超碰97免费人妻麻豆| 天天干天天操天天扣| 亚洲精品久久综合久| av男人天堂狠狠干| 91国内视频在线观看| 播放日本一区二区三区电影| av网址在线播放大全| 97超碰国语国产97超碰| 大鸡巴操b视频在线| 香港一级特黄大片在线播放| av黄色成人在线观看| 在线观看av观看av| 亚洲欧美激情中文字幕| 国产福利小视频二区| 一区二区三区日韩久久| 精品人妻伦一二三区久| 亚洲国产美女一区二区三区软件 | 岛国免费大片在线观看 | 狠狠鲁狠狠操天天晚上干干| 老熟妇凹凸淫老妇女av在线观看| 亚洲综合另类精品小说| 污污小视频91在线观看| rct470中文字幕在线| 天天射夜夜操狠狠干| 涩涩的视频在线观看视频| 大胆亚洲av日韩av| 老鸭窝在线观看一区| 99国产精品窥熟女精品| 老鸭窝日韩精品视频观看| 国产又色又刺激在线视频| 亚洲特黄aaaa片| 99热99re在线播放| 黄色片年轻人在线观看| 免费观看丰满少妇做受| 久久久久久久99精品|