IOS開發之——keychain使用介紹__IOS

來源:互聯網
上載者:User

 iOS的keychain服務提供了一種安全的儲存私密資訊(密碼,序號,認證等)的方式。每個ios程式都有一個獨立的keychain儲存。從ios 3.0開始,跨程式分享keychain變得可行。

使用蘋果官方發布的KeychainItemWrapper或者SFHFKeychainUtils很方便。

蘋果已經有現成的類封裝好了keychain,KeychainItemWrapper.h和KeychainItemWrapper.m檔案,可以在GenericKeychain執行個體裡找到。

下面就使用keychain來實現存取使用者名稱和密碼。

代碼如下:

CHKeychain.h

[cpp]  view plain copy #import <Foundation/Foundation.h>   #import <Security/Security.h>         @interface CHKeychain : NSObject      + (void)save:(NSString *)service data:(id)data;   + (id)load:(NSString *)service;   + (void)delete:(NSString *)service;         @end  

CHKeychain.m

[cpp]  view plain copy #import "CHKeychain.h"      @implementation CHKeychain   + (NSMutableDictionary *)getKeychainQuery:(NSString *)service {       return [NSMutableDictionary dictionaryWithObjectsAndKeys:               (id)kSecClassGenericPassword,(id)kSecClass,               service, (id)kSecAttrService,               service, (id)kSecAttrAccount,               (id)kSecAttrAccessibleAfterFirstUnlock,(id)kSecAttrAccessible,               nil];   }      + (void)save:(NSString *)service data:(id)data {       //Get search dictionary       NSMutableDictionary *keychainQuery = [self getKeychainQuery:service];       //Delete old item before add new item       SecItemDelete((CFDictionaryRef)keychainQuery);       //Add new object to search dictionary(Attention:the data format)       [keychainQuery setObject:[NSKeyedArchiver archivedDataWithRootObject:data] forKey:(id)kSecValueData];       //Add item to keychain with the search dictionary       SecItemAdd((CFDictionaryRef)keychainQuery, NULL);   }      + (id)load:(NSString *)service {       id ret = nil;       NSMutableDictionary *keychainQuery = [self getKeychainQuery:service];       //Configure the search setting       //Since in our simple case we are expecting only a single attribute to be returned (the password) we can set the attribute kSecReturnData to kCFBooleanTrue       [keychainQuery setObject:(id)kCFBooleanTrue forKey:(id)kSecReturnData];       [keychainQuery setObject:(id)kSecMatchLimitOne forKey:(id)kSecMatchLimit];       CFDataRef keyData = NULL;       if (SecItemCopyMatching((CFDictionaryRef)keychainQuery, (CFTypeRef *)&keyData) == noErr) {           @try {               ret = [NSKeyedUnarchiver unarchiveObjectWithData:(NSData *)keyData];           } @catch (NSException *e) {               NSLog(@"Unarchive of %@ failed: %@", service, e);           } @finally {   }       }       if (keyData)        CFRelease(keyData);       return ret;   }  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.