├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── Bug Report.yml │ ├── Feature Request.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── actions │ ├── setup │ │ └── action.yml │ └── test │ │ └── action.yml ├── dependabot.yml ├── stale.yml └── workflows │ └── main.yml ├── .gitignore ├── .semgrepignore ├── .shiprc ├── .swiftlint.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── EXAMPLES.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Package.swift ├── README.md ├── SimpleKeychain.podspec ├── SimpleKeychain.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── SimpleKeychain-iOS.xcscheme │ ├── SimpleKeychain-macOS.xcscheme │ ├── SimpleKeychain-tvOS.xcscheme │ ├── SimpleKeychain-visionOS.xcscheme │ ├── SimpleKeychain-watchOS.xcscheme │ └── SimpleKeychainApp.xcscheme ├── SimpleKeychain ├── Accessibility.swift ├── Info.plist ├── SimpleKeychain.swift └── SimpleKeychainError.swift ├── SimpleKeychainApp ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.xib ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json └── Info.plist ├── SimpleKeychainTests ├── AccessibilitySpec.swift ├── Info.plist ├── SimpleKeychainErrorSpec.swift └── SimpleKeychainSpec.swift ├── V1_MIGRATION_GUIDE.md ├── codecov.yml ├── docs ├── css │ ├── 866.60f074fd.css │ ├── 989.4f123103.css │ ├── documentation-topic.99224ad2.css │ ├── index.3a335429.css │ ├── topic.4be8f56d.css │ └── tutorials-overview.7942d777.css ├── data │ └── documentation │ │ ├── simplekeychain.json │ │ └── simplekeychain │ │ ├── accessibility.json │ │ ├── accessibility │ │ ├── !=(_:_:).json │ │ ├── afterfirstunlock.json │ │ ├── afterfirstunlockthisdeviceonly.json │ │ ├── equatable-implementations.json │ │ ├── hash(into:).json │ │ ├── hashvalue.json │ │ ├── init(rawvalue:).json │ │ ├── rawrepresentable-implementations.json │ │ ├── rawvalue.json │ │ ├── whenpasscodesetthisdeviceonly.json │ │ ├── whenunlocked.json │ │ └── whenunlockedthisdeviceonly.json │ │ ├── simplekeychain.json │ │ ├── simplekeychain │ │ ├── data(forkey:).json │ │ ├── deleteall().json │ │ ├── deleteitem(forkey:).json │ │ ├── hasitem(forkey:).json │ │ ├── init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:).json │ │ ├── keys().json │ │ ├── set(_:forkey:)-618u7.json │ │ ├── set(_:forkey:)-n98i.json │ │ └── string(forkey:).json │ │ ├── simplekeychainerror.json │ │ └── simplekeychainerror │ │ ├── !=(_:_:).json │ │ ├── ==(_:_:).json │ │ ├── authfailed.json │ │ ├── debugdescription.json │ │ ├── decodefailed.json │ │ ├── duplicateitem.json │ │ ├── equatable-implementations.json │ │ ├── errordescription.json │ │ ├── failurereason.json │ │ ├── helpanchor.json │ │ ├── interactionnotallowed.json │ │ ├── invalidparameters.json │ │ ├── itemnotavailable.json │ │ ├── itemnotfound.json │ │ ├── localizeddescription.json │ │ ├── localizederror-implementations.json │ │ ├── missingentitlement.json │ │ ├── operationnotimplemented.json │ │ ├── other.json │ │ ├── recoverysuggestion.json │ │ ├── status.json │ │ ├── unknown.json │ │ ├── usercanceled.json │ │ ├── ~=(_:_:)-41lv0.json │ │ └── ~=(_:_:)-7uptb.json ├── developer-og-twitter.jpg ├── developer-og.jpg ├── documentation │ └── simplekeychain │ │ ├── accessibility │ │ ├── !=(_:_:) │ │ │ └── index.html │ │ ├── afterfirstunlock │ │ │ └── index.html │ │ ├── afterfirstunlockthisdeviceonly │ │ │ └── index.html │ │ ├── equatable-implementations │ │ │ └── index.html │ │ ├── hash(into:) │ │ │ └── index.html │ │ ├── hashvalue │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(rawvalue:) │ │ │ └── index.html │ │ ├── rawrepresentable-implementations │ │ │ └── index.html │ │ ├── rawvalue │ │ │ └── index.html │ │ ├── whenpasscodesetthisdeviceonly │ │ │ └── index.html │ │ ├── whenunlocked │ │ │ └── index.html │ │ └── whenunlockedthisdeviceonly │ │ │ └── index.html │ │ ├── index.html │ │ ├── simplekeychain │ │ ├── data(forkey:) │ │ │ └── index.html │ │ ├── deleteall() │ │ │ └── index.html │ │ ├── deleteitem(forkey:) │ │ │ └── index.html │ │ ├── hasitem(forkey:) │ │ │ └── index.html │ │ ├── index.html │ │ ├── init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:) │ │ │ └── index.html │ │ ├── keys() │ │ │ └── index.html │ │ ├── set(_:forkey:)-618u7 │ │ │ └── index.html │ │ ├── set(_:forkey:)-n98i │ │ │ └── index.html │ │ └── string(forkey:) │ │ │ └── index.html │ │ └── simplekeychainerror │ │ ├── !=(_:_:) │ │ └── index.html │ │ ├── ==(_:_:) │ │ └── index.html │ │ ├── authfailed │ │ └── index.html │ │ ├── debugdescription │ │ └── index.html │ │ ├── decodefailed │ │ └── index.html │ │ ├── duplicateitem │ │ └── index.html │ │ ├── equatable-implementations │ │ └── index.html │ │ ├── errordescription │ │ └── index.html │ │ ├── failurereason │ │ └── index.html │ │ ├── helpanchor │ │ └── index.html │ │ ├── index.html │ │ ├── interactionnotallowed │ │ └── index.html │ │ ├── invalidparameters │ │ └── index.html │ │ ├── itemnotavailable │ │ └── index.html │ │ ├── itemnotfound │ │ └── index.html │ │ ├── localizeddescription │ │ └── index.html │ │ ├── localizederror-implementations │ │ └── index.html │ │ ├── missingentitlement │ │ └── index.html │ │ ├── operationnotimplemented │ │ └── index.html │ │ ├── other │ │ └── index.html │ │ ├── recoverysuggestion │ │ └── index.html │ │ ├── status │ │ └── index.html │ │ ├── unknown │ │ └── index.html │ │ ├── usercanceled │ │ └── index.html │ │ ├── ~=(_:_:)-41lv0 │ │ └── index.html │ │ └── ~=(_:_:)-7uptb │ │ └── index.html ├── favicon.ico ├── favicon.svg ├── img │ ├── added-icon.832a5d2c.svg │ ├── deprecated-icon.7bf1740a.svg │ └── modified-icon.efb2697d.svg ├── index.html ├── index │ ├── availability.index │ ├── data.mdb │ ├── index.json │ └── navigator.index ├── js │ ├── 104.fe5974d0.js │ ├── 337.274a8ccc.js │ ├── 842.a7e2003a.js │ ├── 866.7ae93681.js │ ├── chunk-vendors.bdb7cbba.js │ ├── documentation-topic.29bf51a3.js │ ├── highlight-js-bash-js.702f0c5c.js │ ├── highlight-js-c-js.063069d3.js │ ├── highlight-js-cpp-js.458a9ae4.js │ ├── highlight-js-css-js.bfc4251f.js │ ├── highlight-js-custom-markdown.78c9f6ed.js │ ├── highlight-js-custom-swift.738731d1.js │ ├── highlight-js-diff-js.4db9a783.js │ ├── highlight-js-http-js.f78e83c2.js │ ├── highlight-js-java-js.4fe21e94.js │ ├── highlight-js-javascript-js.dfc9d16d.js │ ├── highlight-js-json-js.2a1856ba.js │ ├── highlight-js-llvm-js.26121771.js │ ├── highlight-js-markdown-js.a2f456af.js │ ├── highlight-js-objectivec-js.74dea052.js │ ├── highlight-js-perl-js.da6eda82.js │ ├── highlight-js-php-js.c458ffa4.js │ ├── highlight-js-python-js.60354774.js │ ├── highlight-js-ruby-js.7272231f.js │ ├── highlight-js-scss-js.adcd11a2.js │ ├── highlight-js-shell-js.0ad5b20f.js │ ├── highlight-js-swift-js.bdd5bff5.js │ ├── highlight-js-xml-js.0d78f903.js │ ├── index.0d775bb6.js │ ├── topic.37e71576.js │ └── tutorials-overview.acb09e8a.js └── metadata.json ├── fastlane ├── Fastfile ├── Pluginfile └── README.md ├── opslevel.yml ├── tvOSTestHost ├── AppDelegate.swift ├── Assets.xcassets │ ├── App Icon & Top Shelf Image.brandassets │ │ ├── App Icon - App Store.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── App Icon.imagestack │ │ │ ├── Back.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Front.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ └── Middle.imagestacklayer │ │ │ │ ├── Content.imageset │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── Top Shelf Image Wide.imageset │ │ │ └── Contents.json │ │ └── Top Shelf Image.imageset │ │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift └── tvOSTestHost.entitlements └── visionOSTestHost ├── Assets.xcassets ├── AppIcon.solidimagestack │ ├── Back.solidimagestacklayer │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Contents.json │ ├── Front.solidimagestacklayer │ │ ├── Content.imageset │ │ │ └── Contents.json │ │ └── Contents.json │ └── Middle.solidimagestacklayer │ │ ├── Content.imageset │ │ └── Contents.json │ │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist └── visionOSTestHostApp.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @auth0/project-dx-sdks-engineer-codeowner 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Bug Report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/ISSUE_TEMPLATE/Bug Report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/Feature Request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/ISSUE_TEMPLATE/Feature Request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/actions/test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/actions/test/action.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.gitignore -------------------------------------------------------------------------------- /.semgrepignore: -------------------------------------------------------------------------------- 1 | docs/ 2 | SimpleKeychainTests/ 3 | -------------------------------------------------------------------------------- /.shiprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.shiprc -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /EXAMPLES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/EXAMPLES.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/README.md -------------------------------------------------------------------------------- /SimpleKeychain.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.podspec -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-iOS.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-macOS.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-tvOS.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-visionOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-visionOS.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-watchOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychain-watchOS.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychainApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain.xcodeproj/xcshareddata/xcschemes/SimpleKeychainApp.xcscheme -------------------------------------------------------------------------------- /SimpleKeychain/Accessibility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain/Accessibility.swift -------------------------------------------------------------------------------- /SimpleKeychain/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain/Info.plist -------------------------------------------------------------------------------- /SimpleKeychain/SimpleKeychain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain/SimpleKeychain.swift -------------------------------------------------------------------------------- /SimpleKeychain/SimpleKeychainError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychain/SimpleKeychainError.swift -------------------------------------------------------------------------------- /SimpleKeychainApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainApp/AppDelegate.swift -------------------------------------------------------------------------------- /SimpleKeychainApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /SimpleKeychainApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SimpleKeychainApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainApp/Info.plist -------------------------------------------------------------------------------- /SimpleKeychainTests/AccessibilitySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainTests/AccessibilitySpec.swift -------------------------------------------------------------------------------- /SimpleKeychainTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainTests/Info.plist -------------------------------------------------------------------------------- /SimpleKeychainTests/SimpleKeychainErrorSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainTests/SimpleKeychainErrorSpec.swift -------------------------------------------------------------------------------- /SimpleKeychainTests/SimpleKeychainSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/SimpleKeychainTests/SimpleKeychainSpec.swift -------------------------------------------------------------------------------- /V1_MIGRATION_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/V1_MIGRATION_GUIDE.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/codecov.yml -------------------------------------------------------------------------------- /docs/css/866.60f074fd.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/866.60f074fd.css -------------------------------------------------------------------------------- /docs/css/989.4f123103.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/989.4f123103.css -------------------------------------------------------------------------------- /docs/css/documentation-topic.99224ad2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/documentation-topic.99224ad2.css -------------------------------------------------------------------------------- /docs/css/index.3a335429.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/index.3a335429.css -------------------------------------------------------------------------------- /docs/css/topic.4be8f56d.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/topic.4be8f56d.css -------------------------------------------------------------------------------- /docs/css/tutorials-overview.7942d777.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/css/tutorials-overview.7942d777.css -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/afterfirstunlock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/afterfirstunlock.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/afterfirstunlockthisdeviceonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/afterfirstunlockthisdeviceonly.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/hash(into:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/hash(into:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/hashvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/hashvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/init(rawvalue:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/init(rawvalue:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/rawrepresentable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/rawrepresentable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/rawvalue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/rawvalue.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/whenpasscodesetthisdeviceonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/whenpasscodesetthisdeviceonly.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/whenunlocked.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/whenunlocked.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/accessibility/whenunlockedthisdeviceonly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/accessibility/whenunlockedthisdeviceonly.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/data(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/data(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/deleteall().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/deleteall().json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/deleteitem(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/deleteitem(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/hasitem(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/hasitem(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/keys().json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/keys().json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/set(_:forkey:)-618u7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/set(_:forkey:)-618u7.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/set(_:forkey:)-n98i.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/set(_:forkey:)-n98i.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychain/string(forkey:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychain/string(forkey:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/!=(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/!=(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/==(_:_:).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/==(_:_:).json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/authfailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/authfailed.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/debugdescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/debugdescription.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/decodefailed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/decodefailed.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/duplicateitem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/duplicateitem.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/equatable-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/equatable-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/errordescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/errordescription.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/failurereason.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/failurereason.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/helpanchor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/helpanchor.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/interactionnotallowed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/interactionnotallowed.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/invalidparameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/invalidparameters.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/itemnotavailable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/itemnotavailable.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/itemnotfound.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/itemnotfound.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/localizeddescription.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/localizeddescription.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/localizederror-implementations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/localizederror-implementations.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/missingentitlement.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/missingentitlement.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/operationnotimplemented.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/operationnotimplemented.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/other.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/other.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/recoverysuggestion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/recoverysuggestion.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/status.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/unknown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/unknown.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/usercanceled.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/usercanceled.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-41lv0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-41lv0.json -------------------------------------------------------------------------------- /docs/data/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-7uptb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/data/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-7uptb.json -------------------------------------------------------------------------------- /docs/developer-og-twitter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/developer-og-twitter.jpg -------------------------------------------------------------------------------- /docs/developer-og.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/developer-og.jpg -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/afterfirstunlock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/afterfirstunlock/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/afterfirstunlockthisdeviceonly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/afterfirstunlockthisdeviceonly/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/hash(into:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/hash(into:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/hashvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/hashvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/init(rawvalue:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/init(rawvalue:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/rawrepresentable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/rawrepresentable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/rawvalue/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/rawvalue/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/whenpasscodesetthisdeviceonly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/whenpasscodesetthisdeviceonly/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/whenunlocked/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/whenunlocked/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/accessibility/whenunlockedthisdeviceonly/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/accessibility/whenunlockedthisdeviceonly/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/data(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/data(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/deleteall()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/deleteall()/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/deleteitem(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/deleteitem(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/hasitem(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/hasitem(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/init(service:accessgroup:accessibility:accesscontrolflags:context:synchronizable:attributes:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/keys()/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/keys()/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/set(_:forkey:)-618u7/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/set(_:forkey:)-618u7/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/set(_:forkey:)-n98i/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/set(_:forkey:)-n98i/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychain/string(forkey:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychain/string(forkey:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/!=(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/!=(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/==(_:_:)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/==(_:_:)/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/authfailed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/authfailed/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/debugdescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/debugdescription/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/decodefailed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/decodefailed/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/duplicateitem/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/duplicateitem/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/equatable-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/equatable-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/errordescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/errordescription/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/failurereason/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/failurereason/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/helpanchor/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/helpanchor/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/interactionnotallowed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/interactionnotallowed/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/invalidparameters/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/invalidparameters/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/itemnotavailable/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/itemnotavailable/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/itemnotfound/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/itemnotfound/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/localizeddescription/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/localizeddescription/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/localizederror-implementations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/localizederror-implementations/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/missingentitlement/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/missingentitlement/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/operationnotimplemented/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/operationnotimplemented/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/other/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/other/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/recoverysuggestion/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/recoverysuggestion/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/status/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/status/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/unknown/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/unknown/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/usercanceled/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/usercanceled/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-41lv0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-41lv0/index.html -------------------------------------------------------------------------------- /docs/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-7uptb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/documentation/simplekeychain/simplekeychainerror/~=(_:_:)-7uptb/index.html -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/favicon.svg -------------------------------------------------------------------------------- /docs/img/added-icon.832a5d2c.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/img/added-icon.832a5d2c.svg -------------------------------------------------------------------------------- /docs/img/deprecated-icon.7bf1740a.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/img/deprecated-icon.7bf1740a.svg -------------------------------------------------------------------------------- /docs/img/modified-icon.efb2697d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/img/modified-icon.efb2697d.svg -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/index/availability.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/index/availability.index -------------------------------------------------------------------------------- /docs/index/data.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/index/data.mdb -------------------------------------------------------------------------------- /docs/index/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/index/index.json -------------------------------------------------------------------------------- /docs/index/navigator.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/index/navigator.index -------------------------------------------------------------------------------- /docs/js/104.fe5974d0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/104.fe5974d0.js -------------------------------------------------------------------------------- /docs/js/337.274a8ccc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/337.274a8ccc.js -------------------------------------------------------------------------------- /docs/js/842.a7e2003a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/842.a7e2003a.js -------------------------------------------------------------------------------- /docs/js/866.7ae93681.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/866.7ae93681.js -------------------------------------------------------------------------------- /docs/js/chunk-vendors.bdb7cbba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/chunk-vendors.bdb7cbba.js -------------------------------------------------------------------------------- /docs/js/documentation-topic.29bf51a3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/documentation-topic.29bf51a3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-bash-js.702f0c5c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-bash-js.702f0c5c.js -------------------------------------------------------------------------------- /docs/js/highlight-js-c-js.063069d3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-c-js.063069d3.js -------------------------------------------------------------------------------- /docs/js/highlight-js-cpp-js.458a9ae4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-cpp-js.458a9ae4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-css-js.bfc4251f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-css-js.bfc4251f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-markdown.78c9f6ed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-custom-markdown.78c9f6ed.js -------------------------------------------------------------------------------- /docs/js/highlight-js-custom-swift.738731d1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-custom-swift.738731d1.js -------------------------------------------------------------------------------- /docs/js/highlight-js-diff-js.4db9a783.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-diff-js.4db9a783.js -------------------------------------------------------------------------------- /docs/js/highlight-js-http-js.f78e83c2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-http-js.f78e83c2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-java-js.4fe21e94.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-java-js.4fe21e94.js -------------------------------------------------------------------------------- /docs/js/highlight-js-javascript-js.dfc9d16d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-javascript-js.dfc9d16d.js -------------------------------------------------------------------------------- /docs/js/highlight-js-json-js.2a1856ba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-json-js.2a1856ba.js -------------------------------------------------------------------------------- /docs/js/highlight-js-llvm-js.26121771.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-llvm-js.26121771.js -------------------------------------------------------------------------------- /docs/js/highlight-js-markdown-js.a2f456af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-markdown-js.a2f456af.js -------------------------------------------------------------------------------- /docs/js/highlight-js-objectivec-js.74dea052.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-objectivec-js.74dea052.js -------------------------------------------------------------------------------- /docs/js/highlight-js-perl-js.da6eda82.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-perl-js.da6eda82.js -------------------------------------------------------------------------------- /docs/js/highlight-js-php-js.c458ffa4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-php-js.c458ffa4.js -------------------------------------------------------------------------------- /docs/js/highlight-js-python-js.60354774.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-python-js.60354774.js -------------------------------------------------------------------------------- /docs/js/highlight-js-ruby-js.7272231f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-ruby-js.7272231f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-scss-js.adcd11a2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-scss-js.adcd11a2.js -------------------------------------------------------------------------------- /docs/js/highlight-js-shell-js.0ad5b20f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-shell-js.0ad5b20f.js -------------------------------------------------------------------------------- /docs/js/highlight-js-swift-js.bdd5bff5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-swift-js.bdd5bff5.js -------------------------------------------------------------------------------- /docs/js/highlight-js-xml-js.0d78f903.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/highlight-js-xml-js.0d78f903.js -------------------------------------------------------------------------------- /docs/js/index.0d775bb6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/index.0d775bb6.js -------------------------------------------------------------------------------- /docs/js/topic.37e71576.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/topic.37e71576.js -------------------------------------------------------------------------------- /docs/js/tutorials-overview.acb09e8a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/js/tutorials-overview.acb09e8a.js -------------------------------------------------------------------------------- /docs/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/docs/metadata.json -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/fastlane/Pluginfile -------------------------------------------------------------------------------- /fastlane/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/fastlane/README.md -------------------------------------------------------------------------------- /opslevel.yml: -------------------------------------------------------------------------------- 1 | --- 2 | version: 1 3 | repository: 4 | owner: dx_sdks 5 | tags: 6 | -------------------------------------------------------------------------------- /tvOSTestHost/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/AppDelegate.swift -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - App Store.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image Wide.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tvOSTestHost/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tvOSTestHost/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /tvOSTestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/Info.plist -------------------------------------------------------------------------------- /tvOSTestHost/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/ViewController.swift -------------------------------------------------------------------------------- /tvOSTestHost/tvOSTestHost.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/tvOSTestHost/tvOSTestHost.entitlements -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Back.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Front.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/AppIcon.solidimagestack/Middle.solidimagestacklayer/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /visionOSTestHost/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/ContentView.swift -------------------------------------------------------------------------------- /visionOSTestHost/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/Info.plist -------------------------------------------------------------------------------- /visionOSTestHost/visionOSTestHostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/auth0/SimpleKeychain/HEAD/visionOSTestHost/visionOSTestHostApp.swift --------------------------------------------------------------------------------