Skillshub ios-security

Standards for Keychain, Biometrics, and Data Protection. Use when implementing Keychain storage, Face ID/Touch ID, or data protection in iOS. (triggers: **/*.swift, SecItemAdd, kSecClassGenericPassword, LAContext, LocalAuthentication)

install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/HoangNguyen0403/agent-skills-standard/ios-security" ~/.claude/skills/comeonoliver-skillshub-ios-security && rm -rf "$T"
manifest: skills/HoangNguyen0403/agent-skills-standard/ios-security/SKILL.md
source content

iOS Security Standards

Priority: P0 (CRITICAL)

Implementation Guidelines

Key Storage

  • Keychain: Use for Auth tokens, passwords, and PII. Never store in
    UserDefaults
    .
  • SecItem API: Use
    SecItemAdd
    ,
    SecItemUpdate
    , and
    SecItemDelete
    for persistent secure storage. Use
    kSecClassGenericPassword
    for tokens.
  • Biometrics: Use
    LocalAuthentication
    for Face ID or Touch ID. Use
    LAContext
    and verify availability with
    canEvaluatePolicy
    before evaluation.

Data Protection

  • File Encryption: Use
    Data.WritingOptions.completeFileProtection
    when saving files to disk.
  • App Sandboxing: Respect the sandbox; do not attempt to access files outside of your container.
  • Sensitive Data: Avoid storing PII in unprotected files.

Network Security

  • ATS: Don't disable App Transport Security (ATS) globally in
    Info.plist
    . In-transport encryption is mandatory.
  • SSL Pinning: Use ServerTrustManager or TrustKit for backend-critical applications to prevent MITM attacks.

Anti-Patterns

  • No secrets in UserDefaults: Always use Keychain.
  • No unhandled LAError: Check for userCancel, authenticationFailed, etc.
  • No PII/token logging: Ensure sensitive logs are stripped in Release builds.

References

Related Topics

  • common/security-standards
  • architecture