iOS - Swift
[iOS/Swift] Keychain으로 안전하게 데이터 저장/반환/삭제하기 (pod 'SwiftKeychainWrapper')
개발자 수니
2022. 6. 10. 22:22
728x90
반응형
📌 이번 글은
Keychain으로 안전한 데이터를 저장하는 방법입니다.
이 글에서는 SwiftKeychainWrapper 라이브러리를 사용할 예정입니다.
Keychain
앱에서 사용자 비밀번호, 토큰과 같은 민감함 정보를 저장해야 할 때, 안전하게 저장할 필요가 있습니다.
iOS는 암호화된 컨테이너로 Keychain이 존재하며, 민감함 데이터를 암호화하고 복호화하며 재사용하는 행위를 보다 쉽고 안전하게 사용할 수 있게끔 Keychain Services API를 제공합니다.
SwiftKeychainWrapper
Keychain Services API를 보다 편하고 안전하게 이용할 수 있게끔 해주는 라이브러리 입니다.
SwiftKeychainWrapper 설치
- podfile에 아래 코드 추가 -> 터미널에서 pod install 또는 pod update
pod 'SwiftKeychainWrapper'
Cocoa Pods 참고 포스팅
사용할 Swift 파일에 import
import SwiftKeychainWrapper
Keychain 저장
// KeychainWrapper.standard.set("저장할 값", forKey: "키")
KeychainWrapper.standard.set("12349891", forKey: "authorization")
Keychain 반환
// KeychainWrapper.standard.string(forKey: "반환할 값의 키")
KeychainWrapper.standard.string(forKey: "authorization")
Keychain 삭제
// KeychainWrapper.standard.removeObject(forKey: "삭제할 키")
KeychainWrapper.standard.removeObject(forKey: "authorization")
👩🏻💻 응용
- 공통 클래스에 Keychain 반환/저장 공용 함수 정의
class Common {
/**
# (E) KeychainKey
- Authors: suni
*/
enum KeychainKey: String {
case authorization
}
/**
# setKeychain
- parameters:
- value : 저장할 값
- keychainKey : 저장할 value의 Key - (E) Common.KeychainKey
- Authors: suni
- Note: 키체인에 값을 저장하는 공용 함수
*/
static func setKeychain(_ value: String, forKey keychainKey: KeychainKey) {
KeychainWrapper.standard.set(value, forKey: keychainKey.rawValue)
}
/**
# getKeychainValue
- parameters:
- keychainKey : 반환할 value의 Key - (E) Common.KeychainKey
- Authors: suni
- Note: 키체인 값을 반환하는 공용 함수
*/
static func getKeychainValue(forKey keychainKey: KeychainKey) -> String? {
return KeychainWrapper.standard.string(forKey: keychainKey.rawValue)
}
/**
# removeKeychain
- parameters:
- keychainKey : 삭제할 value의 Key - (E) Common.KeychainKey
- Authors: suni
- Note: 키체인 값을 삭제하는 공용 함수
*/
static func removeKeychain(forKey keychainKey: KeychainKey) {
KeychainWrapper.standard.removeObject(forKey: keychainKey.rawValue)
}
}
🙋🏻♀️ 참고
728x90
반응형