Created
December 20, 2014 14:49
-
-
Save nafu/c22fc9bd7535f779f0f2 to your computer and use it in GitHub Desktop.
Keychain sample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Security | |
public class Keychain { | |
public class func save(str: String?, forKey: String) -> Bool { | |
if str == nil { | |
return false | |
} | |
let dataFromString: NSData = str!.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword as String, | |
kSecAttrAccount as String: forKey, | |
kSecValueData as String: dataFromString | |
] | |
SecItemDelete(query as CFDictionaryRef) | |
let status: OSStatus = SecItemAdd(query as CFDictionaryRef, nil) | |
return status == noErr | |
} | |
public class func load(key: String) -> String? { | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword, | |
kSecAttrAccount as String: key, | |
kSecReturnData as String: kCFBooleanTrue, | |
kSecMatchLimit as String: kSecMatchLimitOne | |
] | |
var dataTypeRef: Unmanaged<AnyObject>? | |
let status: OSStatus = SecItemCopyMatching(query, &dataTypeRef) | |
let opaque = dataTypeRef?.toOpaque() | |
if let op = opaque? { | |
let retrievedData = Unmanaged<NSData>.fromOpaque(op).takeUnretainedValue() | |
return NSString(data: retrievedData, encoding: NSUTF8StringEncoding) | |
} | |
return nil | |
} | |
public class func delete(key: String) -> Bool { | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword, | |
kSecAttrAccount as String: key | |
] | |
let status: OSStatus = SecItemDelete(query as CFDictionaryRef) | |
return status == noErr | |
} | |
public class func clear() -> Bool { | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword | |
] | |
let status: OSStatus = SecItemDelete(query as CFDictionaryRef) | |
return status == noErr | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Security | |
let serviceName = "YOUR_SERVICE_NAME" | |
public class Keychain { | |
public class func save(str: String?, forKey: String) -> Bool { | |
if str == nil { | |
return false | |
} | |
let dataFromString: NSData = str!.dataUsingEncoding(NSUTF8StringEncoding, allowLossyConversion: false)! | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword as String, | |
kSecAttrAccount as String: forKey, | |
kSecValueData as String: dataFromString | |
] | |
SecItemDelete(query as CFDictionaryRef) | |
let status: OSStatus = SecItemAdd(query as CFDictionaryRef, nil) | |
return status == noErr | |
} | |
public class func load(key: String) -> String? { | |
// if it's empty("") or nil this return nil | |
return SSKeychain.passwordForService(serviceName, account: key) | |
} | |
public class func delete(key: String) -> Bool { | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword, | |
kSecAttrAccount as String: key | |
] | |
let status: OSStatus = SecItemDelete(query as CFDictionaryRef) | |
return status == noErr | |
} | |
public class func clear() -> Bool { | |
let query = [ | |
kSecClass as String: kSecClassGenericPassword | |
] | |
let status: OSStatus = SecItemDelete(query as CFDictionaryRef) | |
return status == noErr | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment