ios-security
Scannednpx machina-cli add skill dpearson2699/swift-ios-skills/ios-security --openclawiOS Security
Guidance for handling sensitive data, authenticating users, encrypting correctly, and following Apple's security best practices on iOS.
Keychain Services
The Keychain is the ONLY correct place to store sensitive data. Never store passwords, tokens, API keys, or secrets in UserDefaults, files, or Core Data.
Storing Credentials
func saveToKeychain(account: String, data: Data, service: String) throws {
let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: account,
kSecAttrService as String: service,
kSecValueData as String: data,
kSecAttrAccessible as String: kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly
]
let status = SecItemAdd(query as CFDictionary, nil)
if status == errSecDuplicateItem {
let updateQuery: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: account,
kSecAttrService as String: service
]
let updates: [String: Any] = [kSecValueData as String: data]
let updateStatus = SecItemUpdate(updateQuery as CFDictionary, updates as CFDictionary)
guard updateStatus == errSecSuccess else {
throw KeychainError.updateFailed(updateStatus)
}
} else if status != errSecSuccess {
throw KeychainError.saveFailed(status)
}
}
Reading Credentials
func readFromKeychain(account: String, service: String) throws -> Data {
let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: account,
kSecAttrService as String: service,
kSecReturnData as String: true,
kSecMatchLimit as String: kSecMatchLimitOne
]
var result: AnyObject?
let status = SecItemCopyMatching(query as CFDictionary, &result)
guard status == errSecSuccess, let data = result as? Data else {
throw KeychainError.readFailed(status)
}
return data
}
Deleting Credentials
func deleteFromKeychain(account: String, service: String) throws {
let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: account,
kSecAttrService as String: service
]
let status = SecItemDelete(query as CFDictionary)
guard status == errSecSuccess || status == errSecItemNotFound else {
throw KeychainError.deleteFailed(status)
}
}
kSecAttrAccessible Values
| Value | When Available | Device-Only | Use For |
|---|---|---|---|
kSecAttrAccessibleWhenUnlocked | Device unlocked | No | General credentials |
kSecAttrAccessibleWhenUnlockedThisDeviceOnly | Device unlocked | Yes | Sensitive credentials |
kSecAttrAccessibleAfterFirstUnlock | After first unlock | No | Background-accessible tokens |
kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly | After first unlock | Yes | Background tokens, no backup |
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly | Passcode set + unlocked | Yes | Highest security |
Rules:
- Use
ThisDeviceOnlyvariants for sensitive data. Prevents backup/restore to other devices. - Use
AfterFirstUnlockfor tokens needed by background operations. - Use
WhenPasscodeSetThisDeviceOnlyfor most sensitive data. Item is deleted if passcode is removed. - NEVER use
kSecAttrAccessibleAlways(deprecated and insecure).
Keychain Access Groups
Share keychain items across apps from the same team:
let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: "shared-token",
kSecAttrAccessGroup as String: "TEAMID.com.company.shared"
]
Data Protection
iOS encrypts files based on their protection class:
| Class | When Available | Use For |
|---|---|---|
.complete | Only when unlocked | Sensitive user data |
.completeUnlessOpen | Open handles survive lock | Active downloads, recordings |
.completeUntilFirstUserAuthentication | After first unlock (default) | Most app data |
.none | Always | Non-sensitive, system-needed data |
// Set file protection
try data.write(to: url, options: .completeFileProtection)
// Check protection level
let attributes = try FileManager.default.attributesOfItem(atPath: path)
let protection = attributes[.protectionKey] as? FileProtectionType
Use .complete for any file containing user-sensitive data. The default
.completeUntilFirstUserAuthentication is acceptable for general app data.
CryptoKit
Use CryptoKit for all cryptographic operations. Do not use CommonCrypto or the raw Security framework for new code.
Symmetric Encryption (AES-GCM)
import CryptoKit
let key = SymmetricKey(size: .bits256)
func encrypt(_ data: Data, using key: SymmetricKey) throws -> Data {
let sealed = try AES.GCM.seal(data, using: key)
guard let combined = sealed.combined else {
throw CryptoError.sealFailed
}
return combined
}
func decrypt(_ data: Data, using key: SymmetricKey) throws -> Data {
let box = try AES.GCM.SealedBox(combined: data)
return try AES.GCM.open(box, using: key)
}
Hashing
let hash = SHA256.hash(data: data)
let hashString = hash.compactMap { String(format: "%02x", $0) }.joined()
// Also available: SHA384, SHA512
HMAC (Message Authentication)
let key = SymmetricKey(size: .bits256)
// Sign
let signature = HMAC<SHA256>.authenticationCode(for: data, using: key)
// Verify
let isValid = HMAC<SHA256>.isValidAuthenticationCode(signature, authenticating: data, using: key)
For digital signatures (P256/ECDSA), key agreement (Curve25519), ChaChaPoly,
and HKDF key derivation, see references/cryptokit-advanced.md.
Secure Enclave
For the highest security, store keys in the Secure Enclave. Keys never leave the hardware. Only P256 is supported.
// Check availability first
guard SecureEnclave.isAvailable else {
// Fall back to software-based keys
return
}
// Create access control
let accessControl = SecAccessControlCreateWithFlags(
nil,
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
[.privateKeyUsage, .biometryCurrentSet],
nil
)!
// Create a Secure Enclave key with access control
let privateKey = try SecureEnclave.P256.Signing.PrivateKey(
accessControl: accessControl
)
// Sign data (may trigger biometric prompt)
let signature = try privateKey.signature(for: data)
// Verify with the public key (no hardware access needed)
let isValid = privateKey.publicKey.isValidSignature(signature, for: data)
// Persist the key for later use
let keyData = privateKey.dataRepresentation
// Store keyData in Keychain, then restore with:
let restored = try SecureEnclave.P256.Signing.PrivateKey(
dataRepresentation: keyData
)
Biometric Authentication
LocalAuthentication (Face ID / Touch ID)
import LocalAuthentication
func authenticateWithBiometrics() async throws -> Bool {
let context = LAContext()
var error: NSError?
guard context.canEvaluatePolicy(
.deviceOwnerAuthenticationWithBiometrics, error: &error
) else {
// Biometrics not available -- fall back to passcode
if context.canEvaluatePolicy(.deviceOwnerAuthentication, error: &error) {
return try await context.evaluatePolicy(
.deviceOwnerAuthentication,
localizedReason: "Authenticate to access your account"
)
}
throw AuthError.biometricsUnavailable
}
return try await context.evaluatePolicy(
.deviceOwnerAuthenticationWithBiometrics,
localizedReason: "Authenticate to access your account"
)
}
Info.plist Requirement
You MUST include NSFaceIDUsageDescription in Info.plist:
<key>NSFaceIDUsageDescription</key>
<string>Authenticate to access your secure data</string>
Missing this key causes a crash on Face ID devices.
LAContext Configuration
let context = LAContext()
// Allow fallback to device passcode
context.localizedFallbackTitle = "Use Passcode"
// Reuse authentication for 30 seconds
context.touchIDAuthenticationAllowableReuseDuration = 30
// Detect biometry enrollment changes by comparing domain state
let currentState = context.evaluatedPolicyDomainState
// Compare currentState to a previously stored value
Biometric + Keychain
Protect keychain items with biometric access:
let access = SecAccessControlCreateWithFlags(
nil,
kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly,
.biometryCurrentSet,
nil
)!
let query: [String: Any] = [
kSecClass as String: kSecClassGenericPassword,
kSecAttrAccount as String: "auth-token",
kSecValueData as String: tokenData,
kSecAttrAccessControl as String: access,
kSecUseAuthenticationContext as String: LAContext()
]
SecAccessControl flags:
.biometryCurrentSet-- Requires biometry, invalidated if enrollment changes. Most secure..biometryAny-- Requires biometry, survives enrollment changes..userPresence-- Biometry or passcode. Most flexible.
App Transport Security (ATS)
ATS enforces HTTPS by default. Do NOT disable it.
What ATS Requires
- TLS 1.2 or later
- Forward secrecy cipher suites
- SHA-256 or better certificates
- 2048-bit or greater RSA keys (or 256-bit ECC)
Exception Domains (Last Resort)
<!-- Only for legacy servers you cannot upgrade -->
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>legacy-api.example.com</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSExceptionMinimumTLSVersion</key>
<string>TLSv1.2</string>
</dict>
</dict>
</dict>
Rules:
- NEVER set
NSAllowsArbitraryLoadsto true. Apple will reject the app. - Exception domains require justification in App Review notes.
- Use exception domains only for third-party servers you cannot control.
Certificate Pinning
Pin certificates for sensitive API connections to prevent MITM attacks.
URLSession Delegate Pinning
import CryptoKit
class PinnedSessionDelegate: NSObject, URLSessionDelegate {
// SHA-256 hash of the certificate's Subject Public Key Info
private let pinnedHashes: Set<String> = [
"base64EncodedSHA256HashOfSPKI=="
]
func urlSession(
_ session: URLSession,
didReceive challenge: URLAuthenticationChallenge
) async -> (URLSession.AuthChallengeDisposition, URLCredential?) {
guard let trust = challenge.protectionSpace.serverTrust,
let chain = SecTrustCopyCertificateChain(trust) as? [SecCertificate],
let certificate = chain.first else {
return (.cancelAuthenticationChallenge, nil)
}
guard let publicKey = SecCertificateCopyKey(certificate),
let publicKeyData = SecKeyCopyExternalRepresentation(
publicKey, nil
) as Data? else {
return (.cancelAuthenticationChallenge, nil)
}
let hash = SHA256.hash(data: publicKeyData)
let hashString = Data(hash).base64EncodedString()
if pinnedHashes.contains(hashString) {
return (.useCredential, URLCredential(trust: trust))
}
return (.cancelAuthenticationChallenge, nil)
}
}
Rules:
- Pin the public key hash, not the certificate. Certificates rotate; public keys are more stable.
- Always include at least one backup pin.
- Have a rotation plan. If all pinned keys expire, the app cannot connect.
- Consider a kill switch (remote config to disable pinning in emergency).
Secure Coding Patterns
Never Log Sensitive Data
// WRONG
logger.debug("User logged in with token: \(token)")
// CORRECT
logger.debug("User logged in successfully")
Clear Sensitive Data From Memory
var sensitiveData = Data(/* ... */)
defer {
sensitiveData.resetBytes(in: 0..<sensitiveData.count)
}
Validate All Input
// Validate URL schemes
guard let url = URL(string: input),
["https"].contains(url.scheme?.lowercased()) else {
throw SecurityError.invalidURL
}
// Prevent path traversal
let resolved = url.standardized.path
guard resolved.hasPrefix(allowedDirectory.path) else {
throw SecurityError.pathTraversal
}
Jailbreak Detection
func isDeviceCompromised() -> Bool {
let paths = [
"/Applications/Cydia.app",
"/Library/MobileSubstrate/MobileSubstrate.dylib",
"/usr/sbin/sshd",
"/etc/apt",
"/private/var/lib/apt/"
]
for path in paths {
if FileManager.default.fileExists(atPath: path) { return true }
}
// Check if app can write outside sandbox
let testPath = "/private/test_jailbreak"
do {
try "test".write(toFile: testPath, atomically: true, encoding: .utf8)
try FileManager.default.removeItem(atPath: testPath)
return true
} catch {
return false
}
}
Jailbreak detection is not foolproof. Use it as one layer, not the only layer.
Privacy Manifests
Apps and SDKs must declare data access in PrivacyInfo.xcprivacy. See
references/privacy-manifest.md for required-reason API declarations and
security-related data collection details. For submission requirements and
compliance checklists, see references/app-review-guidelines.md.
Common Mistakes
- Storing secrets in UserDefaults. Tokens, passwords, API keys must go in Keychain.
- Hardcoded secrets in source. No API keys or credentials in Swift files.
- Disabling ATS globally.
NSAllowsArbitraryLoads = trueis a rejection risk. - Logging sensitive data. Never log tokens, passwords, or API keys.
- Missing PrivacyInfo.xcprivacy. Required for all apps using required-reason APIs.
- Using CommonCrypto instead of CryptoKit. CryptoKit is safer and modern.
- Missing NSFaceIDUsageDescription. Crashes on Face ID devices.
- Using
.biometryAnywhen.biometryCurrentSetis needed. The former survives enrollment changes, which may be undesirable for high-security items. - Path traversal vulnerabilities. Always resolve and validate paths.
- Missing concurrency annotations. Ensure Keychain wrapper types are Sendable; isolate UI-facing security prompts to
@MainActor.
Review Checklist
- Secrets in Keychain, not UserDefaults or files; no hardcoded credentials
- Correct
kSecAttrAccessiblevalue;ThisDeviceOnlyfor non-backup data - File protection class set for sensitive files (
.complete) - CryptoKit for encryption (not CommonCrypto); 256-bit symmetric keys
- Keys stored in Keychain or Secure Enclave
- Biometric auth with fallback;
NSFaceIDUsageDescriptionin Info.plist - Correct
SecAccessControlflags;LAContextconfigured - HTTPS enforced; no
NSAllowsArbitraryLoads; cert pinning for sensitive APIs - PrivacyInfo.xcprivacy present; all required-reason APIs declared
- No sensitive data in logs; Data cleared after use; URLs/paths validated
Apple Developer Documentation
The apple-docs MCP server provides access to Apple docs. Use searchAppleDocumentation
for Security, CryptoKit, and LocalAuthentication APIs, or fetchAppleDocumentation
with paths like /documentation/CryptoKit.
Source
git clone https://github.com/dpearson2699/swift-ios-skills/blob/main/skills/ios-security/SKILL.mdView on GitHub Overview
This skill covers iOS security best practices for protecting sensitive data, authenticating users, and encrypting information. It emphasizes Keychain Services, Secure Enclave key storage, CryptoKit encryption, biometric authentication, and network safeguards such as ATS and certificate pinning to build secure iOS apps.
How This Skill Works
Sensitive data should be stored in the Keychain using SecItemAdd, SecItemCopyMatching, and SecItemDelete. Cryptography is performed with CryptoKit and keys can be stored in Secure Enclave, while LAContext configures Face ID or Touch ID. Network security is enforced through App Transport Security settings and certificate pinning.
When to Use It
- Implementing app security features and protecting credentials
- Auditing privacy manifests and network policies for secure data handling
- Configuring App Transport Security and certificate pinning for trusted connections
- Securing keychain access and integrating biometric authentication
- Encrypting local data with CryptoKit and managing keys in Secure Enclave
Quick Start
- Step 1: Add a Keychain wrapper using SecItemAdd, SecItemCopyMatching, and SecItemDelete for credentials
- Step 2: Set up biometric prompts with LAContext and authenticationPolicy for deviceOwnerAuthenticationWithBiometrics
- Step 3: Generate CryptoKit keys and encrypt data, storing keys in Secure Enclave when available
Best Practices
- Store sensitive data only in the Keychain; avoid UserDefaults, files, or Core Data for secrets
- Use kSecAttrAccessibleWhenPasscodeSetThisDeviceOnly for highly sensitive data and kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly for background access
- Use AfterFirstUnlock variants for data needed by background operations and WhenPasscodeSetThisDeviceOnly for most sensitive data
- Keep encryption keys in Secure Enclave and encrypt data with CryptoKit
- Configure ATS and implement certificate pinning to protect network traffic
Example Use Cases
- Store API tokens in the Keychain with ThisDeviceOnly and AfterFirstUnlockThisDeviceOnly
- Gate access to sensitive sections using Face ID or Touch ID via LAContext
- Encrypt user data with CryptoKit and protect keys in Secure Enclave
- Audit Info.plist to ensure ATS is configured and legacy exceptions removed
- Implement certificate pinning for all API endpoints to prevent MITM