Skip to content

Instantly share code, notes, and snippets.

View CQH's full-sized avatar

Carleton Hall CQH

  • Arch Capital Services
  • Atlanta, GA
View GitHub Profile
@s-aska
s-aska / Keychain.swift
Last active September 16, 2022 03:37
Swift Keychain class ( supported Xcode 6.0.1 )
import UIKit
import Security
class Keychain {
class func save(key: String, data: NSData) -> Bool {
let query = [
kSecClass as String : kSecClassGenericPassword as String,
kSecAttrAccount as String : key,
kSecValueData as String : data ]
@futureperfect
futureperfect / README
Last active September 4, 2019 03:16
Collection of small, interesting programming exercises
Hey,
This is collection of small, interesting interview practice problems.
Hope you get some utility out of this.
Erik