├── .github └── workflows │ └── build.yml ├── .gitignore ├── Changelog.md ├── LICENSE ├── Package.swift ├── README.md ├── YubiKit.podspec ├── YubiKit.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── YubiKit ├── YubiKit.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── conradciobanica.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── YubiKit.xcscheme │ └── xcuserdata │ │ └── conradciobanica.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── YubiKit │ ├── Connections │ │ ├── AccessoryConnection │ │ │ ├── YKFAccessoryConnection+Debugging.h │ │ │ ├── YKFAccessoryConnection+Debugging.m │ │ │ ├── YKFAccessoryConnection+Private.h │ │ │ ├── YKFAccessoryConnection.h │ │ │ ├── YKFAccessoryConnection.m │ │ │ ├── YKFAccessoryConnectionConfiguration.h │ │ │ ├── YKFAccessoryConnectionConfiguration.m │ │ │ ├── YKFAccessoryConnectionController.h │ │ │ ├── YKFAccessoryConnectionController.m │ │ │ ├── YKFAccessoryDescription+Private.h │ │ │ ├── YKFAccessoryDescription.h │ │ │ └── YKFAccessoryDescription.m │ │ ├── NFCConnection │ │ │ ├── Sessions │ │ │ │ ├── YKFNFCOTPSession+Private.h │ │ │ │ ├── YKFNFCOTPSession.h │ │ │ │ └── YKFNFCOTPSession.m │ │ │ ├── YKFNFCConnection+Private.h │ │ │ ├── YKFNFCConnection.h │ │ │ ├── YKFNFCConnection.m │ │ │ ├── YKFNFCConnectionController.h │ │ │ ├── YKFNFCConnectionController.m │ │ │ ├── YKFNFCError+Errors.h │ │ │ ├── YKFNFCError.h │ │ │ ├── YKFNFCError.m │ │ │ ├── YKFNFCTagDescription+Private.h │ │ │ ├── YKFNFCTagDescription.h │ │ │ ├── YKFNFCTagDescription.m │ │ │ ├── YKFURIIdentifierCode.h │ │ │ └── YKFURIIdentifierCode.m │ │ ├── QRReaderSession │ │ │ ├── Views │ │ │ │ ├── YKFQRCodeScanOverlayView.h │ │ │ │ └── YKFQRCodeScanOverlayView.m │ │ │ ├── YKFQRCodeScanError+Errors.h │ │ │ ├── YKFQRCodeScanError.h │ │ │ ├── YKFQRCodeScanError.m │ │ │ ├── YKFQRCodeScanViewController.h │ │ │ ├── YKFQRCodeScanViewController.m │ │ │ ├── YKFQRReaderSession.h │ │ │ └── YKFQRReaderSession.m │ │ ├── SCP │ │ │ ├── YKFSCP03KeyParams.h │ │ │ ├── YKFSCP03KeyParams.m │ │ │ ├── YKFSCP11KeyParams.h │ │ │ ├── YKFSCP11KeyParams.m │ │ │ ├── YKFSCPKeyParamsProtocol.h │ │ │ ├── YKFSCPKeyRef.h │ │ │ ├── YKFSCPKeyRef.m │ │ │ ├── YKFSCPProcessor.h │ │ │ ├── YKFSCPProcessor.m │ │ │ ├── YKFSCPSecurityDomainSession+Private.h │ │ │ ├── YKFSCPSecurityDomainSession.h │ │ │ ├── YKFSCPSecurityDomainSession.m │ │ │ ├── YKFSCPSessionKeys.h │ │ │ ├── YKFSCPSessionKeys.m │ │ │ ├── YKFSCPState.h │ │ │ ├── YKFSCPState.m │ │ │ ├── YKFSCPStaticKeys.h │ │ │ └── YKFSCPStaticKeys.m │ │ ├── Shared │ │ │ ├── APDU │ │ │ │ ├── ChalResp │ │ │ │ │ ├── YKFHMAC1ChallengeResponseAPDU.h │ │ │ │ │ └── YKFHMAC1ChallengeResponseAPDU.m │ │ │ │ ├── FIDO2 │ │ │ │ │ ├── YKFFIDO2ClientPinAPDU.h │ │ │ │ │ ├── YKFFIDO2ClientPinAPDU.m │ │ │ │ │ ├── YKFFIDO2CommandAPDU.h │ │ │ │ │ ├── YKFFIDO2CommandAPDU.m │ │ │ │ │ ├── YKFFIDO2GetAssertionAPDU.h │ │ │ │ │ ├── YKFFIDO2GetAssertionAPDU.m │ │ │ │ │ ├── YKFFIDO2GetInfoAPDU.h │ │ │ │ │ ├── YKFFIDO2GetInfoAPDU.m │ │ │ │ │ ├── YKFFIDO2GetNextAssertionAPDU.h │ │ │ │ │ ├── YKFFIDO2GetNextAssertionAPDU.m │ │ │ │ │ ├── YKFFIDO2MakeCredentialAPDU.h │ │ │ │ │ ├── YKFFIDO2MakeCredentialAPDU.m │ │ │ │ │ ├── YKFFIDO2ResetAPDU.h │ │ │ │ │ ├── YKFFIDO2ResetAPDU.m │ │ │ │ │ ├── YKFFIDO2TouchPoolingAPDU.h │ │ │ │ │ └── YKFFIDO2TouchPoolingAPDU.m │ │ │ │ ├── MGMT │ │ │ │ │ ├── YKFManagementWriteAPDU.h │ │ │ │ │ └── YKFManagementWriteAPDU.m │ │ │ │ ├── OATH │ │ │ │ │ ├── YKFOATHCalculateAPDU.h │ │ │ │ │ ├── YKFOATHCalculateAPDU.m │ │ │ │ │ ├── YKFOATHCalculateAllAPDU.h │ │ │ │ │ ├── YKFOATHCalculateAllAPDU.m │ │ │ │ │ ├── YKFOATHDeleteAPDU.h │ │ │ │ │ ├── YKFOATHDeleteAPDU.m │ │ │ │ │ ├── YKFOATHListAPDU.h │ │ │ │ │ ├── YKFOATHListAPDU.m │ │ │ │ │ ├── YKFOATHPutAPDU.h │ │ │ │ │ ├── YKFOATHPutAPDU.m │ │ │ │ │ ├── YKFOATHSendRemainingAPDU.h │ │ │ │ │ ├── YKFOATHSendRemainingAPDU.m │ │ │ │ │ ├── YKFOATHSetAccessKeyAPDU.h │ │ │ │ │ ├── YKFOATHSetAccessKeyAPDU.m │ │ │ │ │ ├── YKFOATHUnlockAPDU.h │ │ │ │ │ ├── YKFOATHUnlockAPDU.m │ │ │ │ │ ├── YKFSelectOATHApplicationAPDU.h │ │ │ │ │ └── YKFSelectOATHApplicationAPDU.m │ │ │ │ ├── U2F │ │ │ │ │ ├── YKFU2FRegisterAPDU.h │ │ │ │ │ ├── YKFU2FRegisterAPDU.m │ │ │ │ │ ├── YKFU2FSignAPDU.h │ │ │ │ │ └── YKFU2FSignAPDU.m │ │ │ │ ├── YKFAPDU+Private.h │ │ │ │ ├── YKFAPDU.h │ │ │ │ ├── YKFAPDU.m │ │ │ │ ├── YKFAPDUCommandInstruction.h │ │ │ │ ├── YKFSelectApplicationAPDU.h │ │ │ │ └── YKFSelectApplicationAPDU.m │ │ │ ├── Errors │ │ │ │ ├── YKFAPDUError.h │ │ │ │ ├── YKFAPDUError.m │ │ │ │ ├── YKFChallengeResponseError.h │ │ │ │ ├── YKFChallengeResponseError.m │ │ │ │ ├── YKFFIDO2Error.h │ │ │ │ ├── YKFFIDO2Error.m │ │ │ │ ├── YKFInvalidPinError.h │ │ │ │ ├── YKFInvalidPinError.m │ │ │ │ ├── YKFOATHError.h │ │ │ │ ├── YKFOATHError.m │ │ │ │ ├── YKFPIVError.h │ │ │ │ ├── YKFPIVError.m │ │ │ │ ├── YKFSessionError+Private.h │ │ │ │ ├── YKFSessionError.h │ │ │ │ ├── YKFSessionError.m │ │ │ │ ├── YKFU2FError.h │ │ │ │ └── YKFU2FError.m │ │ │ ├── Requests │ │ │ │ ├── ChalResp │ │ │ │ │ ├── YKFChalRespRequest+Private.h │ │ │ │ │ ├── YKFChalRespRequest.h │ │ │ │ │ ├── YKFChalRespRequest.m │ │ │ │ │ ├── YKFChalRespSendRequest.h │ │ │ │ │ └── YKFChalRespSendRequest.m │ │ │ │ ├── FIDO2 │ │ │ │ │ ├── YKFFIDO2ClientPinRequest.h │ │ │ │ │ ├── YKFFIDO2ClientPinRequest.m │ │ │ │ │ ├── YKFFIDO2ClientPinResponse.h │ │ │ │ │ ├── YKFFIDO2ClientPinResponse.m │ │ │ │ │ ├── YKFFIDO2GetAssertionResponse+Private.h │ │ │ │ │ ├── YKFFIDO2GetAssertionResponse.h │ │ │ │ │ ├── YKFFIDO2GetAssertionResponse.m │ │ │ │ │ ├── YKFFIDO2GetInfoResponse+Private.h │ │ │ │ │ ├── YKFFIDO2GetInfoResponse.h │ │ │ │ │ ├── YKFFIDO2GetInfoResponse.m │ │ │ │ │ ├── YKFFIDO2MakeCredentialResponse+Private.h │ │ │ │ │ ├── YKFFIDO2MakeCredentialResponse.h │ │ │ │ │ ├── YKFFIDO2MakeCredentialResponse.m │ │ │ │ │ ├── YKFFIDO2Type+Private.h │ │ │ │ │ ├── YKFFIDO2Type.h │ │ │ │ │ └── YKFFIDO2Type.m │ │ │ │ ├── OATH │ │ │ │ │ ├── YKFOATHCalculateAllResponse.h │ │ │ │ │ ├── YKFOATHCalculateAllResponse.m │ │ │ │ │ ├── YKFOATHListResponse.h │ │ │ │ │ ├── YKFOATHListResponse.m │ │ │ │ │ ├── YKFOATHSelectApplicationResponse.h │ │ │ │ │ ├── YKFOATHSelectApplicationResponse.m │ │ │ │ │ ├── YKFOATHUnlockResponse.h │ │ │ │ │ └── YKFOATHUnlockResponse.m │ │ │ │ ├── U2F │ │ │ │ │ ├── YKFU2FRegisterResponse+Private.h │ │ │ │ │ ├── YKFU2FRegisterResponse.h │ │ │ │ │ ├── YKFU2FRegisterResponse.m │ │ │ │ │ ├── YKFU2FSignResponse+Private.h │ │ │ │ │ ├── YKFU2FSignResponse.h │ │ │ │ │ └── YKFU2FSignResponse.m │ │ │ │ ├── YKFRequest.h │ │ │ │ ├── YKFRequest.m │ │ │ │ └── YKFSlot.h │ │ │ ├── Sessions │ │ │ │ ├── ChalResp │ │ │ │ │ ├── YKFChallengeResponseSession+Private.h │ │ │ │ │ ├── YKFChallengeResponseSession.h │ │ │ │ │ └── YKFChallengeResponseSession.m │ │ │ │ ├── FIDO2 │ │ │ │ │ ├── CBOR │ │ │ │ │ │ ├── YKFCBORDecoder.h │ │ │ │ │ │ ├── YKFCBORDecoder.m │ │ │ │ │ │ ├── YKFCBOREncoder.h │ │ │ │ │ │ ├── YKFCBOREncoder.m │ │ │ │ │ │ ├── YKFCBORTag.h │ │ │ │ │ │ ├── YKFCBORType.h │ │ │ │ │ │ └── YKFCBORType.m │ │ │ │ │ ├── Crypto │ │ │ │ │ │ ├── YKFFIDO2PinAuthKey.h │ │ │ │ │ │ └── YKFFIDO2PinAuthKey.m │ │ │ │ │ ├── WebAuthN │ │ │ │ │ │ ├── YKFWebAuthnClientData.h │ │ │ │ │ │ └── YKFWebAuthnClientData.m │ │ │ │ │ ├── YKFFIDO2Session+Private.h │ │ │ │ │ ├── YKFFIDO2Session.h │ │ │ │ │ └── YKFFIDO2Session.m │ │ │ │ ├── MGMT │ │ │ │ │ ├── YKFManagementInterfaceConfiguration+Private.h │ │ │ │ │ ├── YKFManagementInterfaceConfiguration.h │ │ │ │ │ ├── YKFManagementInterfaceConfiguration.m │ │ │ │ │ ├── YKFManagementSession.h │ │ │ │ │ └── YKFManagementSession.m │ │ │ │ ├── OATH │ │ │ │ │ ├── YKFOATHCode+Private.h │ │ │ │ │ ├── YKFOATHCode.h │ │ │ │ │ ├── YKFOATHCode.m │ │ │ │ │ ├── YKFOATHCredential+Private.h │ │ │ │ │ ├── YKFOATHCredential.h │ │ │ │ │ ├── YKFOATHCredential.m │ │ │ │ │ ├── YKFOATHCredentialTemplate.h │ │ │ │ │ ├── YKFOATHCredentialTemplate.m │ │ │ │ │ ├── YKFOATHCredentialTypes.h │ │ │ │ │ ├── YKFOATHCredentialUtils.h │ │ │ │ │ ├── YKFOATHCredentialUtils.m │ │ │ │ │ ├── YKFOATHCredentialWithCode.h │ │ │ │ │ ├── YKFOATHCredentialWithCode.m │ │ │ │ │ ├── YKFOATHSession+Private.h │ │ │ │ │ ├── YKFOATHSession.h │ │ │ │ │ └── YKFOATHSession.m │ │ │ │ ├── PIV │ │ │ │ │ ├── YKFPIVBioMetadata+Private.h │ │ │ │ │ ├── YKFPIVBioMetadata.h │ │ │ │ │ ├── YKFPIVBioMetadata.m │ │ │ │ │ ├── YKFPIVKeyType.h │ │ │ │ │ ├── YKFPIVKeyType.m │ │ │ │ │ ├── YKFPIVManagementKeyMetadata+Private.h │ │ │ │ │ ├── YKFPIVManagementKeyMetadata.h │ │ │ │ │ ├── YKFPIVManagementKeyMetadata.m │ │ │ │ │ ├── YKFPIVManagementKeyType.h │ │ │ │ │ ├── YKFPIVManagementKeyType.m │ │ │ │ │ ├── YKFPIVPadding+Private.h │ │ │ │ │ ├── YKFPIVPadding.m │ │ │ │ │ ├── YKFPIVSession+Private.h │ │ │ │ │ ├── YKFPIVSession.h │ │ │ │ │ ├── YKFPIVSession.m │ │ │ │ │ ├── YKFPIVSessionFeatures.h │ │ │ │ │ ├── YKFPIVSessionFeatures.m │ │ │ │ │ ├── YKFPIVSlotMetadata+Private.h │ │ │ │ │ ├── YKFPIVSlotMetadata.h │ │ │ │ │ └── YKFPIVSlotMetadata.m │ │ │ │ ├── U2F │ │ │ │ │ ├── YKFU2FSession+Private.h │ │ │ │ │ ├── YKFU2FSession.h │ │ │ │ │ └── YKFU2FSession.m │ │ │ │ ├── YKFManagementDeviceInfo+Private.h │ │ │ │ ├── YKFManagementDeviceInfo.h │ │ │ │ ├── YKFManagementDeviceInfo.m │ │ │ │ ├── YKFManagementSession+Private.h │ │ │ │ ├── YKFManagementSessionFeatures.h │ │ │ │ ├── YKFManagementSessionFeatures.m │ │ │ │ ├── YKFSession+Private.h │ │ │ │ ├── YKFSession.h │ │ │ │ ├── YKFSession.m │ │ │ │ └── YKFSessionProtocol+Private.h │ │ │ ├── YKFConnectionControllerProtocol.h │ │ │ ├── YKFFeature.h │ │ │ ├── YKFFeature.m │ │ │ ├── YKFVersion.h │ │ │ └── YKFVersion.m │ │ ├── SmartCardConnection │ │ │ ├── YKFSmartCardConnection+Private.h │ │ │ ├── YKFSmartCardConnection.h │ │ │ ├── YKFSmartCardConnection.m │ │ │ ├── YKFSmartCardConnectionController.h │ │ │ └── YKFSmartCardConnectionController.m │ │ ├── SmartCardInterface │ │ │ ├── YKFSmartCardInterface.h │ │ │ └── YKFSmartCardInterface.m │ │ └── YKFConnectionProtocol.h │ ├── Helpers │ │ ├── Additions │ │ │ ├── NSArray+YKFTLVRecord.h │ │ │ ├── NSArray+YKFTLVRecord.m │ │ │ ├── TKTLVRecordAdditions+Private.h │ │ │ ├── TKTLVRecordAdditions.m │ │ │ ├── UIDeviceAdditions.h │ │ │ ├── UIDeviceAdditions.m │ │ │ ├── UIWindowAdditions.h │ │ │ ├── UIWindowAdditions.m │ │ │ ├── YKFNSDataAdditions+Private.h │ │ │ ├── YKFNSDataAdditions.h │ │ │ ├── YKFNSDataAdditions.m │ │ │ ├── YKFNSMutableDataAdditions.h │ │ │ ├── YKFNSMutableDataAdditions.m │ │ │ ├── YKFNSStringAdditions.h │ │ │ └── YKFNSStringAdditions.m │ │ ├── YKFAssert.h │ │ ├── YKFBlockMacros.h │ │ ├── YKFDispatch.h │ │ ├── YKFDispatch.m │ │ ├── YKFKVOObservation.h │ │ ├── YKFKVOObservation.m │ │ ├── YKFLogger.h │ │ ├── YKFLogger.m │ │ ├── YKFPermissions.h │ │ ├── YKFPermissions.m │ │ ├── YKFTLVRecord.h │ │ ├── YKFTLVRecord.m │ │ ├── YKFView.h │ │ ├── YKFView.m │ │ ├── YKFViewController.h │ │ └── YKFViewController.m │ ├── SPMHeaderLinks │ │ ├── EAAccessory+Testing.h │ │ ├── EAAccessoryManager+Testing.h │ │ ├── EASession+Testing.h │ │ ├── MF_Base32Additions.h │ │ ├── NFCNDEFReaderSession+Testing.h │ │ ├── NSArray+YKFTLVRecord.h │ │ ├── NSData+GZIP.h │ │ ├── TKTLVRecordAdditions+Private.h │ │ ├── UIDevice+Testing.h │ │ ├── UIDeviceAdditions.h │ │ ├── UIWindowAdditions.h │ │ ├── YKFAPDU+Private.h │ │ ├── YKFAPDU.h │ │ ├── YKFAPDUCommandInstruction.h │ │ ├── YKFAPDUError.h │ │ ├── YKFAccessoryConnection+Debugging.h │ │ ├── YKFAccessoryConnection+Private.h │ │ ├── YKFAccessoryConnection.h │ │ ├── YKFAccessoryConnectionConfiguration.h │ │ ├── YKFAccessoryConnectionController.h │ │ ├── YKFAccessoryDescription+Private.h │ │ ├── YKFAccessoryDescription.h │ │ ├── YKFAssert.h │ │ ├── YKFBlockMacros.h │ │ ├── YKFCBORDecoder.h │ │ ├── YKFCBOREncoder.h │ │ ├── YKFCBORTag.h │ │ ├── YKFCBORType.h │ │ ├── YKFChalRespRequest+Private.h │ │ ├── YKFChalRespRequest.h │ │ ├── YKFChalRespSendRequest.h │ │ ├── YKFChallengeResponseError.h │ │ ├── YKFChallengeResponseSession+Private.h │ │ ├── YKFChallengeResponseSession.h │ │ ├── YKFConnectionControllerProtocol.h │ │ ├── YKFConnectionProtocol.h │ │ ├── YKFDispatch.h │ │ ├── YKFFIDO2ClientPinAPDU.h │ │ ├── YKFFIDO2ClientPinRequest.h │ │ ├── YKFFIDO2ClientPinResponse.h │ │ ├── YKFFIDO2CommandAPDU.h │ │ ├── YKFFIDO2Error.h │ │ ├── YKFFIDO2GetAssertionAPDU.h │ │ ├── YKFFIDO2GetAssertionResponse+Private.h │ │ ├── YKFFIDO2GetAssertionResponse.h │ │ ├── YKFFIDO2GetInfoAPDU.h │ │ ├── YKFFIDO2GetInfoResponse+Private.h │ │ ├── YKFFIDO2GetInfoResponse.h │ │ ├── YKFFIDO2GetNextAssertionAPDU.h │ │ ├── YKFFIDO2MakeCredentialAPDU.h │ │ ├── YKFFIDO2MakeCredentialResponse+Private.h │ │ ├── YKFFIDO2MakeCredentialResponse.h │ │ ├── YKFFIDO2PinAuthKey.h │ │ ├── YKFFIDO2ResetAPDU.h │ │ ├── YKFFIDO2Session+Private.h │ │ ├── YKFFIDO2Session.h │ │ ├── YKFFIDO2TouchPoolingAPDU.h │ │ ├── YKFFIDO2Type+Private.h │ │ ├── YKFFIDO2Type.h │ │ ├── YKFFeature.h │ │ ├── YKFHMAC1ChallengeResponseAPDU.h │ │ ├── YKFInvalidPinError.h │ │ ├── YKFKVOObservation.h │ │ ├── YKFLogger.h │ │ ├── YKFManagementDeviceInfo+Private.h │ │ ├── YKFManagementDeviceInfo.h │ │ ├── YKFManagementInterfaceConfiguration+Private.h │ │ ├── YKFManagementInterfaceConfiguration.h │ │ ├── YKFManagementSession+Private.h │ │ ├── YKFManagementSession.h │ │ ├── YKFManagementSessionFeatures.h │ │ ├── YKFManagementWriteAPDU.h │ │ ├── YKFNFCConnection+Private.h │ │ ├── YKFNFCConnection.h │ │ ├── YKFNFCConnectionController.h │ │ ├── YKFNFCError+Errors.h │ │ ├── YKFNFCError.h │ │ ├── YKFNFCOTPSession+Private.h │ │ ├── YKFNFCOTPSession.h │ │ ├── YKFNFCTagDescription+Private.h │ │ ├── YKFNFCTagDescription.h │ │ ├── YKFNSDataAdditions+Private.h │ │ ├── YKFNSDataAdditions.h │ │ ├── YKFNSMutableDataAdditions.h │ │ ├── YKFNSStringAdditions.h │ │ ├── YKFOATHCalculateAPDU.h │ │ ├── YKFOATHCalculateAllAPDU.h │ │ ├── YKFOATHCalculateAllResponse.h │ │ ├── YKFOATHCode+Private.h │ │ ├── YKFOATHCode.h │ │ ├── YKFOATHCredential+Private.h │ │ ├── YKFOATHCredential.h │ │ ├── YKFOATHCredentialTemplate.h │ │ ├── YKFOATHCredentialTypes.h │ │ ├── YKFOATHCredentialUtils.h │ │ ├── YKFOATHCredentialWithCode.h │ │ ├── YKFOATHDeleteAPDU.h │ │ ├── YKFOATHError.h │ │ ├── YKFOATHListAPDU.h │ │ ├── YKFOATHListResponse.h │ │ ├── YKFOATHPutAPDU.h │ │ ├── YKFOATHSelectApplicationResponse.h │ │ ├── YKFOATHSendRemainingAPDU.h │ │ ├── YKFOATHSession+Private.h │ │ ├── YKFOATHSession.h │ │ ├── YKFOATHSetAccessKeyAPDU.h │ │ ├── YKFOATHUnlockAPDU.h │ │ ├── YKFOATHUnlockResponse.h │ │ ├── YKFOTPTextParser.h │ │ ├── YKFOTPTextParserProtocol.h │ │ ├── YKFOTPToken.h │ │ ├── YKFOTPTokenParser.h │ │ ├── YKFOTPTokenValidator.h │ │ ├── YKFOTPURIParser.h │ │ ├── YKFOTPURIParserProtocol.h │ │ ├── YKFPIVBioMetadata+Private.h │ │ ├── YKFPIVBioMetadata.h │ │ ├── YKFPIVError.h │ │ ├── YKFPIVKeyType.h │ │ ├── YKFPIVManagementKeyMetadata+Private.h │ │ ├── YKFPIVManagementKeyMetadata.h │ │ ├── YKFPIVManagementKeyType.h │ │ ├── YKFPIVPadding+Private.h │ │ ├── YKFPIVSession+Private.h │ │ ├── YKFPIVSession.h │ │ ├── YKFPIVSessionFeatures.h │ │ ├── YKFPIVSlotMetadata+Private.h │ │ ├── YKFPIVSlotMetadata.h │ │ ├── YKFPermissions.h │ │ ├── YKFQRCodeScanError+Errors.h │ │ ├── YKFQRCodeScanError.h │ │ ├── YKFQRCodeScanOverlayView.h │ │ ├── YKFQRCodeScanViewController.h │ │ ├── YKFQRReaderSession.h │ │ ├── YKFRequest.h │ │ ├── YKFSCP03KeyParams.h │ │ ├── YKFSCP11KeyParams.h │ │ ├── YKFSCPKeyParamsProtocol.h │ │ ├── YKFSCPKeyRef.h │ │ ├── YKFSCPProcessor.h │ │ ├── YKFSCPSecurityDomainSession+Private.h │ │ ├── YKFSCPSecurityDomainSession.h │ │ ├── YKFSCPSessionKeys.h │ │ ├── YKFSCPState.h │ │ ├── YKFSCPStaticKeys.h │ │ ├── YKFSelectApplicationAPDU.h │ │ ├── YKFSelectOATHApplicationAPDU.h │ │ ├── YKFSession+Private.h │ │ ├── YKFSession.h │ │ ├── YKFSessionError+Private.h │ │ ├── YKFSessionError.h │ │ ├── YKFSessionProtocol+Private.h │ │ ├── YKFSlot.h │ │ ├── YKFSmartCardConnection+Private.h │ │ ├── YKFSmartCardConnection.h │ │ ├── YKFSmartCardConnectionController.h │ │ ├── YKFSmartCardInterface.h │ │ ├── YKFTLVRecord.h │ │ ├── YKFU2FError.h │ │ ├── YKFU2FRegisterAPDU.h │ │ ├── YKFU2FRegisterResponse+Private.h │ │ ├── YKFU2FRegisterResponse.h │ │ ├── YKFU2FSession+Private.h │ │ ├── YKFU2FSession.h │ │ ├── YKFU2FSignAPDU.h │ │ ├── YKFU2FSignResponse+Private.h │ │ ├── YKFU2FSignResponse.h │ │ ├── YKFURIIdentifierCode.h │ │ ├── YKFVersion.h │ │ ├── YKFView.h │ │ ├── YKFViewController.h │ │ ├── YKFWebAuthnClientData.h │ │ ├── YubiKit.h │ │ ├── YubiKitConfiguration.h │ │ ├── YubiKitDeviceCapabilities+Testing.h │ │ ├── YubiKitDeviceCapabilities.h │ │ ├── YubiKitExternalLocalization.h │ │ ├── YubiKitLogger.h │ │ └── YubiKitManager.h │ ├── SharedModel │ │ ├── YKFOTPTextParser.h │ │ ├── YKFOTPTextParser.m │ │ ├── YKFOTPTextParserProtocol.h │ │ ├── YKFOTPToken.h │ │ ├── YKFOTPToken.m │ │ ├── YKFOTPTokenParser.h │ │ ├── YKFOTPTokenParser.m │ │ ├── YKFOTPTokenValidator.h │ │ ├── YKFOTPTokenValidator.m │ │ ├── YKFOTPURIParser.h │ │ ├── YKFOTPURIParser.m │ │ └── YKFOTPURIParserProtocol.h │ ├── TestExtentions │ │ ├── EAAccessory+Testing.h │ │ ├── EAAccessoryManager+Testing.h │ │ ├── EASession+Testing.h │ │ ├── NFCNDEFReaderSession+Testing.h │ │ └── UIDevice+Testing.h │ ├── ThirdParties │ │ ├── MF_Base32Additions.h │ │ ├── MF_Base32Additions.m │ │ ├── NSData+GZIP.h │ │ └── NSData+GZIP.m │ ├── YubiKit.h │ ├── YubiKitConfiguration.h │ ├── YubiKitConfiguration.m │ ├── YubiKitDeviceCapabilities+Testing.h │ ├── YubiKitDeviceCapabilities.h │ ├── YubiKitDeviceCapabilities.m │ ├── YubiKitExternalLocalization.h │ ├── YubiKitExternalLocalization.m │ ├── YubiKitLogger.h │ ├── YubiKitLogger.m │ ├── YubiKitManager.h │ └── YubiKitManager.m ├── YubiKitTests │ ├── Fakes │ │ ├── FakeEAAccessory.h │ │ ├── FakeEAAccessory.m │ │ ├── FakeEASession.h │ │ ├── FakeEASession.m │ │ ├── FakeNFCNDEFReaderSession.h │ │ ├── FakeNFCNDEFReaderSession.m │ │ ├── FakeUIDevice.h │ │ ├── FakeUIDevice.m │ │ ├── FakeYKFConnectionController.h │ │ ├── FakeYKFConnectionController.m │ │ ├── FakeYKFOTPTextParser.h │ │ ├── FakeYKFOTPTextParser.m │ │ ├── FakeYKFOTPURIParser.h │ │ ├── FakeYKFOTPURIParser.m │ │ ├── FakeYubiKitDeviceCapabilities.h │ │ └── FakeYubiKitDeviceCapabilities.m │ ├── Info.plist │ └── Tests │ │ ├── YKFAESCMACTests.m │ │ ├── YKFAccessoryConnectionConfigurationTests.m │ │ ├── YKFAccessoryConnectionControllerTests.m │ │ ├── YKFAccessoryDescriptionTests.m │ │ ├── YKFCBORDecoderTests.m │ │ ├── YKFCBOREncoderTests.m │ │ ├── YKFNFCOTPServiceTests.m │ │ ├── YKFNSDataAdditionsTests.m │ │ ├── YKFOATHCredentialTemplateTests.m │ │ ├── YKFOTPTextParserTests.m │ │ ├── YKFOTPTokenParserTests.m │ │ ├── YKFOTPTokenValidatorTests.m │ │ ├── YKFOTPURIParserTests.m │ │ ├── YKFPIVPaddingTests.m │ │ ├── YKFSCPTests.m │ │ ├── YKFSmartCardInterfaceTests.m │ │ ├── YKFTLVRecordTests.m │ │ ├── YKFTestCase.h │ │ ├── YKFTestCase.m │ │ ├── YKFU2FServiceTests.m │ │ ├── YKNSStringAdditionTests.m │ │ └── YubiKitDeviceCapabilitiesTests.m └── build.sh ├── YubiKitDemo ├── README.md ├── YubiKitDemo-Bridging-Header.h ├── YubiKitDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── xcshareddata │ │ └── xcschemes │ │ │ └── YubiKitDemo.xcscheme │ └── xcuserdata │ │ └── conradciobanica.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── YubiKitDemo │ ├── AppDelegate.swift │ ├── Assets │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── AppIcon-1024.png │ │ │ │ ├── AppIcon-20.png │ │ │ │ ├── AppIcon-20@2x-1.png │ │ │ │ ├── AppIcon-20@2x.png │ │ │ │ ├── AppIcon-20@3x.png │ │ │ │ ├── AppIcon-29.png │ │ │ │ ├── AppIcon-29@2x-1.png │ │ │ │ ├── AppIcon-29@2x.png │ │ │ │ ├── AppIcon-29@3x.png │ │ │ │ ├── AppIcon-40.png │ │ │ │ ├── AppIcon-40@2x-1.png │ │ │ │ ├── AppIcon-40@2x.png │ │ │ │ ├── AppIcon-40@3x.png │ │ │ │ ├── AppIcon-60@2x.png │ │ │ │ ├── AppIcon-60@3x.png │ │ │ │ ├── AppIcon-76.png │ │ │ │ ├── AppIcon-76@2x.png │ │ │ │ ├── AppIcon-83.5@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Colors │ │ │ │ ├── Contents.json │ │ │ │ └── KeyActionContainerViewColor.colorset │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Icons │ │ │ │ ├── Contents.json │ │ │ │ ├── FIDO2 Icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── code_1X.png │ │ │ │ │ ├── code_2X-1.png │ │ │ │ │ └── code_2X.png │ │ │ │ ├── Info Icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── InfoIcon_1X.png │ │ │ │ │ ├── InfoIcon_2X-1.png │ │ │ │ │ └── InfoIcon_2X.png │ │ │ │ ├── OTP Icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── OtpIcon_1X.png │ │ │ │ │ ├── OtpIcon_2X-1.png │ │ │ │ │ └── OtpIcon_2X.png │ │ │ │ ├── Other Icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── OtherIcon.png │ │ │ │ │ ├── OtherIcon_2x-1.png │ │ │ │ │ └── OtherIcon_2x.png │ │ │ │ └── QR Icon.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── QRIcon_1X.png │ │ │ │ │ ├── QRIcon_2X-1.png │ │ │ │ │ └── QRIcon_2X.png │ │ │ ├── LASKey.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── LASKey.pdf │ │ │ ├── LASPhone.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── LASPhone.pdf │ │ │ ├── LASPhoneNew.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── LASPhoneNew.pdf │ │ │ ├── Scan Key.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── NFCPNG.png │ │ │ ├── Scan QR .imageset │ │ │ │ ├── Contents.json │ │ │ │ └── QRPNG.png │ │ │ ├── Warning.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Warning_1X.png │ │ │ │ ├── Warning_2X.png │ │ │ │ └── Warning_3X.png │ │ │ ├── Yubico Full Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── YubicoFullLogo_1X.png │ │ │ │ ├── YubicoFullLogo_2X.png │ │ │ │ └── YubicoFullLogo_3X.png │ │ │ └── Yubico Logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── YubicoSmallLogo_1X.png │ │ │ │ ├── YubicoSmallLogo_2X.png │ │ │ │ └── YubicoSmallLogo_3X.png │ │ └── NamedColors.swift │ ├── Demos │ │ ├── About │ │ │ ├── About.storyboard │ │ │ └── AboutViewController.swift │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── FIDO2 │ │ │ ├── FIDO2Demo.storyboard │ │ │ ├── FIDO2ViewController.swift │ │ │ └── StatusView.swift │ │ ├── OTP │ │ │ ├── OTPDemo.storyboard │ │ │ ├── OTPDetailsViewController.swift │ │ │ ├── OTPScanViewController.swift │ │ │ ├── OTPUIResponder.swift │ │ │ └── Views │ │ │ │ ├── OTPScanContainerView.swift │ │ │ │ ├── OTPScanResultsView.swift │ │ │ │ ├── OTPScanResultsView.xib │ │ │ │ ├── OTPWaitingScanView.swift │ │ │ │ └── OTPWaitingScanView.xib │ │ ├── Other │ │ │ ├── Demos │ │ │ │ ├── FIDO2DemoViewController.swift │ │ │ │ ├── OATH │ │ │ │ │ ├── Credential.swift │ │ │ │ │ ├── CredentialListView.swift │ │ │ │ │ ├── CredentialView.swift │ │ │ │ │ ├── CredentialsProvider.swift │ │ │ │ │ └── OATHHostingController.swift │ │ │ │ ├── OtherDemoRootViewController.swift │ │ │ │ ├── RawDemoModel │ │ │ │ │ ├── RawDemoResponseParser.swift │ │ │ │ │ └── RawDemoSecCertificate.swift │ │ │ │ ├── SmartCardInterfaceDemoViewController.swift │ │ │ │ └── U2FDemoViewController.swift │ │ │ └── OtherDemosStoryboard.storyboard │ │ ├── QR │ │ │ ├── QRDemo.storyboard │ │ │ ├── QRScanViewController.swift │ │ │ └── Views │ │ │ │ ├── QRCodeScanContainerView.swift │ │ │ │ ├── QRCodeScanNotAvailableView.swift │ │ │ │ ├── QRCodeScanNotAvailableView.xib │ │ │ │ ├── QRCodeScanResultsView.swift │ │ │ │ ├── QRCodeScanResultsView.xib │ │ │ │ ├── QRCodeScanWaitingView.swift │ │ │ │ └── QRCodeScanWaitingView.xib │ │ └── SharedUI │ │ │ ├── ApplicationUIAppearance.swift │ │ │ ├── DemoCustomTabBar.swift │ │ │ ├── FIDO2PinInputController.swift │ │ │ ├── MFIKeyActionSheet │ │ │ ├── MFIKeyActionSheetView.swift │ │ │ ├── MFIKeyActionSheetView.xib │ │ │ └── MFIKeyInteractionViewController.swift │ │ │ ├── ProgressHud │ │ │ ├── ProgressHudView.swift │ │ │ └── ProgressHudView.xib │ │ │ ├── RootViewController.swift │ │ │ ├── SceneObserver │ │ │ └── SceneObserver.swift │ │ │ └── UIView+Extensions.swift │ ├── Examples │ │ ├── CustomLogger.swift │ │ └── Observers │ │ │ ├── AccessorySessionObserver.swift │ │ │ └── FIDO2ServiceObserver.swift │ ├── Info.plist │ ├── Model │ │ ├── Extensions │ │ │ └── DataExtensions.swift │ │ └── WebAuthN │ │ │ ├── Requests │ │ │ ├── WebAuthnAuthenticateBeginRequest.swift │ │ │ ├── WebAuthnAuthenticateBeginResponse.swift │ │ │ ├── WebAuthnAuthenticateFinishRequest.swift │ │ │ ├── WebAuthnAuthenticateFinishResponse.swift │ │ │ ├── WebAuthnCreateUserResponse.swift │ │ │ ├── WebAuthnLoginUserResponse.swift │ │ │ ├── WebAuthnRegisterBeginRequest.swift │ │ │ ├── WebAuthnRegisterBeginResponse.swift │ │ │ ├── WebAuthnRegisterFinishRequest.swift │ │ │ ├── WebAuthnRegisterFinishResponse.swift │ │ │ ├── WebAuthnRequest.swift │ │ │ ├── WebAuthnResponse.swift │ │ │ └── WebAuthnUserRequest.swift │ │ │ ├── WebAuthnService.swift │ │ │ └── WebServiceError.swift │ └── YubiKitDemo.entitlements └── docassets │ └── demo-fido2-registration.png ├── YubiKitTests ├── HostApp │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── TestsIcon-1024.png │ │ │ ├── TestsIcon-60@2x.png │ │ │ ├── TestsIcon-60@3x.png │ │ │ ├── TestsIcon-76.png │ │ │ ├── TestsIcon-76@2x.png │ │ │ └── TestsIcon-83.5@2x.png │ │ └── Contents.json │ ├── HostApp.swift │ ├── Info.plist │ └── Preview Content │ │ └── Preview Assets.xcassets │ │ └── Contents.json ├── Tests │ ├── ChallengeResponseTests.swift │ ├── ConnectionTests.swift │ ├── FIDO2Tests.swift │ ├── Info.plist │ ├── ManagementTests.swift │ ├── OATHTests.swift │ ├── PIVTests.swift │ ├── SCPTests.swift │ ├── SessionTests.swift │ ├── U2FTests.swift │ └── Utilities │ │ ├── Data+Extensions.swift │ │ ├── NSDate+Utils.h │ │ ├── NSDate+Utils.m │ │ ├── XCTestCase+Extensions.swift │ │ └── YubiKeyConnection.swift ├── YubiKitTests-Bridging-Header.h ├── YubiKitTests.entitlements └── YubiKitTests.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist ├── docassets └── cert.der └── docs ├── NFC-Notes.md ├── chr.md ├── easy-handling-connections.md ├── fido2.md ├── mgmt.md ├── oath.md ├── otp.md ├── piv.md ├── raw.md ├── smartcard-interface.md ├── transitioning-sdk-4.md └── u2f.md /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/README.md -------------------------------------------------------------------------------- /YubiKit.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit.podspec -------------------------------------------------------------------------------- /YubiKit.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YubiKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YubiKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /YubiKit/YubiKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YubiKit/YubiKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YubiKit/YubiKit.xcodeproj/project.xcworkspace/xcuserdata/conradciobanica.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit.xcodeproj/project.xcworkspace/xcuserdata/conradciobanica.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YubiKit/YubiKit.xcodeproj/xcshareddata/xcschemes/YubiKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit.xcodeproj/xcshareddata/xcschemes/YubiKit.xcscheme -------------------------------------------------------------------------------- /YubiKit/YubiKit.xcodeproj/xcuserdata/conradciobanica.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit.xcodeproj/xcuserdata/conradciobanica.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Debugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Debugging.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Debugging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Debugging.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnection.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionConfiguration.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryConnectionController.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/AccessoryConnection/YKFAccessoryDescription.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/Sessions/YKFNFCOTPSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnection.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCConnectionController.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError+Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError+Errors.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFNFCTagDescription.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFURIIdentifierCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFURIIdentifierCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/NFCConnection/YKFURIIdentifierCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/NFCConnection/YKFURIIdentifierCode.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/Views/YKFQRCodeScanOverlayView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/Views/YKFQRCodeScanOverlayView.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/Views/YKFQRCodeScanOverlayView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/Views/YKFQRCodeScanOverlayView.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError+Errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError+Errors.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanViewController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRCodeScanViewController.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRReaderSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRReaderSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/QRReaderSession/YKFQRReaderSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/QRReaderSession/YKFQRReaderSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCP03KeyParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCP03KeyParams.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCP03KeyParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCP03KeyParams.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCP11KeyParams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCP11KeyParams.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCP11KeyParams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCP11KeyParams.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPKeyParamsProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPKeyParamsProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPKeyRef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPKeyRef.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPKeyRef.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPKeyRef.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPProcessor.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPProcessor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPProcessor.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPSecurityDomainSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPSessionKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPSessionKeys.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPSessionKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPSessionKeys.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPState.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPState.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPState.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPStaticKeys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPStaticKeys.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SCP/YKFSCPStaticKeys.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SCP/YKFSCPStaticKeys.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/ChalResp/YKFHMAC1ChallengeResponseAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/ChalResp/YKFHMAC1ChallengeResponseAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/ChalResp/YKFHMAC1ChallengeResponseAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/ChalResp/YKFHMAC1ChallengeResponseAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ClientPinAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ClientPinAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ClientPinAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ClientPinAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2CommandAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2CommandAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2CommandAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2CommandAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetAssertionAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetAssertionAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetAssertionAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetAssertionAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetInfoAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetInfoAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetInfoAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetInfoAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetNextAssertionAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetNextAssertionAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetNextAssertionAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2GetNextAssertionAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2MakeCredentialAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2MakeCredentialAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2MakeCredentialAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2MakeCredentialAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ResetAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ResetAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ResetAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2ResetAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2TouchPoolingAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2TouchPoolingAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2TouchPoolingAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/FIDO2/YKFFIDO2TouchPoolingAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/MGMT/YKFManagementWriteAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/MGMT/YKFManagementWriteAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/MGMT/YKFManagementWriteAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/MGMT/YKFManagementWriteAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAllAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAllAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAllAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHCalculateAllAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHDeleteAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHDeleteAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHDeleteAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHDeleteAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHListAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHListAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHListAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHListAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHPutAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHPutAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHPutAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHPutAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSendRemainingAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSendRemainingAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSendRemainingAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSendRemainingAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSetAccessKeyAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSetAccessKeyAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSetAccessKeyAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHSetAccessKeyAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHUnlockAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHUnlockAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHUnlockAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFOATHUnlockAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFSelectOATHApplicationAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFSelectOATHApplicationAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFSelectOATHApplicationAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/OATH/YKFSelectOATHApplicationAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FRegisterAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FRegisterAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FRegisterAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FRegisterAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FSignAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FSignAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FSignAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/U2F/YKFU2FSignAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDUCommandInstruction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFAPDUCommandInstruction.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFSelectApplicationAPDU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFSelectApplicationAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/APDU/YKFSelectApplicationAPDU.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/APDU/YKFSelectApplicationAPDU.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFAPDUError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFAPDUError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFAPDUError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFAPDUError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFChallengeResponseError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFChallengeResponseError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFChallengeResponseError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFChallengeResponseError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFFIDO2Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFFIDO2Error.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFFIDO2Error.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFFIDO2Error.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFInvalidPinError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFInvalidPinError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFInvalidPinError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFInvalidPinError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFOATHError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFOATHError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFOATHError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFOATHError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFPIVError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFPIVError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFPIVError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFPIVError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFSessionError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFU2FError.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFU2FError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Errors/YKFU2FError.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Errors/YKFU2FError.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespRequest.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespSendRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespSendRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespSendRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/ChalResp/YKFChalRespSendRequest.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinRequest.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/FIDO2/YKFFIDO2Type.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHCalculateAllResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHCalculateAllResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHCalculateAllResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHCalculateAllResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHListResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHListResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHListResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHListResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHSelectApplicationResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHSelectApplicationResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHSelectApplicationResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHSelectApplicationResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHUnlockResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHUnlockResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHUnlockResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/OATH/YKFOATHUnlockResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FRegisterResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/U2F/YKFU2FSignResponse.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/YKFRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/YKFRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/YKFRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/YKFRequest.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Requests/YKFSlot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Requests/YKFSlot.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORDecoder.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORDecoder.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBOREncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBOREncoder.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBOREncoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBOREncoder.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORTag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORTag.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORType.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/Crypto/YKFFIDO2PinAuthKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/Crypto/YKFFIDO2PinAuthKey.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/Crypto/YKFFIDO2PinAuthKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/Crypto/YKFFIDO2PinAuthKey.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/WebAuthN/YKFWebAuthnClientData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/WebAuthN/YKFWebAuthnClientData.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/WebAuthN/YKFWebAuthnClientData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/WebAuthN/YKFWebAuthnClientData.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/FIDO2/YKFFIDO2Session.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/MGMT/YKFManagementSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCode.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredential.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTemplate.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTemplate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTemplate.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialTypes.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialUtils.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialUtils.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialWithCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialWithCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialWithCode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHCredentialWithCode.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/OATH/YKFOATHSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVBioMetadata.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVKeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVKeyType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVKeyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVKeyType.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVManagementKeyType.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVPadding+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVPadding+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVPadding.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVPadding.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSessionFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSessionFeatures.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSessionFeatures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSessionFeatures.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/U2F/YKFU2FSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementDeviceInfo.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSessionFeatures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSessionFeatures.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSessionFeatures.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFManagementSessionFeatures.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/Sessions/YKFSessionProtocol+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/Sessions/YKFSessionProtocol+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/YKFConnectionControllerProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/YKFConnectionControllerProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/YKFFeature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/YKFFeature.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/YKFFeature.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/YKFFeature.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/YKFVersion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/YKFVersion.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/Shared/YKFVersion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/Shared/YKFVersion.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnection.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardConnection/YKFSmartCardConnectionController.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardInterface/YKFSmartCardInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardInterface/YKFSmartCardInterface.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/SmartCardInterface/YKFSmartCardInterface.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/SmartCardInterface/YKFSmartCardInterface.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Connections/YKFConnectionProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Connections/YKFConnectionProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/NSArray+YKFTLVRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/NSArray+YKFTLVRecord.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/NSArray+YKFTLVRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/NSArray+YKFTLVRecord.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/TKTLVRecordAdditions+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/TKTLVRecordAdditions+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/TKTLVRecordAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/TKTLVRecordAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/UIDeviceAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/UIDeviceAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/UIDeviceAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/UIDeviceAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/UIWindowAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/UIWindowAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/UIWindowAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/UIWindowAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSDataAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSMutableDataAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSMutableDataAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSMutableDataAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSMutableDataAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSStringAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSStringAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/Additions/YKFNSStringAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/Additions/YKFNSStringAdditions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFAssert.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFBlockMacros.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFDispatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFDispatch.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFDispatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFDispatch.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFKVOObservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFKVOObservation.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFKVOObservation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFKVOObservation.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFLogger.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFLogger.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFPermissions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFPermissions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFPermissions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFPermissions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFTLVRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFTLVRecord.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFTLVRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFTLVRecord.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFView.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFView.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFViewController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/Helpers/YKFViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/Helpers/YKFViewController.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/EAAccessory+Testing.h: -------------------------------------------------------------------------------- 1 | ../TestExtentions/EAAccessory+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/EAAccessoryManager+Testing.h: -------------------------------------------------------------------------------- 1 | ../TestExtentions/EAAccessoryManager+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/EASession+Testing.h: -------------------------------------------------------------------------------- 1 | ../TestExtentions/EASession+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/MF_Base32Additions.h: -------------------------------------------------------------------------------- 1 | ../ThirdParties/MF_Base32Additions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/NFCNDEFReaderSession+Testing.h: -------------------------------------------------------------------------------- 1 | ../TestExtentions/NFCNDEFReaderSession+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/NSArray+YKFTLVRecord.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/NSArray+YKFTLVRecord.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/NSData+GZIP.h: -------------------------------------------------------------------------------- 1 | ../ThirdParties/NSData+GZIP.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/TKTLVRecordAdditions+Private.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/TKTLVRecordAdditions+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/UIDevice+Testing.h: -------------------------------------------------------------------------------- 1 | ../TestExtentions/UIDevice+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/UIDeviceAdditions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/UIDeviceAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/UIWindowAdditions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/UIWindowAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAPDU+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/YKFAPDU+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/YKFAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAPDUCommandInstruction.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/YKFAPDUCommandInstruction.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAPDUError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFAPDUError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryConnection+Debugging.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryConnection+Debugging.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryConnection.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryConnectionConfiguration.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryConnectionConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryConnectionController.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryDescription+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryDescription+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAccessoryDescription.h: -------------------------------------------------------------------------------- 1 | ../Connections/AccessoryConnection/YKFAccessoryDescription.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFAssert.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFAssert.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFBlockMacros.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFCBORDecoder.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORDecoder.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFCBOREncoder.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/CBOR/YKFCBOREncoder.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFCBORTag.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORTag.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFCBORType.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/CBOR/YKFCBORType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChalRespRequest+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/ChalResp/YKFChalRespRequest+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChalRespRequest.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/ChalResp/YKFChalRespRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChalRespSendRequest.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/ChalResp/YKFChalRespSendRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChallengeResponseError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFChallengeResponseError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChallengeResponseSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFChallengeResponseSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/ChalResp/YKFChallengeResponseSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFConnectionControllerProtocol.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/YKFConnectionControllerProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFConnectionProtocol.h: -------------------------------------------------------------------------------- 1 | ../Connections/YKFConnectionProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFDispatch.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFDispatch.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2ClientPinAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2ClientPinAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2ClientPinRequest.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2ClientPinResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2ClientPinResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2CommandAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2CommandAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2Error.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFFIDO2Error.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetAssertionAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2GetAssertionAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetAssertionResponse+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetAssertionResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2GetAssertionResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetInfoAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2GetInfoAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetInfoResponse+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetInfoResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2GetInfoResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2GetNextAssertionAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2GetNextAssertionAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2MakeCredentialAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2MakeCredentialAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2MakeCredentialResponse+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2MakeCredentialResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2MakeCredentialResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2PinAuthKey.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/Crypto/YKFFIDO2PinAuthKey.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2ResetAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2ResetAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2Session+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/YKFFIDO2Session+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2Session.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/YKFFIDO2Session.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2TouchPoolingAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/FIDO2/YKFFIDO2TouchPoolingAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2Type+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2Type+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFIDO2Type.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/FIDO2/YKFFIDO2Type.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFFeature.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/YKFFeature.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFHMAC1ChallengeResponseAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/ChalResp/YKFHMAC1ChallengeResponseAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFInvalidPinError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFInvalidPinError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFKVOObservation.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFKVOObservation.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFLogger.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFLogger.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementDeviceInfo+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFManagementDeviceInfo+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFManagementDeviceInfo.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementInterfaceConfiguration+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementInterfaceConfiguration.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/MGMT/YKFManagementInterfaceConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFManagementSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/MGMT/YKFManagementSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementSessionFeatures.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFManagementSessionFeatures.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFManagementWriteAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/MGMT/YKFManagementWriteAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCConnection.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCConnectionController.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCError+Errors.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCError+Errors.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCError.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCOTPSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/Sessions/YKFNFCOTPSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCOTPSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/Sessions/YKFNFCOTPSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCTagDescription+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCTagDescription+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNFCTagDescription.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFNFCTagDescription.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNSDataAdditions+Private.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/YKFNSDataAdditions+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNSDataAdditions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/YKFNSDataAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNSMutableDataAdditions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/YKFNSMutableDataAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFNSStringAdditions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/Additions/YKFNSStringAdditions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCalculateAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHCalculateAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCalculateAllAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHCalculateAllAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCalculateAllResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/OATH/YKFOATHCalculateAllResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCode+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCode+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCode.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredential+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredential+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredential.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredential.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredentialTemplate.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredentialTemplate.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredentialTypes.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredentialTypes.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredentialUtils.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredentialUtils.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHCredentialWithCode.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHCredentialWithCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHDeleteAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHDeleteAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFOATHError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHListAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHListAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHListResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/OATH/YKFOATHListResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHPutAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHPutAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHSelectApplicationResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/OATH/YKFOATHSelectApplicationResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHSendRemainingAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHSendRemainingAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/OATH/YKFOATHSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHSetAccessKeyAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHSetAccessKeyAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHUnlockAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFOATHUnlockAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOATHUnlockResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/OATH/YKFOATHUnlockResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPTextParser.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPTextParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPTextParserProtocol.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPTextParserProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPToken.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPToken.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPTokenParser.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPTokenParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPTokenValidator.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPTokenValidator.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPURIParser.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPURIParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFOTPURIParserProtocol.h: -------------------------------------------------------------------------------- 1 | ../SharedModel/YKFOTPURIParserProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVBioMetadata+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVBioMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVBioMetadata.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVBioMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFPIVError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVKeyType.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVKeyType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVManagementKeyMetadata+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVManagementKeyMetadata.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVManagementKeyMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVManagementKeyType.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVManagementKeyType.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVPadding+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVPadding+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVSessionFeatures.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVSessionFeatures.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVSlotMetadata+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPIVSlotMetadata.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/PIV/YKFPIVSlotMetadata.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFPermissions.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFPermissions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFQRCodeScanError+Errors.h: -------------------------------------------------------------------------------- 1 | ../Connections/QRReaderSession/YKFQRCodeScanError+Errors.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFQRCodeScanError.h: -------------------------------------------------------------------------------- 1 | ../Connections/QRReaderSession/YKFQRCodeScanError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFQRCodeScanOverlayView.h: -------------------------------------------------------------------------------- 1 | ../Connections/QRReaderSession/Views/YKFQRCodeScanOverlayView.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFQRCodeScanViewController.h: -------------------------------------------------------------------------------- 1 | ../Connections/QRReaderSession/YKFQRCodeScanViewController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFQRReaderSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/QRReaderSession/YKFQRReaderSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFRequest.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/YKFRequest.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCP03KeyParams.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCP03KeyParams.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCP11KeyParams.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCP11KeyParams.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPKeyParamsProtocol.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPKeyParamsProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPKeyRef.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPKeyRef.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPProcessor.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPProcessor.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPSecurityDomainSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPSecurityDomainSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPSecurityDomainSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPSecurityDomainSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPSessionKeys.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPSessionKeys.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPState.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPState.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSCPStaticKeys.h: -------------------------------------------------------------------------------- 1 | ../Connections/SCP/YKFSCPStaticKeys.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSelectApplicationAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/YKFSelectApplicationAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSelectOATHApplicationAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/OATH/YKFSelectOATHApplicationAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSessionError+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFSessionError+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSessionError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFSessionError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSessionProtocol+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/YKFSessionProtocol+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSlot.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/YKFSlot.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSmartCardConnection+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/SmartCardConnection/YKFSmartCardConnection+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSmartCardConnection.h: -------------------------------------------------------------------------------- 1 | ../Connections/SmartCardConnection/YKFSmartCardConnection.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSmartCardConnectionController.h: -------------------------------------------------------------------------------- 1 | ../Connections/SmartCardConnection/YKFSmartCardConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFSmartCardInterface.h: -------------------------------------------------------------------------------- 1 | ../Connections/SmartCardInterface/YKFSmartCardInterface.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFTLVRecord.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFTLVRecord.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FError.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Errors/YKFU2FError.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FRegisterAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/U2F/YKFU2FRegisterAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FRegisterResponse+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/U2F/YKFU2FRegisterResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FRegisterResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/U2F/YKFU2FRegisterResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FSession+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/U2F/YKFU2FSession+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FSession.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/U2F/YKFU2FSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FSignAPDU.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/APDU/U2F/YKFU2FSignAPDU.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FSignResponse+Private.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/U2F/YKFU2FSignResponse+Private.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFU2FSignResponse.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Requests/U2F/YKFU2FSignResponse.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFURIIdentifierCode.h: -------------------------------------------------------------------------------- 1 | ../Connections/NFCConnection/YKFURIIdentifierCode.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFVersion.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/YKFVersion.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFView.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFView.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFViewController.h: -------------------------------------------------------------------------------- 1 | ../Helpers/YKFViewController.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YKFWebAuthnClientData.h: -------------------------------------------------------------------------------- 1 | ../Connections/Shared/Sessions/FIDO2/WebAuthN/YKFWebAuthnClientData.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKit.h: -------------------------------------------------------------------------------- 1 | ../YubiKit.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitConfiguration.h: -------------------------------------------------------------------------------- 1 | ../YubiKitConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitDeviceCapabilities+Testing.h: -------------------------------------------------------------------------------- 1 | ../YubiKitDeviceCapabilities+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitDeviceCapabilities.h: -------------------------------------------------------------------------------- 1 | ../YubiKitDeviceCapabilities.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitExternalLocalization.h: -------------------------------------------------------------------------------- 1 | ../YubiKitExternalLocalization.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitLogger.h: -------------------------------------------------------------------------------- 1 | ../YubiKitLogger.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SPMHeaderLinks/YubiKitManager.h: -------------------------------------------------------------------------------- 1 | ../YubiKitManager.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTextParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTextParser.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTextParserProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTextParserProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPToken.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPToken.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPToken.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPToken.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTokenParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTokenParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTokenParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTokenParser.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTokenValidator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTokenValidator.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPTokenValidator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPTokenValidator.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPURIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPURIParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPURIParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPURIParser.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/SharedModel/YKFOTPURIParserProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/SharedModel/YKFOTPURIParserProtocol.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/TestExtentions/EAAccessory+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/TestExtentions/EAAccessory+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/TestExtentions/EAAccessoryManager+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/TestExtentions/EAAccessoryManager+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/TestExtentions/EASession+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/TestExtentions/EASession+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/TestExtentions/NFCNDEFReaderSession+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/TestExtentions/NFCNDEFReaderSession+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/TestExtentions/UIDevice+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/TestExtentions/UIDevice+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/ThirdParties/MF_Base32Additions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/ThirdParties/MF_Base32Additions.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/ThirdParties/MF_Base32Additions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/ThirdParties/MF_Base32Additions.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/ThirdParties/NSData+GZIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/ThirdParties/NSData+GZIP.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/ThirdParties/NSData+GZIP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/ThirdParties/NSData+GZIP.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKit.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitConfiguration.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitConfiguration.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitDeviceCapabilities+Testing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitDeviceCapabilities+Testing.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitDeviceCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitDeviceCapabilities.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitDeviceCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitDeviceCapabilities.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitExternalLocalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitExternalLocalization.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitExternalLocalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitExternalLocalization.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitLogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitLogger.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitLogger.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitLogger.m -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitManager.h -------------------------------------------------------------------------------- /YubiKit/YubiKit/YubiKitManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKit/YubiKitManager.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeEAAccessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeEAAccessory.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeEAAccessory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeEAAccessory.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeEASession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeEASession.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeEASession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeEASession.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeNFCNDEFReaderSession.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeNFCNDEFReaderSession.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeNFCNDEFReaderSession.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeNFCNDEFReaderSession.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeUIDevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeUIDevice.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeUIDevice.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeUIDevice.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFConnectionController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFConnectionController.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFConnectionController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFConnectionController.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFOTPTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFOTPTextParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFOTPTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFOTPTextParser.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFOTPURIParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFOTPURIParser.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYKFOTPURIParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYKFOTPURIParser.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYubiKitDeviceCapabilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYubiKitDeviceCapabilities.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Fakes/FakeYubiKitDeviceCapabilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Fakes/FakeYubiKitDeviceCapabilities.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Info.plist -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFAESCMACTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFAESCMACTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFAccessoryConnectionConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFAccessoryConnectionConfigurationTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFAccessoryConnectionControllerTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFAccessoryConnectionControllerTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFAccessoryDescriptionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFAccessoryDescriptionTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFCBORDecoderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFCBORDecoderTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFCBOREncoderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFCBOREncoderTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFNFCOTPServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFNFCOTPServiceTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFNSDataAdditionsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFNSDataAdditionsTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFOATHCredentialTemplateTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFOATHCredentialTemplateTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFOTPTextParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFOTPTextParserTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFOTPTokenParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFOTPTokenParserTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFOTPTokenValidatorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFOTPTokenValidatorTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFOTPURIParserTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFOTPURIParserTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFPIVPaddingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFPIVPaddingTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFSCPTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFSCPTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFSmartCardInterfaceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFSmartCardInterfaceTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFTLVRecordTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFTLVRecordTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFTestCase.h -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFTestCase.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKFU2FServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKFU2FServiceTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YKNSStringAdditionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YKNSStringAdditionTests.m -------------------------------------------------------------------------------- /YubiKit/YubiKitTests/Tests/YubiKitDeviceCapabilitiesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/YubiKitTests/Tests/YubiKitDeviceCapabilitiesTests.m -------------------------------------------------------------------------------- /YubiKit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKit/build.sh -------------------------------------------------------------------------------- /YubiKitDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/README.md -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo-Bridging-Header.h -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo.xcodeproj/xcshareddata/xcschemes/YubiKitDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo.xcodeproj/xcshareddata/xcschemes/YubiKitDemo.xcscheme -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo.xcodeproj/xcuserdata/conradciobanica.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo.xcodeproj/xcuserdata/conradciobanica.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/AppDelegate.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-1024.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-76.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-76@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Colors/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Colors/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Colors/KeyActionContainerViewColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Colors/KeyActionContainerViewColor.colorset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_2X-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_2X-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/FIDO2 Icon.imageset/code_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_2X-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_2X-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Info Icon.imageset/InfoIcon_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_2X-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_2X-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/OTP Icon.imageset/OtpIcon_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon_2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon_2x-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/Other Icon.imageset/OtherIcon_2x.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_2X-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_2X-1.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Icons/QR Icon.imageset/QRIcon_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASKey.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASKey.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASKey.imageset/LASKey.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASKey.imageset/LASKey.pdf -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhone.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhone.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhone.imageset/LASPhone.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhone.imageset/LASPhone.pdf -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhoneNew.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhoneNew.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhoneNew.imageset/LASPhoneNew.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/LASPhoneNew.imageset/LASPhoneNew.pdf -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan Key.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan Key.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan Key.imageset/NFCPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan Key.imageset/NFCPNG.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan QR .imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan QR .imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan QR .imageset/QRPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Scan QR .imageset/QRPNG.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Warning.imageset/Warning_3X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Full Logo.imageset/YubicoFullLogo_3X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/Contents.json -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_1X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_1X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_2X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_2X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/Assets.xcassets/Yubico Logo.imageset/YubicoSmallLogo_3X.png -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Assets/NamedColors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Assets/NamedColors.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/About/About.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/About/About.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/About/AboutViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/About/AboutViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/FIDO2/FIDO2Demo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/FIDO2/FIDO2Demo.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/FIDO2/FIDO2ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/FIDO2/FIDO2ViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/FIDO2/StatusView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/FIDO2/StatusView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/OTPDemo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/OTPDemo.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/OTPDetailsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/OTPDetailsViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/OTPScanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/OTPScanViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/OTPUIResponder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/OTPUIResponder.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanContainerView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanResultsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanResultsView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanResultsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPScanResultsView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPWaitingScanView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPWaitingScanView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPWaitingScanView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/OTP/Views/OTPWaitingScanView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/FIDO2DemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/FIDO2DemoViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/Credential.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/Credential.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialListView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialsProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/CredentialsProvider.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/OATHHostingController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OATH/OATHHostingController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OtherDemoRootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/OtherDemoRootViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/RawDemoModel/RawDemoResponseParser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/RawDemoModel/RawDemoResponseParser.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/RawDemoModel/RawDemoSecCertificate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/RawDemoModel/RawDemoSecCertificate.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/SmartCardInterfaceDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/SmartCardInterfaceDemoViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/Demos/U2FDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/Demos/U2FDemoViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/Other/OtherDemosStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/Other/OtherDemosStoryboard.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/QRDemo.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/QRDemo.storyboard -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/QRScanViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/QRScanViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanContainerView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanContainerView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanNotAvailableView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanNotAvailableView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanNotAvailableView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanNotAvailableView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanResultsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanResultsView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanResultsView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanResultsView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanWaitingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanWaitingView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanWaitingView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/QR/Views/QRCodeScanWaitingView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/ApplicationUIAppearance.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/ApplicationUIAppearance.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/DemoCustomTabBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/DemoCustomTabBar.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/FIDO2PinInputController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/FIDO2PinInputController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyActionSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyActionSheetView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyActionSheetView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyActionSheetView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyInteractionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/MFIKeyActionSheet/MFIKeyInteractionViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/ProgressHud/ProgressHudView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/ProgressHud/ProgressHudView.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/ProgressHud/ProgressHudView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/ProgressHud/ProgressHudView.xib -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/RootViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/RootViewController.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/SceneObserver/SceneObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/SceneObserver/SceneObserver.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Demos/SharedUI/UIView+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Demos/SharedUI/UIView+Extensions.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Examples/CustomLogger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Examples/CustomLogger.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Examples/Observers/AccessorySessionObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Examples/Observers/AccessorySessionObserver.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Examples/Observers/FIDO2ServiceObserver.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Examples/Observers/FIDO2ServiceObserver.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Info.plist -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/Extensions/DataExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/Extensions/DataExtensions.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateBeginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateBeginRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateBeginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateBeginResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateFinishRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateFinishRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateFinishResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnAuthenticateFinishResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnCreateUserResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnCreateUserResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnLoginUserResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnLoginUserResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterBeginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterBeginRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterBeginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterBeginResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterFinishRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterFinishRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterFinishResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRegisterFinishResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnResponse.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnUserRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/Requests/WebAuthnUserRequest.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/WebAuthnService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/WebAuthnService.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/Model/WebAuthN/WebServiceError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/Model/WebAuthN/WebServiceError.swift -------------------------------------------------------------------------------- /YubiKitDemo/YubiKitDemo/YubiKitDemo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/YubiKitDemo/YubiKitDemo.entitlements -------------------------------------------------------------------------------- /YubiKitDemo/docassets/demo-fido2-registration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitDemo/docassets/demo-fido2-registration.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-1024.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-60@2x.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-60@3x.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-76.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-76@2x.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/AppIcon.appiconset/TestsIcon-83.5@2x.png -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YubiKitTests/HostApp/HostApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/HostApp.swift -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Info.plist -------------------------------------------------------------------------------- /YubiKitTests/HostApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/HostApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /YubiKitTests/Tests/ChallengeResponseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/ChallengeResponseTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/ConnectionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/ConnectionTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/FIDO2Tests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/FIDO2Tests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Info.plist -------------------------------------------------------------------------------- /YubiKitTests/Tests/ManagementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/ManagementTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/OATHTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/OATHTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/PIVTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/PIVTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/SCPTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/SCPTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/SessionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/SessionTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/U2FTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/U2FTests.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/Utilities/Data+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Utilities/Data+Extensions.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/Utilities/NSDate+Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Utilities/NSDate+Utils.h -------------------------------------------------------------------------------- /YubiKitTests/Tests/Utilities/NSDate+Utils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Utilities/NSDate+Utils.m -------------------------------------------------------------------------------- /YubiKitTests/Tests/Utilities/XCTestCase+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Utilities/XCTestCase+Extensions.swift -------------------------------------------------------------------------------- /YubiKitTests/Tests/Utilities/YubiKeyConnection.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/Tests/Utilities/YubiKeyConnection.swift -------------------------------------------------------------------------------- /YubiKitTests/YubiKitTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/YubiKitTests-Bridging-Header.h -------------------------------------------------------------------------------- /YubiKitTests/YubiKitTests.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/YubiKitTests.entitlements -------------------------------------------------------------------------------- /YubiKitTests/YubiKitTests.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/YubiKitTests.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YubiKitTests/YubiKitTests.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/YubiKitTests/YubiKitTests.xcodeproj/xcshareddata/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /docassets/cert.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docassets/cert.der -------------------------------------------------------------------------------- /docs/NFC-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/NFC-Notes.md -------------------------------------------------------------------------------- /docs/chr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/chr.md -------------------------------------------------------------------------------- /docs/easy-handling-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/easy-handling-connections.md -------------------------------------------------------------------------------- /docs/fido2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/fido2.md -------------------------------------------------------------------------------- /docs/mgmt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/mgmt.md -------------------------------------------------------------------------------- /docs/oath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/oath.md -------------------------------------------------------------------------------- /docs/otp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/otp.md -------------------------------------------------------------------------------- /docs/piv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/piv.md -------------------------------------------------------------------------------- /docs/raw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/raw.md -------------------------------------------------------------------------------- /docs/smartcard-interface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/smartcard-interface.md -------------------------------------------------------------------------------- /docs/transitioning-sdk-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/transitioning-sdk-4.md -------------------------------------------------------------------------------- /docs/u2f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yubico/yubikit-ios/HEAD/docs/u2f.md --------------------------------------------------------------------------------