├── .github └── workflows │ └── main.yml ├── .gitignore ├── CustomAuth.podspec ├── CustomAuthDemo ├── CustomAuthDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── xcshareddata │ │ └── xcschemes │ │ ├── CustomAuthDemo.xcscheme │ │ ├── CustomAuthDemoTests.xcscheme │ │ └── CustomAuthDemoUITests.xcscheme ├── CustomAuthDemo │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── ContentView.swift │ ├── CustomAuthDemo.swift │ ├── CustomAuthSDKDemo.entitlements │ ├── Info.plist │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── CustomAuthDemoTests │ ├── CustomAuthDemoTests.swift │ └── Info.plist └── CustomAuthDemoUITests │ ├── CustomAuthDemoUITests.swift │ └── Info.plist ├── Development.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ ├── WorkspaceSettings.xcsettings │ └── swiftpm │ └── Package.resolved ├── License.md ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── CustomAuth │ ├── Common │ ├── AggregateVerifierParams │ │ ├── AggregateLoginParams.swift │ │ └── AggregateVerifierType.swift │ ├── HashParams.swift │ ├── LoginParams │ │ ├── Auth0ClientOptions.swift │ │ ├── Auth0JwtLoginType.swift │ │ ├── BaseLoginOptions.swift │ │ ├── EmailFlowType.swift │ │ ├── LoginType.swift │ │ ├── SubVerifierDetails.swift │ │ └── TorusSubVerifierInfo.swift │ ├── LoginResponses │ │ ├── LoginWindowResponse.swift │ │ ├── TorusAggregateLoginResponse.swift │ │ └── TorusLoginResponse.swift │ ├── Passkeys │ │ ├── AuthenticatorTransports.swift │ │ └── PassKeyExtraParams.swift │ ├── PopupResponse.swift │ ├── RedirectResultParams.swift │ ├── State.swift │ ├── TorusGenericContainer.swift │ └── VerifierResponses │ │ ├── TorusAggregateVerifierResponse.swift │ │ ├── TorusSingleVerifierResponse.swift │ │ ├── TorusVerifierResponses.swift │ │ └── UserInfo.swift │ ├── CustomAuth.swift │ ├── CustomAuthArgs.swift │ ├── Extension │ ├── Data+extension.swift │ ├── String+extension.swift │ └── URLComponents+extension.swift │ ├── Handlers │ ├── AuthenticationManager.swift │ ├── DiscordLoginHandler.swift │ ├── FacebookLoginHandler.swift │ ├── GoogleLoginHandler.swift │ ├── HandlerFactory.swift │ ├── JWTLoginHandler.swift │ ├── MockLoginHandler.swift │ ├── Protocol │ │ ├── AbstractLoginHandler.swift │ │ ├── CreateHandlerParams.swift │ │ └── ILoginHandler.swift │ ├── TwitchLoginHandler.swift │ └── Web3AuthPasswordlessLoginHandler.swift │ └── Helpers │ ├── Common.swift │ └── Error.swift ├── Tests ├── CustomAuthTests │ ├── CustomAuthTests.swift │ └── XCTestManifests.swift └── LinuxMain.swift └── cocoapods ├── Podfile ├── Podfile.lock ├── cptest.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── cptest.xcscheme ├── cptest.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── cptest ├── AppDelegate.swift ├── Assets.xcassets ├── AppIcon.appiconset │ └── Contents.json └── Contents.json ├── ContentView.swift ├── Info.plist ├── LoginView.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── SceneDelegate.swift ├── UserInfoView.swift └── ViewModel.swift /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CustomAuth.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuth.podspec -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemo.xcscheme -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemoTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemoTests.xcscheme -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemoUITests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo.xcodeproj/xcshareddata/xcschemes/CustomAuthDemoUITests.xcscheme -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/ContentView.swift -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/CustomAuthDemo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/CustomAuthDemo.swift -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/CustomAuthSDKDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/CustomAuthSDKDemo.entitlements -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/Info.plist -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemo/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemo/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemoTests/CustomAuthDemoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemoTests/CustomAuthDemoTests.swift -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemoTests/Info.plist -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemoUITests/CustomAuthDemoUITests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemoUITests/CustomAuthDemoUITests.swift -------------------------------------------------------------------------------- /CustomAuthDemo/CustomAuthDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/CustomAuthDemo/CustomAuthDemoUITests/Info.plist -------------------------------------------------------------------------------- /Development.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Development.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Development.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Development.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Development.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Development.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Development.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Development.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/License.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/AggregateVerifierParams/AggregateLoginParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/AggregateVerifierParams/AggregateLoginParams.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/AggregateVerifierParams/AggregateVerifierType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/AggregateVerifierParams/AggregateVerifierType.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/HashParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/HashParams.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/Auth0ClientOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/Auth0ClientOptions.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/Auth0JwtLoginType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/Auth0JwtLoginType.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/BaseLoginOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/BaseLoginOptions.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/EmailFlowType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/EmailFlowType.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/LoginType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/LoginType.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/SubVerifierDetails.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/SubVerifierDetails.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginParams/TorusSubVerifierInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginParams/TorusSubVerifierInfo.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginResponses/LoginWindowResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginResponses/LoginWindowResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginResponses/TorusAggregateLoginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginResponses/TorusAggregateLoginResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/LoginResponses/TorusLoginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/LoginResponses/TorusLoginResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/Passkeys/AuthenticatorTransports.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/Passkeys/AuthenticatorTransports.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/Passkeys/PassKeyExtraParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/Passkeys/PassKeyExtraParams.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/PopupResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/PopupResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/RedirectResultParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/RedirectResultParams.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/State.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/State.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/TorusGenericContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/TorusGenericContainer.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/VerifierResponses/TorusAggregateVerifierResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/VerifierResponses/TorusAggregateVerifierResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/VerifierResponses/TorusSingleVerifierResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/VerifierResponses/TorusSingleVerifierResponse.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/VerifierResponses/TorusVerifierResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/VerifierResponses/TorusVerifierResponses.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Common/VerifierResponses/UserInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Common/VerifierResponses/UserInfo.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/CustomAuth.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/CustomAuth.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/CustomAuthArgs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/CustomAuthArgs.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Extension/Data+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Extension/Data+extension.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Extension/String+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Extension/String+extension.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Extension/URLComponents+extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Extension/URLComponents+extension.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/AuthenticationManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/AuthenticationManager.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/DiscordLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/DiscordLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/FacebookLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/FacebookLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/GoogleLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/GoogleLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/HandlerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/HandlerFactory.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/JWTLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/JWTLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/MockLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/MockLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/Protocol/AbstractLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/Protocol/AbstractLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/Protocol/CreateHandlerParams.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/Protocol/CreateHandlerParams.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/Protocol/ILoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/Protocol/ILoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/TwitchLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/TwitchLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Handlers/Web3AuthPasswordlessLoginHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Handlers/Web3AuthPasswordlessLoginHandler.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Helpers/Common.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Helpers/Common.swift -------------------------------------------------------------------------------- /Sources/CustomAuth/Helpers/Error.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Sources/CustomAuth/Helpers/Error.swift -------------------------------------------------------------------------------- /Tests/CustomAuthTests/CustomAuthTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Tests/CustomAuthTests/CustomAuthTests.swift -------------------------------------------------------------------------------- /Tests/CustomAuthTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Tests/CustomAuthTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/Podfile -------------------------------------------------------------------------------- /cocoapods/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/Podfile.lock -------------------------------------------------------------------------------- /cocoapods/cptest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /cocoapods/cptest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cocoapods/cptest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /cocoapods/cptest.xcodeproj/xcshareddata/xcschemes/cptest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcodeproj/xcshareddata/xcschemes/cptest.xcscheme -------------------------------------------------------------------------------- /cocoapods/cptest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /cocoapods/cptest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /cocoapods/cptest.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /cocoapods/cptest/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/AppDelegate.swift -------------------------------------------------------------------------------- /cocoapods/cptest/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /cocoapods/cptest/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /cocoapods/cptest/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/ContentView.swift -------------------------------------------------------------------------------- /cocoapods/cptest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/Info.plist -------------------------------------------------------------------------------- /cocoapods/cptest/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/LoginView.swift -------------------------------------------------------------------------------- /cocoapods/cptest/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /cocoapods/cptest/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/SceneDelegate.swift -------------------------------------------------------------------------------- /cocoapods/cptest/UserInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/UserInfoView.swift -------------------------------------------------------------------------------- /cocoapods/cptest/ViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MetaMask/customauth-swift-sdk/HEAD/cocoapods/cptest/ViewModel.swift --------------------------------------------------------------------------------