├── .gitignore ├── Encryption.xcodeproj └── project.pbxproj ├── Encryption ├── Assets.xcassets │ ├── AccentColor.colorset │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Config.swift ├── Encryption.entitlements ├── EncryptionApp.swift ├── Info.plist ├── Models │ └── Contact.swift ├── ViewModels │ └── ViewModel.swift └── Views │ ├── AddContactView.swift │ └── ContentView.swift ├── EncryptionTests ├── EncryptionTests.swift └── Info.plist ├── LICENSE.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/.gitignore -------------------------------------------------------------------------------- /Encryption.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Encryption/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Encryption/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Encryption/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Encryption/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Config.swift -------------------------------------------------------------------------------- /Encryption/Encryption.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Encryption.entitlements -------------------------------------------------------------------------------- /Encryption/EncryptionApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/EncryptionApp.swift -------------------------------------------------------------------------------- /Encryption/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Info.plist -------------------------------------------------------------------------------- /Encryption/Models/Contact.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Models/Contact.swift -------------------------------------------------------------------------------- /Encryption/ViewModels/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/ViewModels/ViewModel.swift -------------------------------------------------------------------------------- /Encryption/Views/AddContactView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Views/AddContactView.swift -------------------------------------------------------------------------------- /Encryption/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/Encryption/Views/ContentView.swift -------------------------------------------------------------------------------- /EncryptionTests/EncryptionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/EncryptionTests/EncryptionTests.swift -------------------------------------------------------------------------------- /EncryptionTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/EncryptionTests/Info.plist -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple/sample-cloudkit-encryption/HEAD/README.md --------------------------------------------------------------------------------