From 46ac32540554efeb2efd8f45f0b04a0bf73d3724 Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:05:45 -0700 Subject: [PATCH 1/9] convert project to cocoapod --- Example/Podfile | 11 + Example/Podfile.lock | 16 + Example/Pods/Local Podspecs/RSA.podspec.json | 22 + Example/Pods/Manifest.lock | 16 + Example/Pods/Pods.xcodeproj/project.pbxproj | 689 ++++++++++++++++++ .../xcschemes/Pods-RSA_Example.xcscheme | 71 ++ .../xcschemes/RSA.xcscheme | 60 ++ .../xcschemes/xcschememanagement.plist | 37 + .../Pods-RSA_Example/Info.plist | 26 + ...Pods-RSA_Example-acknowledgements.markdown | 26 + .../Pods-RSA_Example-acknowledgements.plist | 56 ++ .../Pods-RSA_Example/Pods-RSA_Example-dummy.m | 5 + .../Pods-RSA_Example-frameworks.sh | 91 +++ .../Pods-RSA_Example-resources.sh | 102 +++ .../Pods-RSA_Example-umbrella.h | 6 + .../Pods-RSA_Example.debug.xcconfig | 8 + .../Pods-RSA_Example.modulemap | 6 + .../Pods-RSA_Example.release.xcconfig | 8 + .../Pods-RSA_Tests/Info.plist | 26 + .../Pods-RSA_Tests-acknowledgements.markdown | 3 + .../Pods-RSA_Tests-acknowledgements.plist | 29 + .../Pods-RSA_Tests/Pods-RSA_Tests-dummy.m | 5 + .../Pods-RSA_Tests-frameworks.sh | 84 +++ .../Pods-RSA_Tests-resources.sh | 102 +++ .../Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h | 6 + .../Pods-RSA_Tests.debug.xcconfig | 7 + .../Pods-RSA_Tests/Pods-RSA_Tests.modulemap | 6 + .../Pods-RSA_Tests.release.xcconfig | 7 + .../Pods/Target Support Files/RSA/Info.plist | 26 + .../Pods/Target Support Files/RSA/RSA-dummy.m | 5 + .../Target Support Files/RSA/RSA-prefix.pch | 4 + .../Target Support Files/RSA/RSA-umbrella.h | 6 + .../Target Support Files/RSA/RSA.modulemap | 6 + .../Target Support Files/RSA/RSA.xcconfig | 8 + Example/RSA.xcodeproj/project.pbxproj | 417 +++++++++++ .../contents.xcworkspacedata | 2 +- .../xcschemes/RSA-Example.xcscheme | 91 +++ .../xcschemes/xcschememanagement.plist | 19 + .../RSA.xcworkspace/contents.xcworkspacedata | 10 + {RSAUtil => Example/RSA}/AppDelegate.h | 0 {RSAUtil => Example/RSA}/AppDelegate.m | 0 .../RSA}/Base.lproj/LaunchScreen.xib | 0 .../RSA}/Base.lproj/Main.storyboard | 0 .../AppIcon.appiconset/Contents.json | 25 + {RSAUtil => Example/RSA}/Info.plist | 0 Example/RSA/RSA-Prefix.pch | 16 + {RSAUtil => Example/RSA}/ViewController.h | 0 {RSAUtil => Example/RSA}/ViewController.m | 0 {RSAUtil => Example/RSA}/main.m | 0 RSA.podspec | 42 ++ RSA/Assets/.gitkeep | 0 RSA/Classes/.gitkeep | 0 RSA.h => RSA/Classes/RSA.h | 0 RSA.m => RSA/Classes/RSA.m | 0 RSAUtil.xcodeproj/project.pbxproj | 312 -------- .../xcshareddata/RSAUtil.xccheckout | 41 -- _Pods.xcodeproj | 1 + 57 files changed, 2208 insertions(+), 354 deletions(-) create mode 100644 Example/Podfile create mode 100644 Example/Podfile.lock create mode 100644 Example/Pods/Local Podspecs/RSA.podspec.json create mode 100644 Example/Pods/Manifest.lock create mode 100644 Example/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme create mode 100644 Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme create mode 100644 Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m create mode 100755 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh create mode 100755 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap create mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig create mode 100644 Example/Pods/Target Support Files/RSA/Info.plist create mode 100644 Example/Pods/Target Support Files/RSA/RSA-dummy.m create mode 100644 Example/Pods/Target Support Files/RSA/RSA-prefix.pch create mode 100644 Example/Pods/Target Support Files/RSA/RSA-umbrella.h create mode 100644 Example/Pods/Target Support Files/RSA/RSA.modulemap create mode 100644 Example/Pods/Target Support Files/RSA/RSA.xcconfig create mode 100644 Example/RSA.xcodeproj/project.pbxproj rename {RSAUtil.xcodeproj => Example/RSA.xcodeproj}/project.xcworkspace/contents.xcworkspacedata (71%) create mode 100644 Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme create mode 100644 Example/RSA.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist create mode 100644 Example/RSA.xcworkspace/contents.xcworkspacedata rename {RSAUtil => Example/RSA}/AppDelegate.h (100%) rename {RSAUtil => Example/RSA}/AppDelegate.m (100%) rename {RSAUtil => Example/RSA}/Base.lproj/LaunchScreen.xib (100%) rename {RSAUtil => Example/RSA}/Base.lproj/Main.storyboard (100%) rename {RSAUtil => Example/RSA}/Images.xcassets/AppIcon.appiconset/Contents.json (72%) rename {RSAUtil => Example/RSA}/Info.plist (100%) create mode 100644 Example/RSA/RSA-Prefix.pch rename {RSAUtil => Example/RSA}/ViewController.h (100%) rename {RSAUtil => Example/RSA}/ViewController.m (100%) rename {RSAUtil => Example/RSA}/main.m (100%) create mode 100644 RSA.podspec create mode 100644 RSA/Assets/.gitkeep create mode 100644 RSA/Classes/.gitkeep rename RSA.h => RSA/Classes/RSA.h (100%) rename RSA.m => RSA/Classes/RSA.m (100%) delete mode 100644 RSAUtil.xcodeproj/project.pbxproj delete mode 100644 RSAUtil.xcodeproj/project.xcworkspace/xcshareddata/RSAUtil.xccheckout create mode 120000 _Pods.xcodeproj diff --git a/Example/Podfile b/Example/Podfile new file mode 100644 index 0000000..51d5753 --- /dev/null +++ b/Example/Podfile @@ -0,0 +1,11 @@ +use_frameworks! + +target 'RSA_Example' do + pod 'RSA', :path => '../' + + target 'RSA_Tests' do + inherit! :search_paths + + + end +end diff --git a/Example/Podfile.lock b/Example/Podfile.lock new file mode 100644 index 0000000..cb0a9ea --- /dev/null +++ b/Example/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - RSA (0.1.0) + +DEPENDENCIES: + - RSA (from `../`) + +EXTERNAL SOURCES: + RSA: + :path: ../ + +SPEC CHECKSUMS: + RSA: b2faf75abb79506397d78bce775b6b944247f881 + +PODFILE CHECKSUM: f68e9b34784aba7b52692186b633df8e1eb87072 + +COCOAPODS: 1.0.1 diff --git a/Example/Pods/Local Podspecs/RSA.podspec.json b/Example/Pods/Local Podspecs/RSA.podspec.json new file mode 100644 index 0000000..e3c1af4 --- /dev/null +++ b/Example/Pods/Local Podspecs/RSA.podspec.json @@ -0,0 +1,22 @@ +{ + "name": "RSA", + "version": "0.1.0", + "summary": "A short description of RSA.", + "description": "TODO: Add long description of the pod here.", + "homepage": "https://github.com//RSA", + "license": { + "type": "MIT", + "file": "LICENSE" + }, + "authors": { + "chorsfield": "chorsfield@defymedia.com" + }, + "source": { + "git": "https://github.com//RSA.git", + "tag": "0.1.0" + }, + "platforms": { + "ios": "8.0" + }, + "source_files": "RSA/Classes/**/*" +} diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock new file mode 100644 index 0000000..cb0a9ea --- /dev/null +++ b/Example/Pods/Manifest.lock @@ -0,0 +1,16 @@ +PODS: + - RSA (0.1.0) + +DEPENDENCIES: + - RSA (from `../`) + +EXTERNAL SOURCES: + RSA: + :path: ../ + +SPEC CHECKSUMS: + RSA: b2faf75abb79506397d78bce775b6b944247f881 + +PODFILE CHECKSUM: f68e9b34784aba7b52692186b633df8e1eb87072 + +COCOAPODS: 1.0.1 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..03794e6 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,689 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 054EE91660B3D155016A19E0852A516B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + 0EF229D30FFF9BDD8646CF5267C71144 /* RSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */; }; + 309715681DC2776B00A0EFDA /* RSA.h in Headers */ = {isa = PBXBuildFile; fileRef = 309715661DC2776B00A0EFDA /* RSA.h */; }; + 309715691DC2776B00A0EFDA /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 309715671DC2776B00A0EFDA /* RSA.m */; }; + 32ADFCA1F5D3982E88DA4AC2FC99DCEB /* Pods-RSA_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */; }; + 3E377D2B586305C63D5543E77856D0BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + 669B6F58FCB4BA88A35D4F129D13708E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; + B90E6C245D9BEA57A0215E18DC40EE96 /* Pods-RSA_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */; }; + D8F48E3B239FE353BE070B2C413889F7 /* RSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E2857FAC0DCD6FD7E0C73249DE682209 /* Pods-RSA_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EE877991814A22E0F46DD95B7C6A393A /* Pods-RSA_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 14E1FC02E56DD91F58B16F47D56F4E9E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = CB68AE72CC202BFB68B1A8077065E5A1; + remoteInfo = RSA; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 00545F058DD71216A641D6D7D1AFE0FA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 1C09238F5806CCD1A6A7F86A4C361CBA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 1E984F41284428F79778787A734063E9 /* Pods-RSA_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RSA_Tests-acknowledgements.markdown"; sourceTree = ""; }; + 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSA-dummy.m"; sourceTree = ""; }; + 2475820A0B8E0786A43629605C644BE3 /* Pods-RSA_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RSA_Example-acknowledgements.plist"; sourceTree = ""; }; + 2FD0F265281CB66F8850753A8E6D0775 /* Pods-RSA_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RSA_Example-acknowledgements.markdown"; sourceTree = ""; }; + 309715661DC2776B00A0EFDA /* RSA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSA.h; sourceTree = ""; }; + 309715671DC2776B00A0EFDA /* RSA.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSA.m; sourceTree = ""; }; + 349A38E7CEC8E9A0709A7A3E06151567 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.release.xcconfig"; sourceTree = ""; }; + 4E136B69D150DE9FFF2CD7E1924C3E46 /* Pods-RSA_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-resources.sh"; sourceTree = ""; }; + 6AC87CEC2C3E5CD9529E20878D91F9DD /* Pods-RSA_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Tests-frameworks.sh"; sourceTree = ""; }; + 8734C2BB5E8D4C5D5316F3E1A7234608 /* RSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = RSA.modulemap; sourceTree = ""; }; + 8E8187F950ED4CFDB6E13C0606362158 /* Pods-RSA_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RSA_Tests-acknowledgements.plist"; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 94A4FA7BC11947DC43C5E8DD7A0A6AF3 /* Pods-RSA_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Tests-resources.sh"; sourceTree = ""; }; + 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BB0A85EC6BC9C0B0D6696AA437672AD8 /* Pods-RSA_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-RSA_Tests.modulemap"; sourceTree = ""; }; + BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RSA_Tests-dummy.m"; sourceTree = ""; }; + BBC48FD9C7DCFDA523F2E46A854D7816 /* RSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-prefix.pch"; sourceTree = ""; }; + C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RSA_Example-dummy.m"; sourceTree = ""; }; + CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; + CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RSA_Example-umbrella.h"; sourceTree = ""; }; + CF6E8A2728654EBC80F1E841EE124405 /* Pods-RSA_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-RSA_Example.modulemap"; sourceTree = ""; }; + D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Tests.release.xcconfig"; sourceTree = ""; }; + D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RSA_Tests-umbrella.h"; sourceTree = ""; }; + DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSA.xcconfig; sourceTree = ""; }; + E2F606B6B431CCAE46E01040F9AE3BA3 /* Pods-RSA_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-frameworks.sh"; sourceTree = ""; }; + E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-umbrella.h"; sourceTree = ""; }; + EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Tests.debug.xcconfig"; sourceTree = ""; }; + FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RSA.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 04383311A823B139CA20345D960B5361 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 054EE91660B3D155016A19E0852A516B /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B0630DED11ED73286855088249253540 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 3E377D2B586305C63D5543E77856D0BE /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F971F86B0D01D01D6A8E22AF1B5D7640 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 669B6F58FCB4BA88A35D4F129D13708E /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 085FC2AF1D7CF28E2185A99E0F64364A /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 9B97ECA50DC22CE61301E383D7F1CCA9 /* Pods-RSA_Example */, + 2C4CE81D149515A9717AE4B054E19219 /* Pods-RSA_Tests */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 2C4CE81D149515A9717AE4B054E19219 /* Pods-RSA_Tests */ = { + isa = PBXGroup; + children = ( + 00545F058DD71216A641D6D7D1AFE0FA /* Info.plist */, + BB0A85EC6BC9C0B0D6696AA437672AD8 /* Pods-RSA_Tests.modulemap */, + 1E984F41284428F79778787A734063E9 /* Pods-RSA_Tests-acknowledgements.markdown */, + 8E8187F950ED4CFDB6E13C0606362158 /* Pods-RSA_Tests-acknowledgements.plist */, + BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */, + 6AC87CEC2C3E5CD9529E20878D91F9DD /* Pods-RSA_Tests-frameworks.sh */, + 94A4FA7BC11947DC43C5E8DD7A0A6AF3 /* Pods-RSA_Tests-resources.sh */, + D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */, + EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */, + D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */, + ); + name = "Pods-RSA_Tests"; + path = "Target Support Files/Pods-RSA_Tests"; + sourceTree = ""; + }; + 2E0CD010C2EBBB577925845288E82C25 /* RSA */ = { + isa = PBXGroup; + children = ( + 993E893EC61615C45A159FBB02992BCD /* Classes */, + ); + path = RSA; + sourceTree = ""; + }; + 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = { + isa = PBXGroup; + children = ( + CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 6177638075C968DD9A8B41A1F0FCEEEA /* RSA */ = { + isa = PBXGroup; + children = ( + 2E0CD010C2EBBB577925845288E82C25 /* RSA */, + 7F9A1E7DAF80E5F6328C1852336F13F8 /* Support Files */, + ); + name = RSA; + path = ../..; + sourceTree = ""; + }; + 6CA7A6A7B909B36532B9354E2FBC69BE /* Development Pods */ = { + isa = PBXGroup; + children = ( + 6177638075C968DD9A8B41A1F0FCEEEA /* RSA */, + ); + name = "Development Pods"; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + 6CA7A6A7B909B36532B9354E2FBC69BE /* Development Pods */, + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, + A0676319266B72811F858DE95F3EBBFB /* Products */, + 085FC2AF1D7CF28E2185A99E0F64364A /* Targets Support Files */, + ); + sourceTree = ""; + }; + 7F9A1E7DAF80E5F6328C1852336F13F8 /* Support Files */ = { + isa = PBXGroup; + children = ( + 1C09238F5806CCD1A6A7F86A4C361CBA /* Info.plist */, + 8734C2BB5E8D4C5D5316F3E1A7234608 /* RSA.modulemap */, + DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */, + 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */, + BBC48FD9C7DCFDA523F2E46A854D7816 /* RSA-prefix.pch */, + E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */, + ); + name = "Support Files"; + path = "Example/Pods/Target Support Files/RSA"; + sourceTree = ""; + }; + 993E893EC61615C45A159FBB02992BCD /* Classes */ = { + isa = PBXGroup; + children = ( + 309715661DC2776B00A0EFDA /* RSA.h */, + 309715671DC2776B00A0EFDA /* RSA.m */, + ); + path = Classes; + sourceTree = ""; + }; + 9B97ECA50DC22CE61301E383D7F1CCA9 /* Pods-RSA_Example */ = { + isa = PBXGroup; + children = ( + 349A38E7CEC8E9A0709A7A3E06151567 /* Info.plist */, + CF6E8A2728654EBC80F1E841EE124405 /* Pods-RSA_Example.modulemap */, + 2FD0F265281CB66F8850753A8E6D0775 /* Pods-RSA_Example-acknowledgements.markdown */, + 2475820A0B8E0786A43629605C644BE3 /* Pods-RSA_Example-acknowledgements.plist */, + C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */, + E2F606B6B431CCAE46E01040F9AE3BA3 /* Pods-RSA_Example-frameworks.sh */, + 4E136B69D150DE9FFF2CD7E1924C3E46 /* Pods-RSA_Example-resources.sh */, + CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */, + CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */, + 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */, + ); + name = "Pods-RSA_Example"; + path = "Target Support Files/Pods-RSA_Example"; + sourceTree = ""; + }; + A0676319266B72811F858DE95F3EBBFB /* Products */ = { + isa = PBXGroup; + children = ( + A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */, + 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */, + FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */, + ); + name = Products; + sourceTree = ""; + }; + BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { + isa = PBXGroup; + children = ( + 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 3BE9276B5DE6058D87A215BFC29E1A48 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E2857FAC0DCD6FD7E0C73249DE682209 /* Pods-RSA_Example-umbrella.h in Headers */, + 309715681DC2776B00A0EFDA /* RSA.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 971279CDD3FF92761A9EC3351B0D553E /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + EE877991814A22E0F46DD95B7C6A393A /* Pods-RSA_Tests-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DE5663D063FF4B21F7E761128B8F97E6 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + D8F48E3B239FE353BE070B2C413889F7 /* RSA-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + B4F4BCFC39D80B8BFB99EBC0261C8A01 /* Pods-RSA_Example */ = { + isa = PBXNativeTarget; + buildConfigurationList = 8257444BCD48FA6254CFCD69AD610B70 /* Build configuration list for PBXNativeTarget "Pods-RSA_Example" */; + buildPhases = ( + 4A14D742626B580901CE119A85B23F21 /* Sources */, + B0630DED11ED73286855088249253540 /* Frameworks */, + 3BE9276B5DE6058D87A215BFC29E1A48 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 8179916F5C515B2DD7FB43F3B73823E6 /* PBXTargetDependency */, + ); + name = "Pods-RSA_Example"; + productName = "Pods-RSA_Example"; + productReference = A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */; + productType = "com.apple.product-type.framework"; + }; + CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */ = { + isa = PBXNativeTarget; + buildConfigurationList = 7C920A881AA7CCA6966282EC36B7150A /* Build configuration list for PBXNativeTarget "RSA" */; + buildPhases = ( + BC70C7DCAF0BDBB00EE52D92C0B47D2A /* Sources */, + F971F86B0D01D01D6A8E22AF1B5D7640 /* Frameworks */, + DE5663D063FF4B21F7E761128B8F97E6 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSA; + productName = RSA; + productReference = FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */; + productType = "com.apple.product-type.framework"; + }; + FFE0CE3B4B63DAF4F2A47F43C042B54B /* Pods-RSA_Tests */ = { + isa = PBXNativeTarget; + buildConfigurationList = BD2BC26A542EAA0D3C8F5360C55E0E82 /* Build configuration list for PBXNativeTarget "Pods-RSA_Tests" */; + buildPhases = ( + C9B5F19E740B00EAA406E1BF42B946DB /* Sources */, + 04383311A823B139CA20345D960B5361 /* Frameworks */, + 971279CDD3FF92761A9EC3351B0D553E /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-RSA_Tests"; + productName = "Pods-RSA_Tests"; + productReference = 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0730; + LastUpgradeCheck = 0700; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = A0676319266B72811F858DE95F3EBBFB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + B4F4BCFC39D80B8BFB99EBC0261C8A01 /* Pods-RSA_Example */, + FFE0CE3B4B63DAF4F2A47F43C042B54B /* Pods-RSA_Tests */, + CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 4A14D742626B580901CE119A85B23F21 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 309715691DC2776B00A0EFDA /* RSA.m in Sources */, + B90E6C245D9BEA57A0215E18DC40EE96 /* Pods-RSA_Example-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BC70C7DCAF0BDBB00EE52D92C0B47D2A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 0EF229D30FFF9BDD8646CF5267C71144 /* RSA-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C9B5F19E740B00EAA406E1BF42B946DB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 32ADFCA1F5D3982E88DA4AC2FC99DCEB /* Pods-RSA_Tests-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 8179916F5C515B2DD7FB43F3B73823E6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = RSA; + target = CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */; + targetProxy = 14E1FC02E56DD91F58B16F47D56F4E9E /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4B0B938EB7A9129572CA8619A9FC1DC2 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-RSA_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_RSA_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + A22D172BA8C15FD313CB03D2BE0BAF36 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-RSA_Tests/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_RSA_Tests; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B473482FFDADBA6C09C3BE8847E914B9 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/RSA/RSA-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RSA/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/RSA/RSA.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = RSA; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + D3A651A449CB3E93FEECCEDFAFB04F77 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREFIX_HEADER = "Target Support Files/RSA/RSA-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/RSA/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/RSA/RSA.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + PRODUCT_NAME = RSA; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + ONLY_ACTIVE_ARCH = YES; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + E29F1C0560425FE0C0D7150A5C1DB4E0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-RSA_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_RSA_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + F993C228C84224E197D9E232652CEAA1 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */; + buildSettings = { + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_NO_COMMON_BLOCKS = YES; + INFOPLIST_FILE = "Target Support Files/Pods-RSA_Example/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap"; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = Pods_RSA_Example; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */, + 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 7C920A881AA7CCA6966282EC36B7150A /* Build configuration list for PBXNativeTarget "RSA" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + D3A651A449CB3E93FEECCEDFAFB04F77 /* Debug */, + B473482FFDADBA6C09C3BE8847E914B9 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 8257444BCD48FA6254CFCD69AD610B70 /* Build configuration list for PBXNativeTarget "Pods-RSA_Example" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E29F1C0560425FE0C0D7150A5C1DB4E0 /* Debug */, + F993C228C84224E197D9E232652CEAA1 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + BD2BC26A542EAA0D3C8F5360C55E0E82 /* Build configuration list for PBXNativeTarget "Pods-RSA_Tests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A22D172BA8C15FD313CB03D2BE0BAF36 /* Debug */, + 4B0B938EB7A9129572CA8619A9FC1DC2 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme new file mode 100644 index 0000000..33811c6 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme new file mode 100644 index 0000000..d554320 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..4d99c94 --- /dev/null +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,37 @@ + + + + + SchemeUserState + + Pods-RSA_Example.xcscheme + + isShown + + + RSA.xcscheme + + isShown + + + + SuppressBuildableAutocreation + + B4F4BCFC39D80B8BFB99EBC0261C8A01 + + primary + + + CB68AE72CC202BFB68B1A8077065E5A1 + + primary + + + FFE0CE3B4B63DAF4F2A47F43C042B54B + + primary + + + + + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist b/Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown new file mode 100644 index 0000000..a3c5a60 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown @@ -0,0 +1,26 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## RSA + +Copyright (c) 2016 chorsfield + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist new file mode 100644 index 0000000..7f2bdb3 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist @@ -0,0 +1,56 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2016 chorsfield <chorsfield@defymedia.com> + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + Title + RSA + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m new file mode 100644 index 0000000..8c0f5f5 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_RSA_Example : NSObject +@end +@implementation PodsDummy_Pods_RSA_Example +@end diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh new file mode 100755 index 0000000..21c77dd --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh @@ -0,0 +1,91 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/RSA/RSA.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "$BUILT_PRODUCTS_DIR/RSA/RSA.framework" +fi diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh new file mode 100755 index 0000000..0a15615 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +realpath() { + DIRECTORY="$(cd "${1%/*}" && pwd)" + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h new file mode 100644 index 0000000..e799598 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_RSA_ExampleVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_RSA_ExampleVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig new file mode 100644 index 0000000..0322a30 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "RSA" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap new file mode 100644 index 0000000..d9376f7 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap @@ -0,0 +1,6 @@ +framework module Pods_RSA_Example { + umbrella header "Pods-RSA_Example-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig new file mode 100644 index 0000000..0322a30 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig @@ -0,0 +1,8 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "RSA" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown new file mode 100644 index 0000000..102af75 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown @@ -0,0 +1,3 @@ +# Acknowledgements +This application makes use of the following third party libraries: +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist new file mode 100644 index 0000000..7acbad1 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist @@ -0,0 +1,29 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m new file mode 100644 index 0000000..6bf6e09 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_RSA_Tests : NSObject +@end +@implementation PodsDummy_Pods_RSA_Tests +@end diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh new file mode 100755 index 0000000..893c16a --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh @@ -0,0 +1,84 @@ +#!/bin/sh +set -e + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # use filter instead of exclude so missing patterns dont' throw errors + echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" + /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current file + archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" + stripped="" + for arch in $archs; do + if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi +} + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh new file mode 100755 index 0000000..0a15615 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh @@ -0,0 +1,102 @@ +#!/bin/sh +set -e + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +case "${TARGETED_DEVICE_FAMILY}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +realpath() { + DIRECTORY="$(cd "${1%/*}" && pwd)" + FILENAME="${1##*/}" + echo "$DIRECTORY/$FILENAME" +} + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "`realpath $PODS_ROOT`*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h new file mode 100644 index 0000000..051ba12 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_RSA_TestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_RSA_TestsVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig new file mode 100644 index 0000000..a8c2e4e --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig @@ -0,0 +1,7 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap new file mode 100644 index 0000000..0cdf5c2 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap @@ -0,0 +1,6 @@ +framework module Pods_RSA_Tests { + umbrella header "Pods-RSA_Tests-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig new file mode 100644 index 0000000..a8c2e4e --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig @@ -0,0 +1,7 @@ +FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/RSA/Info.plist b/Example/Pods/Target Support Files/RSA/Info.plist new file mode 100644 index 0000000..161a9d3 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 0.1.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Example/Pods/Target Support Files/RSA/RSA-dummy.m b/Example/Pods/Target Support Files/RSA/RSA-dummy.m new file mode 100644 index 0000000..ec66eb1 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/RSA-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_RSA : NSObject +@end +@implementation PodsDummy_RSA +@end diff --git a/Example/Pods/Target Support Files/RSA/RSA-prefix.pch b/Example/Pods/Target Support Files/RSA/RSA-prefix.pch new file mode 100644 index 0000000..aa992a4 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/RSA-prefix.pch @@ -0,0 +1,4 @@ +#ifdef __OBJC__ +#import +#endif + diff --git a/Example/Pods/Target Support Files/RSA/RSA-umbrella.h b/Example/Pods/Target Support Files/RSA/RSA-umbrella.h new file mode 100644 index 0000000..7ea0cc1 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/RSA-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double RSAVersionNumber; +FOUNDATION_EXPORT const unsigned char RSAVersionString[]; + diff --git a/Example/Pods/Target Support Files/RSA/RSA.modulemap b/Example/Pods/Target Support Files/RSA/RSA.modulemap new file mode 100644 index 0000000..4d56e19 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/RSA.modulemap @@ -0,0 +1,6 @@ +framework module RSA { + umbrella header "RSA-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/RSA/RSA.xcconfig b/Example/Pods/Target Support Files/RSA/RSA.xcconfig new file mode 100644 index 0000000..a7ec069 --- /dev/null +++ b/Example/Pods/Target Support Files/RSA/RSA.xcconfig @@ -0,0 +1,8 @@ +CONFIGURATION_BUILD_DIR = $PODS_CONFIGURATION_BUILD_DIR/RSA +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Public" +PODS_BUILD_DIR = $BUILD_DIR +PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/Example/RSA.xcodeproj/project.pbxproj b/Example/RSA.xcodeproj/project.pbxproj new file mode 100644 index 0000000..0308919 --- /dev/null +++ b/Example/RSA.xcodeproj/project.pbxproj @@ -0,0 +1,417 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 3097156B1DC2778E00A0EFDA /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3097156A1DC2778E00A0EFDA /* Info.plist */; }; + 309715701DC277B100A0EFDA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3097156D1DC277B100A0EFDA /* AppDelegate.m */; }; + 309715711DC277B100A0EFDA /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3097156F1DC277B100A0EFDA /* ViewController.m */; }; + 309715761DC277BB00A0EFDA /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 309715721DC277BB00A0EFDA /* LaunchScreen.xib */; }; + 309715771DC277BB00A0EFDA /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 309715741DC277BB00A0EFDA /* Main.storyboard */; }; + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; + 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; + A75AC1B50F6D9A15761D52EB /* Pods_RSA_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 01FD394ACDA5719575FFDC6F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; + 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig"; sourceTree = ""; }; + 3097156A1DC2778E00A0EFDA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 3097156C1DC277B100A0EFDA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; + 3097156D1DC277B100A0EFDA /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; + 3097156E1DC277B100A0EFDA /* ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; + 3097156F1DC277B100A0EFDA /* ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; + 309715731DC277BB00A0EFDA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; + 309715751DC277BB00A0EFDA /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D78DB2589F94215609E3B0D /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = LICENSE; path = ../LICENSE; sourceTree = ""; }; + 6003F58A195388D20070C39A /* RSAUtil.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RSAUtil.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 6003F58D195388D20070C39A /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; + 6003F58F195388D20070C39A /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; + 6003F591195388D20070C39A /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; + 6003F599195388D20070C39A /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; + 6003F59B195388D20070C39A /* RSA-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "RSA-Prefix.pch"; sourceTree = ""; }; + 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; + 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; + 87F2819C65B2789EA8AD85B1 /* RSA.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = RSA.podspec; path = ../RSA.podspec; sourceTree = ""; }; + D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig"; sourceTree = ""; }; + D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; + F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig"; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 6003F587195388D20070C39A /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, + 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, + 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, + A75AC1B50F6D9A15761D52EB /* Pods_RSA_Example.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 226114A4167A7D0D32F62A3B /* Pods */ = { + isa = PBXGroup; + children = ( + F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */, + 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */, + F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */, + D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + 6003F581195388D10070C39A = { + isa = PBXGroup; + children = ( + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */, + 6003F593195388D20070C39A /* Example for RSA */, + 6003F58C195388D20070C39A /* Frameworks */, + 6003F58B195388D20070C39A /* Products */, + 226114A4167A7D0D32F62A3B /* Pods */, + ); + sourceTree = ""; + }; + 6003F58B195388D20070C39A /* Products */ = { + isa = PBXGroup; + children = ( + 6003F58A195388D20070C39A /* RSAUtil.app */, + ); + name = Products; + sourceTree = ""; + }; + 6003F58C195388D20070C39A /* Frameworks */ = { + isa = PBXGroup; + children = ( + 6003F58D195388D20070C39A /* Foundation.framework */, + 6003F58F195388D20070C39A /* CoreGraphics.framework */, + 6003F591195388D20070C39A /* UIKit.framework */, + 6003F5AF195388D20070C39A /* XCTest.framework */, + 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */, + D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 6003F593195388D20070C39A /* Example for RSA */ = { + isa = PBXGroup; + children = ( + 3097156C1DC277B100A0EFDA /* AppDelegate.h */, + 3097156D1DC277B100A0EFDA /* AppDelegate.m */, + 6003F5A8195388D20070C39A /* Images.xcassets */, + 309715721DC277BB00A0EFDA /* LaunchScreen.xib */, + 309715741DC277BB00A0EFDA /* Main.storyboard */, + 3097156E1DC277B100A0EFDA /* ViewController.h */, + 3097156F1DC277B100A0EFDA /* ViewController.m */, + 6003F594195388D20070C39A /* Supporting Files */, + ); + name = "Example for RSA"; + path = RSA; + sourceTree = ""; + }; + 6003F594195388D20070C39A /* Supporting Files */ = { + isa = PBXGroup; + children = ( + 3097156A1DC2778E00A0EFDA /* Info.plist */, + 6003F599195388D20070C39A /* main.m */, + 6003F59B195388D20070C39A /* RSA-Prefix.pch */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + 60FF7A9C1954A5C5007DD14C /* Podspec Metadata */ = { + isa = PBXGroup; + children = ( + 87F2819C65B2789EA8AD85B1 /* RSA.podspec */, + 01FD394ACDA5719575FFDC6F /* README.md */, + 4D78DB2589F94215609E3B0D /* LICENSE */, + ); + name = "Podspec Metadata"; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 6003F589195388D20070C39A /* RSAUtil */ = { + isa = PBXNativeTarget; + buildConfigurationList = 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "RSAUtil" */; + buildPhases = ( + 647727BB380004192D7B5714 /* [CP] Check Pods Manifest.lock */, + 6003F586195388D20070C39A /* Sources */, + 6003F587195388D20070C39A /* Frameworks */, + 6003F588195388D20070C39A /* Resources */, + D941E3B8E0BC4EACFB17FA00 /* [CP] Embed Pods Frameworks */, + 9F2A55EDB3D9E1C1A99A6E7F /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = RSAUtil; + productName = RSA; + productReference = 6003F58A195388D20070C39A /* RSAUtil.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 6003F582195388D10070C39A /* Project object */ = { + isa = PBXProject; + attributes = { + CLASSPREFIX = CH; + LastUpgradeCheck = 0720; + ORGANIZATIONNAME = chorsfield; + }; + buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "RSA" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 6003F581195388D10070C39A; + productRefGroup = 6003F58B195388D20070C39A /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 6003F589195388D20070C39A /* RSAUtil */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 6003F588195388D20070C39A /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, + 309715761DC277BB00A0EFDA /* LaunchScreen.xib in Resources */, + 3097156B1DC2778E00A0EFDA /* Info.plist in Resources */, + 309715771DC277BB00A0EFDA /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 647727BB380004192D7B5714 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 9F2A55EDB3D9E1C1A99A6E7F /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + D941E3B8E0BC4EACFB17FA00 /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 6003F586195388D20070C39A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 309715711DC277B100A0EFDA /* ViewController.m in Sources */, + 309715701DC277B100A0EFDA /* AppDelegate.m in Sources */, + 6003F59A195388D20070C39A /* main.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 309715721DC277BB00A0EFDA /* LaunchScreen.xib */ = { + isa = PBXVariantGroup; + children = ( + 309715731DC277BB00A0EFDA /* Base */, + ); + name = LaunchScreen.xib; + sourceTree = ""; + }; + 309715741DC277BB00A0EFDA /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 309715751DC277BB00A0EFDA /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 6003F5BD195388D20070C39A /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_SYMBOLS_PRIVATE_EXTERN = NO; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 6003F5BE195388D20070C39A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = YES; + ENABLE_NS_ASSERTIONS = NO; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 8.3; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 6003F5C0195388D20070C39A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "RSA/RSA-Prefix.pch"; + INFOPLIST_FILE = "$(SRCROOT)/RSA/Info.plist"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 6003F5C1195388D20070C39A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "RSA/RSA-Prefix.pch"; + INFOPLIST_FILE = "$(SRCROOT)/RSA/Info.plist"; + MODULE_NAME = ExampleApp; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 6003F585195388D10070C39A /* Build configuration list for PBXProject "RSA" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6003F5BD195388D20070C39A /* Debug */, + 6003F5BE195388D20070C39A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 6003F5BF195388D20070C39A /* Build configuration list for PBXNativeTarget "RSAUtil" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 6003F5C0195388D20070C39A /* Debug */, + 6003F5C1195388D20070C39A /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 6003F582195388D10070C39A /* Project object */; +} diff --git a/RSAUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Example/RSA.xcodeproj/project.xcworkspace/contents.xcworkspacedata similarity index 71% rename from RSAUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Example/RSA.xcodeproj/project.xcworkspace/contents.xcworkspacedata index 1bcc619..de07168 100644 --- a/RSAUtil.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/Example/RSA.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:RSA.xcodeproj"> diff --git a/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme b/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme new file mode 100644 index 0000000..aa68038 --- /dev/null +++ b/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Example/RSA.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist b/Example/RSA.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..adfa137 --- /dev/null +++ b/Example/RSA.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,19 @@ + + + + + SuppressBuildableAutocreation + + 6003F589195388D20070C39A + + primary + + + 6003F5AD195388D20070C39A + + primary + + + + + diff --git a/Example/RSA.xcworkspace/contents.xcworkspacedata b/Example/RSA.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..aec4dc7 --- /dev/null +++ b/Example/RSA.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/RSAUtil/AppDelegate.h b/Example/RSA/AppDelegate.h similarity index 100% rename from RSAUtil/AppDelegate.h rename to Example/RSA/AppDelegate.h diff --git a/RSAUtil/AppDelegate.m b/Example/RSA/AppDelegate.m similarity index 100% rename from RSAUtil/AppDelegate.m rename to Example/RSA/AppDelegate.m diff --git a/RSAUtil/Base.lproj/LaunchScreen.xib b/Example/RSA/Base.lproj/LaunchScreen.xib similarity index 100% rename from RSAUtil/Base.lproj/LaunchScreen.xib rename to Example/RSA/Base.lproj/LaunchScreen.xib diff --git a/RSAUtil/Base.lproj/Main.storyboard b/Example/RSA/Base.lproj/Main.storyboard similarity index 100% rename from RSAUtil/Base.lproj/Main.storyboard rename to Example/RSA/Base.lproj/Main.storyboard diff --git a/RSAUtil/Images.xcassets/AppIcon.appiconset/Contents.json b/Example/RSA/Images.xcassets/AppIcon.appiconset/Contents.json similarity index 72% rename from RSAUtil/Images.xcassets/AppIcon.appiconset/Contents.json rename to Example/RSA/Images.xcassets/AppIcon.appiconset/Contents.json index 36d2c80..1d060ed 100644 --- a/RSAUtil/Images.xcassets/AppIcon.appiconset/Contents.json +++ b/Example/RSA/Images.xcassets/AppIcon.appiconset/Contents.json @@ -1,5 +1,15 @@ { "images" : [ + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "2x" + }, + { + "idiom" : "iphone", + "size" : "20x20", + "scale" : "3x" + }, { "idiom" : "iphone", "size" : "29x29", @@ -30,6 +40,16 @@ "size" : "60x60", "scale" : "3x" }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "1x" + }, + { + "idiom" : "ipad", + "size" : "20x20", + "scale" : "2x" + }, { "idiom" : "ipad", "size" : "29x29", @@ -59,6 +79,11 @@ "idiom" : "ipad", "size" : "76x76", "scale" : "2x" + }, + { + "idiom" : "ipad", + "size" : "83.5x83.5", + "scale" : "2x" } ], "info" : { diff --git a/RSAUtil/Info.plist b/Example/RSA/Info.plist similarity index 100% rename from RSAUtil/Info.plist rename to Example/RSA/Info.plist diff --git a/Example/RSA/RSA-Prefix.pch b/Example/RSA/RSA-Prefix.pch new file mode 100644 index 0000000..7825372 --- /dev/null +++ b/Example/RSA/RSA-Prefix.pch @@ -0,0 +1,16 @@ +// +// Prefix header +// +// The contents of this file are implicitly included at the beginning of every source file. +// + +#import + +#ifndef __IPHONE_5_0 +#warning "This project uses features only available in iOS SDK 5.0 and later." +#endif + +#ifdef __OBJC__ + @import UIKit; + @import Foundation; +#endif diff --git a/RSAUtil/ViewController.h b/Example/RSA/ViewController.h similarity index 100% rename from RSAUtil/ViewController.h rename to Example/RSA/ViewController.h diff --git a/RSAUtil/ViewController.m b/Example/RSA/ViewController.m similarity index 100% rename from RSAUtil/ViewController.m rename to Example/RSA/ViewController.m diff --git a/RSAUtil/main.m b/Example/RSA/main.m similarity index 100% rename from RSAUtil/main.m rename to Example/RSA/main.m diff --git a/RSA.podspec b/RSA.podspec new file mode 100644 index 0000000..342fad8 --- /dev/null +++ b/RSA.podspec @@ -0,0 +1,42 @@ +# +# Be sure to run `pod lib lint RSA.podspec' to ensure this is a +# valid spec before submitting. +# +# Any lines starting with a # are optional, but their use is encouraged +# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html +# + +Pod::Spec.new do |s| + s.name = 'RSA' + s.version = '0.1.0' + s.summary = 'A short description of RSA.' + +# This description is used to generate tags and improve search results. +# * Think: What does it do? Why did you write it? What is the focus? +# * Try to keep it short, snappy and to the point. +# * Write the description between the DESC delimiters below. +# * Finally, don't worry about the indent, CocoaPods strips it! + + s.description = <<-DESC +TODO: Add long description of the pod here. + DESC + + s.homepage = 'https://github.com//RSA' + # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.license = { :type => 'MIT', :file => 'LICENSE' } + s.author = { 'chorsfield' => 'chorsfield@defymedia.com' } + s.source = { :git => 'https://github.com//RSA.git', :tag => s.version.to_s } + # s.social_media_url = 'https://twitter.com/' + + s.ios.deployment_target = '8.0' + + s.source_files = 'RSA/Classes/**/*' + + # s.resource_bundles = { + # 'RSA' => ['RSA/Assets/*.png'] + # } + + # s.public_header_files = 'Pod/Classes/**/*.h' + # s.frameworks = 'UIKit', 'MapKit' + # s.dependency 'AFNetworking', '~> 2.3' +end diff --git a/RSA/Assets/.gitkeep b/RSA/Assets/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/RSA/Classes/.gitkeep b/RSA/Classes/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/RSA.h b/RSA/Classes/RSA.h similarity index 100% rename from RSA.h rename to RSA/Classes/RSA.h diff --git a/RSA.m b/RSA/Classes/RSA.m similarity index 100% rename from RSA.m rename to RSA/Classes/RSA.m diff --git a/RSAUtil.xcodeproj/project.pbxproj b/RSAUtil.xcodeproj/project.pbxproj deleted file mode 100644 index 6fa1dd7..0000000 --- a/RSAUtil.xcodeproj/project.pbxproj +++ /dev/null @@ -1,312 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 314EDDD21B55008F0003D9F1 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 314EDDD11B55008F0003D9F1 /* main.m */; }; - 314EDDD51B55008F0003D9F1 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 314EDDD41B55008F0003D9F1 /* AppDelegate.m */; }; - 314EDDD81B55008F0003D9F1 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 314EDDD71B55008F0003D9F1 /* ViewController.m */; }; - 314EDDDB1B55008F0003D9F1 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 314EDDD91B55008F0003D9F1 /* Main.storyboard */; }; - 314EDDDD1B55008F0003D9F1 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 314EDDDC1B55008F0003D9F1 /* Images.xcassets */; }; - 314EDDE01B55008F0003D9F1 /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 314EDDDE1B55008F0003D9F1 /* LaunchScreen.xib */; }; - 314EDDF71B5501980003D9F1 /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 314EDDF61B5501980003D9F1 /* RSA.m */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 314EDDCC1B55008F0003D9F1 /* RSAUtil.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RSAUtil.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 314EDDD01B55008F0003D9F1 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 314EDDD11B55008F0003D9F1 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - 314EDDD31B55008F0003D9F1 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; - 314EDDD41B55008F0003D9F1 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; - 314EDDD61B55008F0003D9F1 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = ""; }; - 314EDDD71B55008F0003D9F1 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = ""; }; - 314EDDDA1B55008F0003D9F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; - 314EDDDC1B55008F0003D9F1 /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; - 314EDDDF1B55008F0003D9F1 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; - 314EDDF51B5501980003D9F1 /* RSA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSA.h; sourceTree = SOURCE_ROOT; }; - 314EDDF61B5501980003D9F1 /* RSA.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSA.m; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 314EDDC91B55008F0003D9F1 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 314EDDC31B55008F0003D9F1 = { - isa = PBXGroup; - children = ( - 314EDDCE1B55008F0003D9F1 /* RSAUtil */, - 314EDDCD1B55008F0003D9F1 /* Products */, - ); - sourceTree = ""; - }; - 314EDDCD1B55008F0003D9F1 /* Products */ = { - isa = PBXGroup; - children = ( - 314EDDCC1B55008F0003D9F1 /* RSAUtil.app */, - ); - name = Products; - sourceTree = ""; - }; - 314EDDCE1B55008F0003D9F1 /* RSAUtil */ = { - isa = PBXGroup; - children = ( - 314EDDD31B55008F0003D9F1 /* AppDelegate.h */, - 314EDDD41B55008F0003D9F1 /* AppDelegate.m */, - 314EDDD61B55008F0003D9F1 /* ViewController.h */, - 314EDDD71B55008F0003D9F1 /* ViewController.m */, - 314EDDF51B5501980003D9F1 /* RSA.h */, - 314EDDF61B5501980003D9F1 /* RSA.m */, - 314EDDD91B55008F0003D9F1 /* Main.storyboard */, - 314EDDDC1B55008F0003D9F1 /* Images.xcassets */, - 314EDDDE1B55008F0003D9F1 /* LaunchScreen.xib */, - 314EDDCF1B55008F0003D9F1 /* Supporting Files */, - ); - path = RSAUtil; - sourceTree = ""; - }; - 314EDDCF1B55008F0003D9F1 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 314EDDD01B55008F0003D9F1 /* Info.plist */, - 314EDDD11B55008F0003D9F1 /* main.m */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 314EDDCB1B55008F0003D9F1 /* RSAUtil */ = { - isa = PBXNativeTarget; - buildConfigurationList = 314EDDEF1B55008F0003D9F1 /* Build configuration list for PBXNativeTarget "RSAUtil" */; - buildPhases = ( - 314EDDC81B55008F0003D9F1 /* Sources */, - 314EDDC91B55008F0003D9F1 /* Frameworks */, - 314EDDCA1B55008F0003D9F1 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RSAUtil; - productName = RSAUtil; - productReference = 314EDDCC1B55008F0003D9F1 /* RSAUtil.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 314EDDC41B55008F0003D9F1 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 0630; - ORGANIZATIONNAME = ideawu; - TargetAttributes = { - 314EDDCB1B55008F0003D9F1 = { - CreatedOnToolsVersion = 6.3.2; - }; - }; - }; - buildConfigurationList = 314EDDC71B55008F0003D9F1 /* Build configuration list for PBXProject "RSAUtil" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 314EDDC31B55008F0003D9F1; - productRefGroup = 314EDDCD1B55008F0003D9F1 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 314EDDCB1B55008F0003D9F1 /* RSAUtil */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 314EDDCA1B55008F0003D9F1 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 314EDDDB1B55008F0003D9F1 /* Main.storyboard in Resources */, - 314EDDE01B55008F0003D9F1 /* LaunchScreen.xib in Resources */, - 314EDDDD1B55008F0003D9F1 /* Images.xcassets in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 314EDDC81B55008F0003D9F1 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 314EDDD81B55008F0003D9F1 /* ViewController.m in Sources */, - 314EDDD51B55008F0003D9F1 /* AppDelegate.m in Sources */, - 314EDDF71B5501980003D9F1 /* RSA.m in Sources */, - 314EDDD21B55008F0003D9F1 /* main.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - 314EDDD91B55008F0003D9F1 /* Main.storyboard */ = { - isa = PBXVariantGroup; - children = ( - 314EDDDA1B55008F0003D9F1 /* Base */, - ); - name = Main.storyboard; - sourceTree = ""; - }; - 314EDDDE1B55008F0003D9F1 /* LaunchScreen.xib */ = { - isa = PBXVariantGroup; - children = ( - 314EDDDF1B55008F0003D9F1 /* Base */, - ); - name = LaunchScreen.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - 314EDDED1B55008F0003D9F1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 314EDDEE1B55008F0003D9F1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 7.0; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 314EDDF01B55008F0003D9F1 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = RSAUtil/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Debug; - }; - 314EDDF11B55008F0003D9F1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - INFOPLIST_FILE = RSAUtil/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - PRODUCT_NAME = "$(TARGET_NAME)"; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 314EDDC71B55008F0003D9F1 /* Build configuration list for PBXProject "RSAUtil" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 314EDDED1B55008F0003D9F1 /* Debug */, - 314EDDEE1B55008F0003D9F1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 314EDDEF1B55008F0003D9F1 /* Build configuration list for PBXNativeTarget "RSAUtil" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 314EDDF01B55008F0003D9F1 /* Debug */, - 314EDDF11B55008F0003D9F1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 314EDDC41B55008F0003D9F1 /* Project object */; -} diff --git a/RSAUtil.xcodeproj/project.xcworkspace/xcshareddata/RSAUtil.xccheckout b/RSAUtil.xcodeproj/project.xcworkspace/xcshareddata/RSAUtil.xccheckout deleted file mode 100644 index dadfbf9..0000000 --- a/RSAUtil.xcodeproj/project.xcworkspace/xcshareddata/RSAUtil.xccheckout +++ /dev/null @@ -1,41 +0,0 @@ - - - - - IDESourceControlProjectFavoriteDictionaryKey - - IDESourceControlProjectIdentifier - F8B2757A-71D6-4FD4-BC9D-FA99AC4DD58F - IDESourceControlProjectName - RSAUtil - IDESourceControlProjectOriginsDictionary - - 0FCF057405D50E0F54C86A564EB5510C1EFDE566 - https://github.com/ideawu/Objective-C-RSA.git - - IDESourceControlProjectPath - RSAUtil.xcodeproj - IDESourceControlProjectRelativeInstallPathDictionary - - 0FCF057405D50E0F54C86A564EB5510C1EFDE566 - ../.. - - IDESourceControlProjectURL - https://github.com/ideawu/Objective-C-RSA.git - IDESourceControlProjectVersion - 111 - IDESourceControlProjectWCCIdentifier - 0FCF057405D50E0F54C86A564EB5510C1EFDE566 - IDESourceControlProjectWCConfigurations - - - IDESourceControlRepositoryExtensionIdentifierKey - public.vcs.git - IDESourceControlWCCIdentifierKey - 0FCF057405D50E0F54C86A564EB5510C1EFDE566 - IDESourceControlWCCName - Objective-C-RSA - - - - diff --git a/_Pods.xcodeproj b/_Pods.xcodeproj new file mode 120000 index 0000000..3c5a8e7 --- /dev/null +++ b/_Pods.xcodeproj @@ -0,0 +1 @@ +Example/Pods/Pods.xcodeproj \ No newline at end of file From 96739cbe253b1a3e2d9a71115c308664a797f41f Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:10:33 -0700 Subject: [PATCH 2/9] update podspec --- RSA.podspec | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/RSA.podspec b/RSA.podspec index 342fad8..bdeb134 100644 --- a/RSA.podspec +++ b/RSA.podspec @@ -21,22 +21,12 @@ Pod::Spec.new do |s| TODO: Add long description of the pod here. DESC - s.homepage = 'https://github.com//RSA' - # s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2' + s.homepage = 'https://github.com/ideawu/Objective-C-RSA' s.license = { :type => 'MIT', :file => 'LICENSE' } - s.author = { 'chorsfield' => 'chorsfield@defymedia.com' } - s.source = { :git => 'https://github.com//RSA.git', :tag => s.version.to_s } - # s.social_media_url = 'https://twitter.com/' + s.author = { 'ideawu' => '' } + s.source = { :git => 'https://github.com/ideawu/Objective-C-RSA', :tag => s.version.to_s } s.ios.deployment_target = '8.0' s.source_files = 'RSA/Classes/**/*' - - # s.resource_bundles = { - # 'RSA' => ['RSA/Assets/*.png'] - # } - - # s.public_header_files = 'Pod/Classes/**/*.h' - # s.frameworks = 'UIKit', 'MapKit' - # s.dependency 'AFNetworking', '~> 2.3' end From 4d28f312294d1ab9078b9668bbe65acfe7b4e979 Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:17:43 -0700 Subject: [PATCH 3/9] update pod file --- Example/Podfile | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Example/Podfile b/Example/Podfile index 51d5753..e550739 100644 --- a/Example/Podfile +++ b/Example/Podfile @@ -1,11 +1,5 @@ use_frameworks! -target 'RSA_Example' do +target 'RSAUtil' do pod 'RSA', :path => '../' - - target 'RSA_Tests' do - inherit! :search_paths - - - end end From 9a84d75884368f69c4aa933473592d687d9232bb Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:20:41 -0700 Subject: [PATCH 4/9] pod framework --- Example/RSA.xcodeproj/project.pbxproj | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Example/RSA.xcodeproj/project.pbxproj b/Example/RSA.xcodeproj/project.pbxproj index 0308919..054a249 100644 --- a/Example/RSA.xcodeproj/project.pbxproj +++ b/Example/RSA.xcodeproj/project.pbxproj @@ -12,16 +12,17 @@ 309715711DC277B100A0EFDA /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3097156F1DC277B100A0EFDA /* ViewController.m */; }; 309715761DC277BB00A0EFDA /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 309715721DC277BB00A0EFDA /* LaunchScreen.xib */; }; 309715771DC277BB00A0EFDA /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 309715741DC277BB00A0EFDA /* Main.storyboard */; }; + 3A186C539D581D421E399461 /* Pods_RSAUtil.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F703FC13268BE37346A2DA35 /* Pods_RSAUtil.framework */; }; 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58D195388D20070C39A /* Foundation.framework */; }; 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F58F195388D20070C39A /* CoreGraphics.framework */; }; 6003F592195388D20070C39A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6003F591195388D20070C39A /* UIKit.framework */; }; 6003F59A195388D20070C39A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 6003F599195388D20070C39A /* main.m */; }; 6003F5A9195388D20070C39A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 6003F5A8195388D20070C39A /* Images.xcassets */; }; - A75AC1B50F6D9A15761D52EB /* Pods_RSA_Example.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ 01FD394ACDA5719575FFDC6F /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; name = README.md; path = ../README.md; sourceTree = ""; }; + 09D3620CA3FB76A97423D098 /* Pods-RSAUtil.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSAUtil.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.debug.xcconfig"; sourceTree = ""; }; 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Example.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig"; sourceTree = ""; }; 3097156A1DC2778E00A0EFDA /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 3097156C1DC277B100A0EFDA /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; @@ -43,7 +44,9 @@ 87F2819C65B2789EA8AD85B1 /* RSA.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = RSA.podspec; path = ../RSA.podspec; sourceTree = ""; }; D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig"; sourceTree = ""; }; D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DFD7E5BFF680EC9C01D5C053 /* Pods-RSAUtil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSAUtil.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.release.xcconfig"; sourceTree = ""; }; F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; + F703FC13268BE37346A2DA35 /* Pods_RSAUtil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSAUtil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ @@ -55,7 +58,7 @@ 6003F590195388D20070C39A /* CoreGraphics.framework in Frameworks */, 6003F592195388D20070C39A /* UIKit.framework in Frameworks */, 6003F58E195388D20070C39A /* Foundation.framework in Frameworks */, - A75AC1B50F6D9A15761D52EB /* Pods_RSA_Example.framework in Frameworks */, + 3A186C539D581D421E399461 /* Pods_RSAUtil.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -69,6 +72,8 @@ 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */, F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */, D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */, + 09D3620CA3FB76A97423D098 /* Pods-RSAUtil.debug.xcconfig */, + DFD7E5BFF680EC9C01D5C053 /* Pods-RSAUtil.release.xcconfig */, ); name = Pods; sourceTree = ""; @@ -101,6 +106,7 @@ 6003F5AF195388D20070C39A /* XCTest.framework */, 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */, D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */, + F703FC13268BE37346A2DA35 /* Pods_RSAUtil.framework */, ); name = Frameworks; sourceTree = ""; @@ -234,7 +240,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh\"\n"; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-resources.sh\"\n"; showEnvVarsInLog = 0; }; D941E3B8E0BC4EACFB17FA00 /* [CP] Embed Pods Frameworks */ = { @@ -249,7 +255,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh\"\n"; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-frameworks.sh\"\n"; showEnvVarsInLog = 0; }; /* End PBXShellScriptBuildPhase section */ @@ -362,7 +368,7 @@ }; 6003F5C0195388D20070C39A /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */; + baseConfigurationReference = 09D3620CA3FB76A97423D098 /* Pods-RSAUtil.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; GCC_PRECOMPILE_PREFIX_HEADER = YES; @@ -377,7 +383,7 @@ }; 6003F5C1195388D20070C39A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */; + baseConfigurationReference = DFD7E5BFF680EC9C01D5C053 /* Pods-RSAUtil.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; GCC_PRECOMPILE_PREFIX_HEADER = YES; From 8eda4b5eae07e188773a3a8e79e6d9ee9513332e Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:36:21 -0700 Subject: [PATCH 5/9] removed test target --- Example/Pods/Pods.xcodeproj/project.pbxproj | 151 ------------------ .../Pods-RSA_Tests/Info.plist | 26 --- .../Pods-RSA_Tests-acknowledgements.markdown | 3 - .../Pods-RSA_Tests-acknowledgements.plist | 29 ---- .../Pods-RSA_Tests/Pods-RSA_Tests-dummy.m | 5 - .../Pods-RSA_Tests-frameworks.sh | 84 ---------- .../Pods-RSA_Tests-resources.sh | 102 ------------ .../Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h | 6 - .../Pods-RSA_Tests.debug.xcconfig | 7 - .../Pods-RSA_Tests/Pods-RSA_Tests.modulemap | 6 - .../Pods-RSA_Tests.release.xcconfig | 7 - Example/RSA.xcodeproj/project.pbxproj | 6 - 12 files changed, 432 deletions(-) delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m delete mode 100755 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh delete mode 100755 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 03794e6..874f20d 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -7,17 +7,14 @@ objects = { /* Begin PBXBuildFile section */ - 054EE91660B3D155016A19E0852A516B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 0EF229D30FFF9BDD8646CF5267C71144 /* RSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */; }; 309715681DC2776B00A0EFDA /* RSA.h in Headers */ = {isa = PBXBuildFile; fileRef = 309715661DC2776B00A0EFDA /* RSA.h */; }; 309715691DC2776B00A0EFDA /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 309715671DC2776B00A0EFDA /* RSA.m */; }; - 32ADFCA1F5D3982E88DA4AC2FC99DCEB /* Pods-RSA_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */; }; 3E377D2B586305C63D5543E77856D0BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; 669B6F58FCB4BA88A35D4F129D13708E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; B90E6C245D9BEA57A0215E18DC40EE96 /* Pods-RSA_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */; }; D8F48E3B239FE353BE070B2C413889F7 /* RSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; E2857FAC0DCD6FD7E0C73249DE682209 /* Pods-RSA_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE877991814A22E0F46DD95B7C6A393A /* Pods-RSA_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -31,9 +28,7 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 00545F058DD71216A641D6D7D1AFE0FA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 1C09238F5806CCD1A6A7F86A4C361CBA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 1E984F41284428F79778787A734063E9 /* Pods-RSA_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RSA_Tests-acknowledgements.markdown"; sourceTree = ""; }; 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSA-dummy.m"; sourceTree = ""; }; 2475820A0B8E0786A43629605C644BE3 /* Pods-RSA_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RSA_Example-acknowledgements.plist"; sourceTree = ""; }; 2FD0F265281CB66F8850753A8E6D0775 /* Pods-RSA_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RSA_Example-acknowledgements.markdown"; sourceTree = ""; }; @@ -42,39 +37,22 @@ 349A38E7CEC8E9A0709A7A3E06151567 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.release.xcconfig"; sourceTree = ""; }; 4E136B69D150DE9FFF2CD7E1924C3E46 /* Pods-RSA_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-resources.sh"; sourceTree = ""; }; - 6AC87CEC2C3E5CD9529E20878D91F9DD /* Pods-RSA_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Tests-frameworks.sh"; sourceTree = ""; }; 8734C2BB5E8D4C5D5316F3E1A7234608 /* RSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = RSA.modulemap; sourceTree = ""; }; - 8E8187F950ED4CFDB6E13C0606362158 /* Pods-RSA_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RSA_Tests-acknowledgements.plist"; sourceTree = ""; }; 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 94A4FA7BC11947DC43C5E8DD7A0A6AF3 /* Pods-RSA_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Tests-resources.sh"; sourceTree = ""; }; - 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BB0A85EC6BC9C0B0D6696AA437672AD8 /* Pods-RSA_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-RSA_Tests.modulemap"; sourceTree = ""; }; - BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RSA_Tests-dummy.m"; sourceTree = ""; }; BBC48FD9C7DCFDA523F2E46A854D7816 /* RSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-prefix.pch"; sourceTree = ""; }; C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RSA_Example-dummy.m"; sourceTree = ""; }; CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RSA_Example-umbrella.h"; sourceTree = ""; }; CF6E8A2728654EBC80F1E841EE124405 /* Pods-RSA_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-RSA_Example.modulemap"; sourceTree = ""; }; - D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Tests.release.xcconfig"; sourceTree = ""; }; - D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RSA_Tests-umbrella.h"; sourceTree = ""; }; DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSA.xcconfig; sourceTree = ""; }; E2F606B6B431CCAE46E01040F9AE3BA3 /* Pods-RSA_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-frameworks.sh"; sourceTree = ""; }; E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-umbrella.h"; sourceTree = ""; }; - EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Tests.debug.xcconfig"; sourceTree = ""; }; FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RSA.framework; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 04383311A823B139CA20345D960B5361 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 054EE91660B3D155016A19E0852A516B /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; B0630DED11ED73286855088249253540 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -98,29 +76,10 @@ isa = PBXGroup; children = ( 9B97ECA50DC22CE61301E383D7F1CCA9 /* Pods-RSA_Example */, - 2C4CE81D149515A9717AE4B054E19219 /* Pods-RSA_Tests */, ); name = "Targets Support Files"; sourceTree = ""; }; - 2C4CE81D149515A9717AE4B054E19219 /* Pods-RSA_Tests */ = { - isa = PBXGroup; - children = ( - 00545F058DD71216A641D6D7D1AFE0FA /* Info.plist */, - BB0A85EC6BC9C0B0D6696AA437672AD8 /* Pods-RSA_Tests.modulemap */, - 1E984F41284428F79778787A734063E9 /* Pods-RSA_Tests-acknowledgements.markdown */, - 8E8187F950ED4CFDB6E13C0606362158 /* Pods-RSA_Tests-acknowledgements.plist */, - BB942245B67FCFB21271D093FB37D1D7 /* Pods-RSA_Tests-dummy.m */, - 6AC87CEC2C3E5CD9529E20878D91F9DD /* Pods-RSA_Tests-frameworks.sh */, - 94A4FA7BC11947DC43C5E8DD7A0A6AF3 /* Pods-RSA_Tests-resources.sh */, - D9D33FD82DCD022A5930035E512469E3 /* Pods-RSA_Tests-umbrella.h */, - EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */, - D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */, - ); - name = "Pods-RSA_Tests"; - path = "Target Support Files/Pods-RSA_Tests"; - sourceTree = ""; - }; 2E0CD010C2EBBB577925845288E82C25 /* RSA */ = { isa = PBXGroup; children = ( @@ -211,7 +170,6 @@ isa = PBXGroup; children = ( A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */, - 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */, FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */, ); name = Products; @@ -237,14 +195,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 971279CDD3FF92761A9EC3351B0D553E /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - EE877991814A22E0F46DD95B7C6A393A /* Pods-RSA_Tests-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; DE5663D063FF4B21F7E761128B8F97E6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -291,23 +241,6 @@ productReference = FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */; productType = "com.apple.product-type.framework"; }; - FFE0CE3B4B63DAF4F2A47F43C042B54B /* Pods-RSA_Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = BD2BC26A542EAA0D3C8F5360C55E0E82 /* Build configuration list for PBXNativeTarget "Pods-RSA_Tests" */; - buildPhases = ( - C9B5F19E740B00EAA406E1BF42B946DB /* Sources */, - 04383311A823B139CA20345D960B5361 /* Frameworks */, - 971279CDD3FF92761A9EC3351B0D553E /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-RSA_Tests"; - productName = "Pods-RSA_Tests"; - productReference = 9E1C19F6DAD7798D67A996CE4277D633 /* Pods_RSA_Tests.framework */; - productType = "com.apple.product-type.framework"; - }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -330,7 +263,6 @@ projectRoot = ""; targets = ( B4F4BCFC39D80B8BFB99EBC0261C8A01 /* Pods-RSA_Example */, - FFE0CE3B4B63DAF4F2A47F43C042B54B /* Pods-RSA_Tests */, CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */, ); }; @@ -354,14 +286,6 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - C9B5F19E740B00EAA406E1BF42B946DB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 32ADFCA1F5D3982E88DA4AC2FC99DCEB /* Pods-RSA_Tests-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ @@ -412,72 +336,6 @@ }; name = Release; }; - 4B0B938EB7A9129572CA8619A9FC1DC2 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = D27B61AC760B3E448CF6CC92220685F8 /* Pods-RSA_Tests.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-RSA_Tests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_RSA_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - A22D172BA8C15FD313CB03D2BE0BAF36 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EAAE83FC8EE449645F51E471B06D9916 /* Pods-RSA_Tests.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-RSA_Tests/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_RSA_Tests; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; B473482FFDADBA6C09C3BE8847E914B9 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */; @@ -674,15 +532,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BD2BC26A542EAA0D3C8F5360C55E0E82 /* Build configuration list for PBXNativeTarget "Pods-RSA_Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - A22D172BA8C15FD313CB03D2BE0BAF36 /* Debug */, - 4B0B938EB7A9129572CA8619A9FC1DC2 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; /* End XCConfigurationList section */ }; rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist b/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist deleted file mode 100644 index 2243fe6..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Info.plist +++ /dev/null @@ -1,26 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIdentifier - ${PRODUCT_BUNDLE_IDENTIFIER} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0.0 - CFBundleSignature - ???? - CFBundleVersion - ${CURRENT_PROJECT_VERSION} - NSPrincipalClass - - - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown deleted file mode 100644 index 102af75..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.markdown +++ /dev/null @@ -1,3 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: -Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist deleted file mode 100644 index 7acbad1..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-acknowledgements.plist +++ /dev/null @@ -1,29 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m deleted file mode 100644 index 6bf6e09..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_RSA_Tests : NSObject -@end -@implementation PodsDummy_Pods_RSA_Tests -@end diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh deleted file mode 100755 index 893c16a..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-frameworks.sh +++ /dev/null @@ -1,84 +0,0 @@ -#!/bin/sh -set -e - -echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" -mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - -SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" - -install_framework() -{ - if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then - local source="${BUILT_PRODUCTS_DIR}/$1" - elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then - local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" - elif [ -r "$1" ]; then - local source="$1" - fi - - local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - - if [ -L "${source}" ]; then - echo "Symlinked..." - source="$(readlink "${source}")" - fi - - # use filter instead of exclude so missing patterns dont' throw errors - echo "rsync -av --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" - rsync -av --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" - - local basename - basename="$(basename -s .framework "$1")" - binary="${destination}/${basename}.framework/${basename}" - if ! [ -r "$binary" ]; then - binary="${destination}/${basename}" - fi - - # Strip invalid architectures so "fat" simulator / device frameworks work on device - if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then - strip_invalid_archs "$binary" - fi - - # Resign the code if required by the build settings to avoid unstable apps - code_sign_if_enabled "${destination}/$(basename "$1")" - - # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. - if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then - local swift_runtime_libs - swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) - for lib in $swift_runtime_libs; do - echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" - rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" - code_sign_if_enabled "${destination}/${lib}" - done - fi -} - -# Signs a framework with the provided identity -code_sign_if_enabled() { - if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then - # Use the current code_sign_identitiy - echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" - echo "/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements \"$1\"" - /usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS} --preserve-metadata=identifier,entitlements "$1" - fi -} - -# Strip invalid architectures -strip_invalid_archs() { - binary="$1" - # Get architectures for current file - archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | rev)" - stripped="" - for arch in $archs; do - if ! [[ "${VALID_ARCHS}" == *"$arch"* ]]; then - # Strip non-valid architectures in-place - lipo -remove "$arch" -output "$binary" "$binary" || exit 1 - stripped="$stripped $arch" - fi - done - if [[ "$stripped" ]]; then - echo "Stripped $binary of architectures:$stripped" - fi -} - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh deleted file mode 100755 index 0a15615..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-resources.sh +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/sh -set -e - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - -RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt -> "$RESOURCES_TO_COPY" - -XCASSET_FILES=() - -case "${TARGETED_DEVICE_FAMILY}" in - 1,2) - TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" - ;; - 1) - TARGET_DEVICE_ARGS="--target-device iphone" - ;; - 2) - TARGET_DEVICE_ARGS="--target-device ipad" - ;; - *) - TARGET_DEVICE_ARGS="--target-device mac" - ;; -esac - -realpath() { - DIRECTORY="$(cd "${1%/*}" && pwd)" - FILENAME="${1##*/}" - echo "$DIRECTORY/$FILENAME" -} - -install_resource() -{ - if [[ "$1" = /* ]] ; then - RESOURCE_PATH="$1" - else - RESOURCE_PATH="${PODS_ROOT}/$1" - fi - if [[ ! -e "$RESOURCE_PATH" ]] ; then - cat << EOM -error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. -EOM - exit 1 - fi - case $RESOURCE_PATH in - *.storyboard) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.xib) - echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" - ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} - ;; - *.framework) - echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - echo "rsync -av $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - rsync -av "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" - ;; - *.xcdatamodel) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" - ;; - *.xcdatamodeld) - echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" - xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" - ;; - *.xcmappingmodel) - echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" - xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" - ;; - *.xcassets) - ABSOLUTE_XCASSET_FILE=$(realpath "$RESOURCE_PATH") - XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") - ;; - *) - echo "$RESOURCE_PATH" - echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" - ;; - esac -} - -mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then - mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" - rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi -rm -f "$RESOURCES_TO_COPY" - -if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "$XCASSET_FILES" ] -then - # Find all other xcassets (this unfortunately includes those of path pods and other targets). - OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) - while read line; do - if [[ $line != "`realpath $PODS_ROOT`*" ]]; then - XCASSET_FILES+=("$line") - fi - done <<<"$OTHER_XCASSETS" - - printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" -fi diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h deleted file mode 100644 index 051ba12..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_RSA_TestsVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_RSA_TestsVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig deleted file mode 100644 index a8c2e4e..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap deleted file mode 100644 index 0cdf5c2..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_RSA_Tests { - umbrella header "Pods-RSA_Tests-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig b/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig deleted file mode 100644 index a8c2e4e..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig +++ /dev/null @@ -1,7 +0,0 @@ -FRAMEWORK_SEARCH_PATHS = $(inherited) "$PODS_CONFIGURATION_BUILD_DIR/RSA" -GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_CFLAGS = $(inherited) -iquote "$PODS_CONFIGURATION_BUILD_DIR/RSA/RSA.framework/Headers" -PODS_BUILD_DIR = $BUILD_DIR -PODS_CONFIGURATION_BUILD_DIR = $PODS_BUILD_DIR/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) -PODS_ROOT = ${SRCROOT}/Pods diff --git a/Example/RSA.xcodeproj/project.pbxproj b/Example/RSA.xcodeproj/project.pbxproj index 054a249..04dc0cb 100644 --- a/Example/RSA.xcodeproj/project.pbxproj +++ b/Example/RSA.xcodeproj/project.pbxproj @@ -42,12 +42,9 @@ 6003F5A8195388D20070C39A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 6003F5AF195388D20070C39A /* XCTest.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCTest.framework; path = Library/Frameworks/XCTest.framework; sourceTree = DEVELOPER_DIR; }; 87F2819C65B2789EA8AD85B1 /* RSA.podspec */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = RSA.podspec; path = ../RSA.podspec; sourceTree = ""; }; - D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.release.xcconfig"; sourceTree = ""; }; - D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DFD7E5BFF680EC9C01D5C053 /* Pods-RSAUtil.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSAUtil.release.xcconfig"; path = "Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.release.xcconfig"; sourceTree = ""; }; F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Example.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; F703FC13268BE37346A2DA35 /* Pods_RSAUtil.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSAUtil.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RSA_Tests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-RSA_Tests/Pods-RSA_Tests.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -70,8 +67,6 @@ children = ( F188365C9508F355213CC22C /* Pods-RSA_Example.debug.xcconfig */, 2BA247247903D2F5067C46DA /* Pods-RSA_Example.release.xcconfig */, - F8C4F67C7232BDA952475BD1 /* Pods-RSA_Tests.debug.xcconfig */, - D3C1046EB9B385F89E13BE89 /* Pods-RSA_Tests.release.xcconfig */, 09D3620CA3FB76A97423D098 /* Pods-RSAUtil.debug.xcconfig */, DFD7E5BFF680EC9C01D5C053 /* Pods-RSAUtil.release.xcconfig */, ); @@ -105,7 +100,6 @@ 6003F591195388D20070C39A /* UIKit.framework */, 6003F5AF195388D20070C39A /* XCTest.framework */, 30AE31E7D550C84310B1BBBD /* Pods_RSA_Example.framework */, - D7E6FC7814022EB9F33AA4C8 /* Pods_RSA_Tests.framework */, F703FC13268BE37346A2DA35 /* Pods_RSAUtil.framework */, ); name = Frameworks; From ccb589c5fc2ac9bf969b00fffb9b0c3ce5cfae8f Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:41:13 -0700 Subject: [PATCH 6/9] pod update --- Example/Podfile.lock | 4 +- Example/Pods/Local Podspecs/RSA.podspec.json | 6 +- Example/Pods/Manifest.lock | 4 +- Example/Pods/Pods.xcodeproj/project.pbxproj | 1738 ++++++++++++----- ...Example.xcscheme => Pods-RSAUtil.xcscheme} | 12 +- .../xcschemes/RSA.xcscheme | 2 +- .../xcschemes/xcschememanagement.plist | 11 +- .../Info.plist | 0 .../Pods-RSAUtil-acknowledgements.markdown | 19 + .../Pods-RSAUtil-acknowledgements.plist | 49 + .../Pods-RSAUtil/Pods-RSAUtil-dummy.m | 5 + .../Pods-RSAUtil-frameworks.sh} | 0 .../Pods-RSAUtil-resources.sh} | 0 .../Pods-RSAUtil/Pods-RSAUtil-umbrella.h | 6 + .../Pods-RSAUtil.debug.xcconfig} | 0 .../Pods-RSAUtil/Pods-RSAUtil.modulemap | 6 + .../Pods-RSAUtil.release.xcconfig} | 0 ...Pods-RSA_Example-acknowledgements.markdown | 26 - .../Pods-RSA_Example-acknowledgements.plist | 56 - .../Pods-RSA_Example/Pods-RSA_Example-dummy.m | 5 - .../Pods-RSA_Example-umbrella.h | 6 - .../Pods-RSA_Example.modulemap | 6 - .../Target Support Files/RSA/RSA-umbrella.h | 1 + 23 files changed, 1303 insertions(+), 659 deletions(-) rename Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/{Pods-RSA_Example.xcscheme => Pods-RSAUtil.xcscheme} (85%) rename Example/Pods/Target Support Files/{Pods-RSA_Example => Pods-RSAUtil}/Info.plist (100%) create mode 100644 Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.markdown create mode 100644 Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.plist create mode 100644 Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-dummy.m rename Example/Pods/Target Support Files/{Pods-RSA_Example/Pods-RSA_Example-frameworks.sh => Pods-RSAUtil/Pods-RSAUtil-frameworks.sh} (100%) rename Example/Pods/Target Support Files/{Pods-RSA_Example/Pods-RSA_Example-resources.sh => Pods-RSAUtil/Pods-RSAUtil-resources.sh} (100%) create mode 100644 Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-umbrella.h rename Example/Pods/Target Support Files/{Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig => Pods-RSAUtil/Pods-RSAUtil.debug.xcconfig} (100%) create mode 100644 Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap rename Example/Pods/Target Support Files/{Pods-RSA_Example/Pods-RSA_Example.release.xcconfig => Pods-RSAUtil/Pods-RSAUtil.release.xcconfig} (100%) delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h delete mode 100644 Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap diff --git a/Example/Podfile.lock b/Example/Podfile.lock index cb0a9ea..402e245 100644 --- a/Example/Podfile.lock +++ b/Example/Podfile.lock @@ -9,8 +9,8 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - RSA: b2faf75abb79506397d78bce775b6b944247f881 + RSA: 21631d3bc3299adef10b26c59851d4c88f97a051 -PODFILE CHECKSUM: f68e9b34784aba7b52692186b633df8e1eb87072 +PODFILE CHECKSUM: 1cc8d1bfb024aae1884dd7621e6307c1d415cbe7 COCOAPODS: 1.0.1 diff --git a/Example/Pods/Local Podspecs/RSA.podspec.json b/Example/Pods/Local Podspecs/RSA.podspec.json index e3c1af4..eeb1f50 100644 --- a/Example/Pods/Local Podspecs/RSA.podspec.json +++ b/Example/Pods/Local Podspecs/RSA.podspec.json @@ -3,16 +3,16 @@ "version": "0.1.0", "summary": "A short description of RSA.", "description": "TODO: Add long description of the pod here.", - "homepage": "https://github.com//RSA", + "homepage": "https://github.com/ideawu/Objective-C-RSA", "license": { "type": "MIT", "file": "LICENSE" }, "authors": { - "chorsfield": "chorsfield@defymedia.com" + "ideawu": "" }, "source": { - "git": "https://github.com//RSA.git", + "git": "https://github.com/ideawu/Objective-C-RSA", "tag": "0.1.0" }, "platforms": { diff --git a/Example/Pods/Manifest.lock b/Example/Pods/Manifest.lock index cb0a9ea..402e245 100644 --- a/Example/Pods/Manifest.lock +++ b/Example/Pods/Manifest.lock @@ -9,8 +9,8 @@ EXTERNAL SOURCES: :path: ../ SPEC CHECKSUMS: - RSA: b2faf75abb79506397d78bce775b6b944247f881 + RSA: 21631d3bc3299adef10b26c59851d4c88f97a051 -PODFILE CHECKSUM: f68e9b34784aba7b52692186b633df8e1eb87072 +PODFILE CHECKSUM: 1cc8d1bfb024aae1884dd7621e6307c1d415cbe7 COCOAPODS: 1.0.1 diff --git a/Example/Pods/Pods.xcodeproj/project.pbxproj b/Example/Pods/Pods.xcodeproj/project.pbxproj index 874f20d..e4d9109 100644 --- a/Example/Pods/Pods.xcodeproj/project.pbxproj +++ b/Example/Pods/Pods.xcodeproj/project.pbxproj @@ -1,538 +1,1200 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 0EF229D30FFF9BDD8646CF5267C71144 /* RSA-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */; }; - 309715681DC2776B00A0EFDA /* RSA.h in Headers */ = {isa = PBXBuildFile; fileRef = 309715661DC2776B00A0EFDA /* RSA.h */; }; - 309715691DC2776B00A0EFDA /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 309715671DC2776B00A0EFDA /* RSA.m */; }; - 3E377D2B586305C63D5543E77856D0BE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; - 669B6F58FCB4BA88A35D4F129D13708E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */; }; - B90E6C245D9BEA57A0215E18DC40EE96 /* Pods-RSA_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */; }; - D8F48E3B239FE353BE070B2C413889F7 /* RSA-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E2857FAC0DCD6FD7E0C73249DE682209 /* Pods-RSA_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; -/* End PBXBuildFile section */ - -/* Begin PBXContainerItemProxy section */ - 14E1FC02E56DD91F58B16F47D56F4E9E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; - proxyType = 1; - remoteGlobalIDString = CB68AE72CC202BFB68B1A8077065E5A1; - remoteInfo = RSA; - }; -/* End PBXContainerItemProxy section */ - -/* Begin PBXFileReference section */ - 1C09238F5806CCD1A6A7F86A4C361CBA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RSA-dummy.m"; sourceTree = ""; }; - 2475820A0B8E0786A43629605C644BE3 /* Pods-RSA_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-RSA_Example-acknowledgements.plist"; sourceTree = ""; }; - 2FD0F265281CB66F8850753A8E6D0775 /* Pods-RSA_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-RSA_Example-acknowledgements.markdown"; sourceTree = ""; }; - 309715661DC2776B00A0EFDA /* RSA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSA.h; sourceTree = ""; }; - 309715671DC2776B00A0EFDA /* RSA.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSA.m; sourceTree = ""; }; - 349A38E7CEC8E9A0709A7A3E06151567 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.release.xcconfig"; sourceTree = ""; }; - 4E136B69D150DE9FFF2CD7E1924C3E46 /* Pods-RSA_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-resources.sh"; sourceTree = ""; }; - 8734C2BB5E8D4C5D5316F3E1A7234608 /* RSA.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = RSA.modulemap; sourceTree = ""; }; - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RSA_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - BBC48FD9C7DCFDA523F2E46A854D7816 /* RSA-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-prefix.pch"; sourceTree = ""; }; - C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-RSA_Example-dummy.m"; sourceTree = ""; }; - CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-RSA_Example.debug.xcconfig"; sourceTree = ""; }; - CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-RSA_Example-umbrella.h"; sourceTree = ""; }; - CF6E8A2728654EBC80F1E841EE124405 /* Pods-RSA_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-RSA_Example.modulemap"; sourceTree = ""; }; - DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RSA.xcconfig; sourceTree = ""; }; - E2F606B6B431CCAE46E01040F9AE3BA3 /* Pods-RSA_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-RSA_Example-frameworks.sh"; sourceTree = ""; }; - E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RSA-umbrella.h"; sourceTree = ""; }; - FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = RSA.framework; sourceTree = BUILT_PRODUCTS_DIR; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - B0630DED11ED73286855088249253540 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 3E377D2B586305C63D5543E77856D0BE /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F971F86B0D01D01D6A8E22AF1B5D7640 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - 669B6F58FCB4BA88A35D4F129D13708E /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 085FC2AF1D7CF28E2185A99E0F64364A /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 9B97ECA50DC22CE61301E383D7F1CCA9 /* Pods-RSA_Example */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 2E0CD010C2EBBB577925845288E82C25 /* RSA */ = { - isa = PBXGroup; - children = ( - 993E893EC61615C45A159FBB02992BCD /* Classes */, - ); - path = RSA; - sourceTree = ""; - }; - 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */ = { - isa = PBXGroup; - children = ( - CEC22C73C1608DFA5D5D78BDCB218219 /* Foundation.framework */, - ); - name = iOS; - sourceTree = ""; - }; - 6177638075C968DD9A8B41A1F0FCEEEA /* RSA */ = { - isa = PBXGroup; - children = ( - 2E0CD010C2EBBB577925845288E82C25 /* RSA */, - 7F9A1E7DAF80E5F6328C1852336F13F8 /* Support Files */, - ); - name = RSA; - path = ../..; - sourceTree = ""; - }; - 6CA7A6A7B909B36532B9354E2FBC69BE /* Development Pods */ = { - isa = PBXGroup; - children = ( - 6177638075C968DD9A8B41A1F0FCEEEA /* RSA */, - ); - name = "Development Pods"; - sourceTree = ""; - }; - 7DB346D0F39D3F0E887471402A8071AB = { - isa = PBXGroup; - children = ( - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, - 6CA7A6A7B909B36532B9354E2FBC69BE /* Development Pods */, - BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */, - A0676319266B72811F858DE95F3EBBFB /* Products */, - 085FC2AF1D7CF28E2185A99E0F64364A /* Targets Support Files */, - ); - sourceTree = ""; - }; - 7F9A1E7DAF80E5F6328C1852336F13F8 /* Support Files */ = { - isa = PBXGroup; - children = ( - 1C09238F5806CCD1A6A7F86A4C361CBA /* Info.plist */, - 8734C2BB5E8D4C5D5316F3E1A7234608 /* RSA.modulemap */, - DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */, - 2402C4243A5A147138E195E80BF7B856 /* RSA-dummy.m */, - BBC48FD9C7DCFDA523F2E46A854D7816 /* RSA-prefix.pch */, - E674DAD7A2272C2784A16AD4B48329D4 /* RSA-umbrella.h */, - ); - name = "Support Files"; - path = "Example/Pods/Target Support Files/RSA"; - sourceTree = ""; - }; - 993E893EC61615C45A159FBB02992BCD /* Classes */ = { - isa = PBXGroup; - children = ( - 309715661DC2776B00A0EFDA /* RSA.h */, - 309715671DC2776B00A0EFDA /* RSA.m */, - ); - path = Classes; - sourceTree = ""; - }; - 9B97ECA50DC22CE61301E383D7F1CCA9 /* Pods-RSA_Example */ = { - isa = PBXGroup; - children = ( - 349A38E7CEC8E9A0709A7A3E06151567 /* Info.plist */, - CF6E8A2728654EBC80F1E841EE124405 /* Pods-RSA_Example.modulemap */, - 2FD0F265281CB66F8850753A8E6D0775 /* Pods-RSA_Example-acknowledgements.markdown */, - 2475820A0B8E0786A43629605C644BE3 /* Pods-RSA_Example-acknowledgements.plist */, - C8692E1737B4BCD806F26D4FA501DB89 /* Pods-RSA_Example-dummy.m */, - E2F606B6B431CCAE46E01040F9AE3BA3 /* Pods-RSA_Example-frameworks.sh */, - 4E136B69D150DE9FFF2CD7E1924C3E46 /* Pods-RSA_Example-resources.sh */, - CF64925CD6A9791705971C0961CC15DD /* Pods-RSA_Example-umbrella.h */, - CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */, - 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */, - ); - name = "Pods-RSA_Example"; - path = "Target Support Files/Pods-RSA_Example"; - sourceTree = ""; - }; - A0676319266B72811F858DE95F3EBBFB /* Products */ = { - isa = PBXGroup; - children = ( - A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */, - FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */, - ); - name = Products; - sourceTree = ""; - }; - BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = { - isa = PBXGroup; - children = ( - 3DCAB2B7CDE207B3958B6CB957FCC758 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 3BE9276B5DE6058D87A215BFC29E1A48 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E2857FAC0DCD6FD7E0C73249DE682209 /* Pods-RSA_Example-umbrella.h in Headers */, - 309715681DC2776B00A0EFDA /* RSA.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DE5663D063FF4B21F7E761128B8F97E6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - D8F48E3B239FE353BE070B2C413889F7 /* RSA-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - B4F4BCFC39D80B8BFB99EBC0261C8A01 /* Pods-RSA_Example */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8257444BCD48FA6254CFCD69AD610B70 /* Build configuration list for PBXNativeTarget "Pods-RSA_Example" */; - buildPhases = ( - 4A14D742626B580901CE119A85B23F21 /* Sources */, - B0630DED11ED73286855088249253540 /* Frameworks */, - 3BE9276B5DE6058D87A215BFC29E1A48 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 8179916F5C515B2DD7FB43F3B73823E6 /* PBXTargetDependency */, - ); - name = "Pods-RSA_Example"; - productName = "Pods-RSA_Example"; - productReference = A14AFAA5B90A8CF4E35D9CF66B825736 /* Pods_RSA_Example.framework */; - productType = "com.apple.product-type.framework"; - }; - CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7C920A881AA7CCA6966282EC36B7150A /* Build configuration list for PBXNativeTarget "RSA" */; - buildPhases = ( - BC70C7DCAF0BDBB00EE52D92C0B47D2A /* Sources */, - F971F86B0D01D01D6A8E22AF1B5D7640 /* Frameworks */, - DE5663D063FF4B21F7E761128B8F97E6 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = RSA; - productName = RSA; - productReference = FDDCAC3F8BD82B31E681D1389873BB14 /* RSA.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0730; - LastUpgradeCheck = 0700; - }; - buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = 7DB346D0F39D3F0E887471402A8071AB; - productRefGroup = A0676319266B72811F858DE95F3EBBFB /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - B4F4BCFC39D80B8BFB99EBC0261C8A01 /* Pods-RSA_Example */, - CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXSourcesBuildPhase section */ - 4A14D742626B580901CE119A85B23F21 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 309715691DC2776B00A0EFDA /* RSA.m in Sources */, - B90E6C245D9BEA57A0215E18DC40EE96 /* Pods-RSA_Example-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BC70C7DCAF0BDBB00EE52D92C0B47D2A /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 0EF229D30FFF9BDD8646CF5267C71144 /* RSA-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXTargetDependency section */ - 8179916F5C515B2DD7FB43F3B73823E6 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = RSA; - target = CB68AE72CC202BFB68B1A8077065E5A1 /* RSA */; - targetProxy = 14E1FC02E56DD91F58B16F47D56F4E9E /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - -/* Begin XCBuildConfiguration section */ - 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = YES; - ENABLE_NS_ASSERTIONS = NO; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - STRIP_INSTALLED_PRODUCT = NO; - SYMROOT = "${SRCROOT}/../build"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - B473482FFDADBA6C09C3BE8847E914B9 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RSA/RSA-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RSA/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/RSA/RSA.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = RSA; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - D3A651A449CB3E93FEECCEDFAFB04F77 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = DCBB6B1769B918524ECA0A6AECF50387 /* RSA.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREFIX_HEADER = "Target Support Files/RSA/RSA-prefix.pch"; - INFOPLIST_FILE = "Target Support Files/RSA/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MODULEMAP_FILE = "Target Support Files/RSA/RSA.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - PRODUCT_NAME = RSA; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_DEBUG=1", - "DEBUG=1", - "$(inherited)", - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - ONLY_ACTIVE_ARCH = YES; - STRIP_INSTALLED_PRODUCT = NO; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Debug; - }; - E29F1C0560425FE0C0D7150A5C1DB4E0 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CCAF6F2C9DA0DA17203F090C6464F1E5 /* Pods-RSA_Example.debug.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = dwarf; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-RSA_Example/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap"; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_RSA_Example; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - F993C228C84224E197D9E232652CEAA1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4A21839FFF24A11195C4BAA17CE62EB5 /* Pods-RSA_Example.release.xcconfig */; - buildSettings = { - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_NO_COMMON_BLOCKS = YES; - INFOPLIST_FILE = "Target Support Files/Pods-RSA_Example/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 8.3; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap"; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = Pods_RSA_Example; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D3E3D092A3FF7311A98E44BBA36FFD12 /* Debug */, - 0ACDCBCB0B6796575F46FFA2F5410C6B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7C920A881AA7CCA6966282EC36B7150A /* Build configuration list for PBXNativeTarget "RSA" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - D3A651A449CB3E93FEECCEDFAFB04F77 /* Debug */, - B473482FFDADBA6C09C3BE8847E914B9 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8257444BCD48FA6254CFCD69AD610B70 /* Build configuration list for PBXNativeTarget "Pods-RSA_Example" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - E29F1C0560425FE0C0D7150A5C1DB4E0 /* Debug */, - F993C228C84224E197D9E232652CEAA1 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; -} + + + + + archiveVersion + 1 + classes + + objectVersion + 46 + objects + + 0ACDCBCB0B6796575F46FFA2F5410C6B + + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + CLANG_ANALYZER_NONNULL + YES + CLANG_CXX_LANGUAGE_STANDARD + gnu++0x + CLANG_CXX_LIBRARY + libc++ + CLANG_ENABLE_MODULES + YES + CLANG_ENABLE_OBJC_ARC + YES + CLANG_WARN_BOOL_CONVERSION + YES + CLANG_WARN_CONSTANT_CONVERSION + YES + CLANG_WARN_DIRECT_OBJC_ISA_USAGE + YES + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + CLANG_WARN_UNREACHABLE_CODE + YES + CLANG_WARN__DUPLICATE_METHOD_MATCH + YES + COPY_PHASE_STRIP + YES + ENABLE_NS_ASSERTIONS + NO + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_PREPROCESSOR_DEFINITIONS + + POD_CONFIGURATION_RELEASE=1 + $(inherited) + + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + GCC_WARN_UNDECLARED_SELECTOR + YES + GCC_WARN_UNINITIALIZED_AUTOS + YES + GCC_WARN_UNUSED_FUNCTION + YES + GCC_WARN_UNUSED_VARIABLE + YES + IPHONEOS_DEPLOYMENT_TARGET + 8.3 + STRIP_INSTALLED_PRODUCT + NO + SYMROOT + ${SRCROOT}/../build + VALIDATE_PRODUCT + YES + + isa + XCBuildConfiguration + name + Release + + 100A1278631765124826D7BF5E16A2A3 + + baseConfigurationReference + DCBB6B1769B918524ECA0A6AECF50387 + buildSettings + + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + CURRENT_PROJECT_VERSION + 1 + DEBUG_INFORMATION_FORMAT + dwarf-with-dsym + DEFINES_MODULE + YES + DYLIB_COMPATIBILITY_VERSION + 1 + DYLIB_CURRENT_VERSION + 1 + DYLIB_INSTALL_NAME_BASE + @rpath + ENABLE_STRICT_OBJC_MSGSEND + YES + GCC_NO_COMMON_BLOCKS + YES + GCC_PREFIX_HEADER + Target Support Files/RSA/RSA-prefix.pch + INFOPLIST_FILE + Target Support Files/RSA/Info.plist + INSTALL_PATH + $(LOCAL_LIBRARY_DIR)/Frameworks + IPHONEOS_DEPLOYMENT_TARGET + 8.0 + LD_RUNPATH_SEARCH_PATHS + + $(inherited) + @executable_path/Frameworks + @loader_path/Frameworks + + MODULEMAP_FILE + Target Support Files/RSA/RSA.modulemap + MTL_ENABLE_DEBUG_INFO + NO + PRODUCT_NAME + RSA + SDKROOT + iphoneos + SKIP_INSTALL + YES + TARGETED_DEVICE_FAMILY + 1,2 + VERSIONING_SYSTEM + apple-generic + VERSION_INFO_PREFIX + + + isa + XCBuildConfiguration + name + Release + + 13D4231953FC2318C474673192414EF3 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + Pods-RSAUtil-umbrella.h + sourceTree + <group> + + 1619E105769A425F54F7F03BC93631E8 + + buildConfigurations + + A1FA548700F278F13F9A00DF6FAF206E + 100A1278631765124826D7BF5E16A2A3 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + 1C09238F5806CCD1A6A7F86A4C361CBA + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.plist.xml + path + Info.plist + sourceTree + <group> + + 1D70BB43543CBB8F8D9253B84289BCB0 + + fileRef + CEC22C73C1608DFA5D5D78BDCB218219 + isa + PBXBuildFile + + 1EEE99754C4A76B03A3B74E73B7F8B83 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + RSA.m + sourceTree + <group> + + 20C028EED144E693E473473B171C6394 + + fileRef + 5979A62E0651AC28CDCE754209121D64 + isa + PBXBuildFile + + 2402C4243A5A147138E195E80BF7B856 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + RSA-dummy.m + sourceTree + <group> + + 2B08E14C1489A7355765F7DC7DB01B52 + + explicitFileType + wrapper.framework + includeInIndex + 0 + isa + PBXFileReference + name + RSA.framework + path + RSA.framework + sourceTree + BUILT_PRODUCTS_DIR + + 2CCD12F762E1CB26C0E83900D63AC602 + + buildActionMask + 2147483647 + files + + 20C028EED144E693E473473B171C6394 + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 2D8E8EC45A3A1A1D94AE762CB5028504 + + buildConfigurations + + D3E3D092A3FF7311A98E44BBA36FFD12 + 0ACDCBCB0B6796575F46FFA2F5410C6B + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + 3DCAB2B7CDE207B3958B6CB957FCC758 + + children + + CEC22C73C1608DFA5D5D78BDCB218219 + + isa + PBXGroup + name + iOS + sourceTree + <group> + + 3E6482EA8147E7094036E7563B069822 + + containerPortal + D41D8CD98F00B204E9800998ECF8427E + isa + PBXContainerItemProxy + proxyType + 1 + remoteGlobalIDString + AB7F83E307CD01B093D2C1768845FE49 + remoteInfo + RSA + + 41114C2D8BBAC69D61007817FD7E6624 + + fileRef + 13D4231953FC2318C474673192414EF3 + isa + PBXBuildFile + settings + + ATTRIBUTES + + Public + + + + 428F13E9B4FB628BDD51EFB36A45B6E9 + + fileRef + 2402C4243A5A147138E195E80BF7B856 + isa + PBXBuildFile + + 44B0BB351EEBB5CF5A7CC8C79EB5AA78 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.plist.xml + path + Pods-RSAUtil-acknowledgements.plist + sourceTree + <group> + + 47B99F82D1986BA90B12C86769E1457A + + fileRef + E674DAD7A2272C2784A16AD4B48329D4 + isa + PBXBuildFile + settings + + ATTRIBUTES + + Public + + + + 4C5C8D665DCF15A5F0E64B2C1E11C11A + + explicitFileType + wrapper.framework + includeInIndex + 0 + isa + PBXFileReference + name + Pods_RSAUtil.framework + path + Pods-RSAUtil.framework + sourceTree + BUILT_PRODUCTS_DIR + + 524108B1C6FCACBA688E328FD949A2F0 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.script.sh + path + Pods-RSAUtil-frameworks.sh + sourceTree + <group> + + 56C2BA1068924CFF1852498373B179EC + + buildActionMask + 2147483647 + files + + 582E144F4979065ED07BF31B4FD309A5 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 57DEB93CF6D4EFE503E11DD445165E48 + + includeInIndex + 1 + isa + PBXFileReference + path + Pods-RSAUtil.modulemap + sourceTree + <group> + + 582E144F4979065ED07BF31B4FD309A5 + + fileRef + CEC22C73C1608DFA5D5D78BDCB218219 + isa + PBXBuildFile + + 58770E28236809F58C2974CEF8F337DE + + buildActionMask + 2147483647 + files + + 41114C2D8BBAC69D61007817FD7E6624 + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 5979A62E0651AC28CDCE754209121D64 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.objc + path + Pods-RSAUtil-dummy.m + sourceTree + <group> + + 5EEDF7A5CB2B28EECC7332BCD5EBEA42 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.script.sh + path + Pods-RSAUtil-resources.sh + sourceTree + <group> + + 6177638075C968DD9A8B41A1F0FCEEEA + + children + + B4727B6289A150BB4B7C54B66AA21C74 + 7F9A1E7DAF80E5F6328C1852336F13F8 + + isa + PBXGroup + name + RSA + path + ../.. + sourceTree + <group> + + 6A653B69D1D8071411E479AF0AAC2B15 + + buildActionMask + 2147483647 + files + + 428F13E9B4FB628BDD51EFB36A45B6E9 + CA8F4843B65857EE62F45AD97628C4F5 + + isa + PBXSourcesBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 6AA47843DA1B0FE0486C0ACA881C9593 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-RSAUtil.release.xcconfig + sourceTree + <group> + + 6CA7A6A7B909B36532B9354E2FBC69BE + + children + + 6177638075C968DD9A8B41A1F0FCEEEA + + isa + PBXGroup + name + Development Pods + sourceTree + <group> + + 6F042657DA1D02358E401B6FFE1941DF + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + RSA.h + sourceTree + <group> + + 7985070F2C5ECD2947CAF175C682228D + + children + + 4C5C8D665DCF15A5F0E64B2C1E11C11A + 2B08E14C1489A7355765F7DC7DB01B52 + + isa + PBXGroup + name + Products + sourceTree + <group> + + 7B7A8125A5F9EF719352FF968CC00AF5 + + buildActionMask + 2147483647 + files + + 1D70BB43543CBB8F8D9253B84289BCB0 + + isa + PBXFrameworksBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + 7DB346D0F39D3F0E887471402A8071AB + + children + + 93A4A3777CF96A4AAC1D13BA6DCCEA73 + 6CA7A6A7B909B36532B9354E2FBC69BE + BC3CA7F9E30CC8F7E2DD044DD34432FC + 7985070F2C5ECD2947CAF175C682228D + C1B80F536FB05F45559191C01A397A7F + + isa + PBXGroup + sourceTree + <group> + + 7F9A1E7DAF80E5F6328C1852336F13F8 + + children + + 1C09238F5806CCD1A6A7F86A4C361CBA + 8734C2BB5E8D4C5D5316F3E1A7234608 + DCBB6B1769B918524ECA0A6AECF50387 + 2402C4243A5A147138E195E80BF7B856 + BBC48FD9C7DCFDA523F2E46A854D7816 + E674DAD7A2272C2784A16AD4B48329D4 + + isa + PBXGroup + name + Support Files + path + Example/Pods/Target Support Files/RSA + sourceTree + <group> + + 8734C2BB5E8D4C5D5316F3E1A7234608 + + includeInIndex + 1 + isa + PBXFileReference + path + RSA.modulemap + sourceTree + <group> + + 8A9E2A3D4286EAB7247BB6EE038D5F8F + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text + path + Pods-RSAUtil-acknowledgements.markdown + sourceTree + <group> + + 9193D0672BE9A6799D900758B7B1A84E + + buildConfigurations + + A2B28F86A9444E27D02C647FC7C42DEE + 96D0FECCB020A0DA4FBA287383CD1BE3 + + defaultConfigurationIsVisible + 0 + defaultConfigurationName + Release + isa + XCConfigurationList + + 91E973DA383294CFCEA2421209BA8E12 + + fileRef + 6F042657DA1D02358E401B6FFE1941DF + isa + PBXBuildFile + settings + + ATTRIBUTES + + Public + + + + 93A4A3777CF96A4AAC1D13BA6DCCEA73 + + explicitFileType + text.script.ruby + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text + name + Podfile + path + ../Podfile + sourceTree + SOURCE_ROOT + xcLanguageSpecificationIdentifier + xcode.lang.ruby + + 96D0FECCB020A0DA4FBA287383CD1BE3 + + baseConfigurationReference + 6AA47843DA1B0FE0486C0ACA881C9593 + buildSettings + + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + CURRENT_PROJECT_VERSION + 1 + DEBUG_INFORMATION_FORMAT + dwarf-with-dsym + DEFINES_MODULE + YES + DYLIB_COMPATIBILITY_VERSION + 1 + DYLIB_CURRENT_VERSION + 1 + DYLIB_INSTALL_NAME_BASE + @rpath + ENABLE_STRICT_OBJC_MSGSEND + YES + GCC_NO_COMMON_BLOCKS + YES + INFOPLIST_FILE + Target Support Files/Pods-RSAUtil/Info.plist + INSTALL_PATH + $(LOCAL_LIBRARY_DIR)/Frameworks + IPHONEOS_DEPLOYMENT_TARGET + 8.3 + LD_RUNPATH_SEARCH_PATHS + + $(inherited) + @executable_path/Frameworks + @loader_path/Frameworks + + MACH_O_TYPE + staticlib + MODULEMAP_FILE + Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap + MTL_ENABLE_DEBUG_INFO + NO + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PODS_ROOT + $(SRCROOT) + PRODUCT_BUNDLE_IDENTIFIER + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + PRODUCT_NAME + Pods_RSAUtil + SDKROOT + iphoneos + SKIP_INSTALL + YES + TARGETED_DEVICE_FAMILY + 1,2 + VERSIONING_SYSTEM + apple-generic + VERSION_INFO_PREFIX + + + isa + XCBuildConfiguration + name + Release + + 97E4569DB546ADFDD316187926AFC07F + + children + + 6F042657DA1D02358E401B6FFE1941DF + 1EEE99754C4A76B03A3B74E73B7F8B83 + + isa + PBXGroup + name + Classes + path + Classes + sourceTree + <group> + + 982328BCC33DAE03990D40CC3FB6A5E2 + + buildConfigurationList + 9193D0672BE9A6799D900758B7B1A84E + buildPhases + + 2CCD12F762E1CB26C0E83900D63AC602 + 56C2BA1068924CFF1852498373B179EC + 58770E28236809F58C2974CEF8F337DE + + buildRules + + dependencies + + D731A13488092AF1F6964BAECE52ACB5 + + isa + PBXNativeTarget + name + Pods-RSAUtil + productName + Pods-RSAUtil + productReference + 4C5C8D665DCF15A5F0E64B2C1E11C11A + productType + com.apple.product-type.framework + + A1FA548700F278F13F9A00DF6FAF206E + + baseConfigurationReference + DCBB6B1769B918524ECA0A6AECF50387 + buildSettings + + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + CURRENT_PROJECT_VERSION + 1 + DEBUG_INFORMATION_FORMAT + dwarf + DEFINES_MODULE + YES + DYLIB_COMPATIBILITY_VERSION + 1 + DYLIB_CURRENT_VERSION + 1 + DYLIB_INSTALL_NAME_BASE + @rpath + ENABLE_STRICT_OBJC_MSGSEND + YES + GCC_NO_COMMON_BLOCKS + YES + GCC_PREFIX_HEADER + Target Support Files/RSA/RSA-prefix.pch + INFOPLIST_FILE + Target Support Files/RSA/Info.plist + INSTALL_PATH + $(LOCAL_LIBRARY_DIR)/Frameworks + IPHONEOS_DEPLOYMENT_TARGET + 8.0 + LD_RUNPATH_SEARCH_PATHS + + $(inherited) + @executable_path/Frameworks + @loader_path/Frameworks + + MODULEMAP_FILE + Target Support Files/RSA/RSA.modulemap + MTL_ENABLE_DEBUG_INFO + YES + PRODUCT_NAME + RSA + SDKROOT + iphoneos + SKIP_INSTALL + YES + TARGETED_DEVICE_FAMILY + 1,2 + VERSIONING_SYSTEM + apple-generic + VERSION_INFO_PREFIX + + + isa + XCBuildConfiguration + name + Debug + + A2B28F86A9444E27D02C647FC7C42DEE + + baseConfigurationReference + D7B8D2C253DC5C6405AFCD3815AF6D73 + buildSettings + + CODE_SIGN_IDENTITY[sdk=iphoneos*] + iPhone Developer + CURRENT_PROJECT_VERSION + 1 + DEBUG_INFORMATION_FORMAT + dwarf + DEFINES_MODULE + YES + DYLIB_COMPATIBILITY_VERSION + 1 + DYLIB_CURRENT_VERSION + 1 + DYLIB_INSTALL_NAME_BASE + @rpath + ENABLE_STRICT_OBJC_MSGSEND + YES + GCC_NO_COMMON_BLOCKS + YES + INFOPLIST_FILE + Target Support Files/Pods-RSAUtil/Info.plist + INSTALL_PATH + $(LOCAL_LIBRARY_DIR)/Frameworks + IPHONEOS_DEPLOYMENT_TARGET + 8.3 + LD_RUNPATH_SEARCH_PATHS + + $(inherited) + @executable_path/Frameworks + @loader_path/Frameworks + + MACH_O_TYPE + staticlib + MODULEMAP_FILE + Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap + MTL_ENABLE_DEBUG_INFO + YES + OTHER_LDFLAGS + + OTHER_LIBTOOLFLAGS + + PODS_ROOT + $(SRCROOT) + PRODUCT_BUNDLE_IDENTIFIER + org.cocoapods.${PRODUCT_NAME:rfc1034identifier} + PRODUCT_NAME + Pods_RSAUtil + SDKROOT + iphoneos + SKIP_INSTALL + YES + TARGETED_DEVICE_FAMILY + 1,2 + VERSIONING_SYSTEM + apple-generic + VERSION_INFO_PREFIX + + + isa + XCBuildConfiguration + name + Debug + + AB7F83E307CD01B093D2C1768845FE49 + + buildConfigurationList + 1619E105769A425F54F7F03BC93631E8 + buildPhases + + 6A653B69D1D8071411E479AF0AAC2B15 + 7B7A8125A5F9EF719352FF968CC00AF5 + DD3A05D8C5B5C5BC775A839E88CFD403 + + buildRules + + dependencies + + isa + PBXNativeTarget + name + RSA + productName + RSA + productReference + 2B08E14C1489A7355765F7DC7DB01B52 + productType + com.apple.product-type.framework + + B4727B6289A150BB4B7C54B66AA21C74 + + children + + 97E4569DB546ADFDD316187926AFC07F + + isa + PBXGroup + name + RSA + path + RSA + sourceTree + <group> + + BBC48FD9C7DCFDA523F2E46A854D7816 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + RSA-prefix.pch + sourceTree + <group> + + BC3CA7F9E30CC8F7E2DD044DD34432FC + + children + + 3DCAB2B7CDE207B3958B6CB957FCC758 + + isa + PBXGroup + name + Frameworks + sourceTree + <group> + + C1B80F536FB05F45559191C01A397A7F + + children + + CEDE6FF9B067B911F30AF8EBAE9A4DA8 + + isa + PBXGroup + name + Targets Support Files + sourceTree + <group> + + CA8F4843B65857EE62F45AD97628C4F5 + + fileRef + 1EEE99754C4A76B03A3B74E73B7F8B83 + isa + PBXBuildFile + + CEC22C73C1608DFA5D5D78BDCB218219 + + isa + PBXFileReference + lastKnownFileType + wrapper.framework + name + Foundation.framework + path + Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework + sourceTree + DEVELOPER_DIR + + CEDE6FF9B067B911F30AF8EBAE9A4DA8 + + children + + DDE211E68CAB641208F4B7BD8F86B871 + 57DEB93CF6D4EFE503E11DD445165E48 + 8A9E2A3D4286EAB7247BB6EE038D5F8F + 44B0BB351EEBB5CF5A7CC8C79EB5AA78 + 5979A62E0651AC28CDCE754209121D64 + 524108B1C6FCACBA688E328FD949A2F0 + 5EEDF7A5CB2B28EECC7332BCD5EBEA42 + 13D4231953FC2318C474673192414EF3 + D7B8D2C253DC5C6405AFCD3815AF6D73 + 6AA47843DA1B0FE0486C0ACA881C9593 + + isa + PBXGroup + name + Pods-RSAUtil + path + Target Support Files/Pods-RSAUtil + sourceTree + <group> + + D3E3D092A3FF7311A98E44BBA36FFD12 + + buildSettings + + ALWAYS_SEARCH_USER_PATHS + NO + CLANG_ANALYZER_NONNULL + YES + CLANG_CXX_LANGUAGE_STANDARD + gnu++0x + CLANG_CXX_LIBRARY + libc++ + CLANG_ENABLE_MODULES + YES + CLANG_ENABLE_OBJC_ARC + YES + CLANG_WARN_BOOL_CONVERSION + YES + CLANG_WARN_CONSTANT_CONVERSION + YES + CLANG_WARN_DIRECT_OBJC_ISA_USAGE + YES + CLANG_WARN_EMPTY_BODY + YES + CLANG_WARN_ENUM_CONVERSION + YES + CLANG_WARN_INT_CONVERSION + YES + CLANG_WARN_OBJC_ROOT_CLASS + YES + CLANG_WARN_UNREACHABLE_CODE + YES + CLANG_WARN__DUPLICATE_METHOD_MATCH + YES + COPY_PHASE_STRIP + NO + ENABLE_TESTABILITY + YES + GCC_C_LANGUAGE_STANDARD + gnu99 + GCC_DYNAMIC_NO_PIC + NO + GCC_OPTIMIZATION_LEVEL + 0 + GCC_PREPROCESSOR_DEFINITIONS + + POD_CONFIGURATION_DEBUG=1 + DEBUG=1 + $(inherited) + + GCC_SYMBOLS_PRIVATE_EXTERN + NO + GCC_WARN_64_TO_32_BIT_CONVERSION + YES + GCC_WARN_ABOUT_RETURN_TYPE + YES + GCC_WARN_UNDECLARED_SELECTOR + YES + GCC_WARN_UNINITIALIZED_AUTOS + YES + GCC_WARN_UNUSED_FUNCTION + YES + GCC_WARN_UNUSED_VARIABLE + YES + IPHONEOS_DEPLOYMENT_TARGET + 8.3 + ONLY_ACTIVE_ARCH + YES + STRIP_INSTALLED_PRODUCT + NO + SYMROOT + ${SRCROOT}/../build + + isa + XCBuildConfiguration + name + Debug + + D41D8CD98F00B204E9800998ECF8427E + + attributes + + LastSwiftUpdateCheck + 0730 + LastUpgradeCheck + 0700 + + buildConfigurationList + 2D8E8EC45A3A1A1D94AE762CB5028504 + compatibilityVersion + Xcode 3.2 + developmentRegion + English + hasScannedForEncodings + 0 + isa + PBXProject + knownRegions + + en + + mainGroup + 7DB346D0F39D3F0E887471402A8071AB + productRefGroup + 7985070F2C5ECD2947CAF175C682228D + projectDirPath + + projectReferences + + projectRoot + + targets + + 982328BCC33DAE03990D40CC3FB6A5E2 + AB7F83E307CD01B093D2C1768845FE49 + + + D731A13488092AF1F6964BAECE52ACB5 + + isa + PBXTargetDependency + name + RSA + target + AB7F83E307CD01B093D2C1768845FE49 + targetProxy + 3E6482EA8147E7094036E7563B069822 + + D7B8D2C253DC5C6405AFCD3815AF6D73 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + Pods-RSAUtil.debug.xcconfig + sourceTree + <group> + + DCBB6B1769B918524ECA0A6AECF50387 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.xcconfig + path + RSA.xcconfig + sourceTree + <group> + + DD3A05D8C5B5C5BC775A839E88CFD403 + + buildActionMask + 2147483647 + files + + 47B99F82D1986BA90B12C86769E1457A + 91E973DA383294CFCEA2421209BA8E12 + + isa + PBXHeadersBuildPhase + runOnlyForDeploymentPostprocessing + 0 + + DDE211E68CAB641208F4B7BD8F86B871 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + text.plist.xml + path + Info.plist + sourceTree + <group> + + E674DAD7A2272C2784A16AD4B48329D4 + + includeInIndex + 1 + isa + PBXFileReference + lastKnownFileType + sourcecode.c.h + path + RSA-umbrella.h + sourceTree + <group> + + + rootObject + D41D8CD98F00B204E9800998ECF8427E + + diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme similarity index 85% rename from Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme rename to Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme index 33811c6..ee27a42 100644 --- a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSA_Example.xcscheme +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme @@ -14,9 +14,9 @@ buildForAnalyzing = "YES"> @@ -45,9 +45,9 @@ diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme index d554320..daecbe0 100644 --- a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme @@ -14,7 +14,7 @@ buildForArchiving = "YES"> diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist index 4d99c94..c2da894 100644 --- a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/xcschememanagement.plist @@ -4,7 +4,7 @@ SchemeUserState - Pods-RSA_Example.xcscheme + Pods-RSAUtil.xcscheme isShown @@ -17,17 +17,12 @@ SuppressBuildableAutocreation - B4F4BCFC39D80B8BFB99EBC0261C8A01 + 982328BCC33DAE03990D40CC3FB6A5E2 primary - CB68AE72CC202BFB68B1A8077065E5A1 - - primary - - - FFE0CE3B4B63DAF4F2A47F43C042B54B + AB7F83E307CD01B093D2C1768845FE49 primary diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist b/Example/Pods/Target Support Files/Pods-RSAUtil/Info.plist similarity index 100% rename from Example/Pods/Target Support Files/Pods-RSA_Example/Info.plist rename to Example/Pods/Target Support Files/Pods-RSAUtil/Info.plist diff --git a/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.markdown new file mode 100644 index 0000000..4d3df36 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.markdown @@ -0,0 +1,19 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## RSA + +Copyright (c) 2013 Objective-C-RSA(https://github.com/ideawu/Objective-C-RSA) Authors +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the Objective-C-RSA(https://github.com/ideawu/Objective-C-RSA) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.plist new file mode 100644 index 0000000..9e913d9 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-acknowledgements.plist @@ -0,0 +1,49 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2013 Objective-C-RSA(https://github.com/ideawu/Objective-C-RSA) Authors +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: + +1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + +2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. + +3. Neither the name of the Objective-C-RSA(https://github.com/ideawu/Objective-C-RSA) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + + Title + RSA + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-dummy.m b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-dummy.m new file mode 100644 index 0000000..5e366ba --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_RSAUtil : NSObject +@end +@implementation PodsDummy_Pods_RSAUtil +@end diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-frameworks.sh similarity index 100% rename from Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-frameworks.sh rename to Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-frameworks.sh diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-resources.sh similarity index 100% rename from Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-resources.sh rename to Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-resources.sh diff --git a/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-umbrella.h b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-umbrella.h new file mode 100644 index 0000000..59b96bb --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_RSAUtilVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_RSAUtilVersionString[]; + diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.debug.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.debug.xcconfig rename to Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.debug.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap new file mode 100644 index 0000000..aa74995 --- /dev/null +++ b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.modulemap @@ -0,0 +1,6 @@ +framework module Pods_RSAUtil { + umbrella header "Pods-RSAUtil-umbrella.h" + + export * + module * { export * } +} diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig b/Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.release.xcconfig similarity index 100% rename from Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.release.xcconfig rename to Example/Pods/Target Support Files/Pods-RSAUtil/Pods-RSAUtil.release.xcconfig diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown deleted file mode 100644 index a3c5a60..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.markdown +++ /dev/null @@ -1,26 +0,0 @@ -# Acknowledgements -This application makes use of the following third party libraries: - -## RSA - -Copyright (c) 2016 chorsfield - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - -Generated by CocoaPods - https://cocoapods.org diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist deleted file mode 100644 index 7f2bdb3..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-acknowledgements.plist +++ /dev/null @@ -1,56 +0,0 @@ - - - - - PreferenceSpecifiers - - - FooterText - This application makes use of the following third party libraries: - Title - Acknowledgements - Type - PSGroupSpecifier - - - FooterText - Copyright (c) 2016 chorsfield <chorsfield@defymedia.com> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. - - Title - RSA - Type - PSGroupSpecifier - - - FooterText - Generated by CocoaPods - https://cocoapods.org - Title - - Type - PSGroupSpecifier - - - StringsTable - Acknowledgements - Title - Acknowledgements - - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m deleted file mode 100644 index 8c0f5f5..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-dummy.m +++ /dev/null @@ -1,5 +0,0 @@ -#import -@interface PodsDummy_Pods_RSA_Example : NSObject -@end -@implementation PodsDummy_Pods_RSA_Example -@end diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h deleted file mode 100644 index e799598..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example-umbrella.h +++ /dev/null @@ -1,6 +0,0 @@ -#import - - -FOUNDATION_EXPORT double Pods_RSA_ExampleVersionNumber; -FOUNDATION_EXPORT const unsigned char Pods_RSA_ExampleVersionString[]; - diff --git a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap b/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap deleted file mode 100644 index d9376f7..0000000 --- a/Example/Pods/Target Support Files/Pods-RSA_Example/Pods-RSA_Example.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module Pods_RSA_Example { - umbrella header "Pods-RSA_Example-umbrella.h" - - export * - module * { export * } -} diff --git a/Example/Pods/Target Support Files/RSA/RSA-umbrella.h b/Example/Pods/Target Support Files/RSA/RSA-umbrella.h index 7ea0cc1..2470833 100644 --- a/Example/Pods/Target Support Files/RSA/RSA-umbrella.h +++ b/Example/Pods/Target Support Files/RSA/RSA-umbrella.h @@ -1,5 +1,6 @@ #import +#import "RSA.h" FOUNDATION_EXPORT double RSAVersionNumber; FOUNDATION_EXPORT const unsigned char RSAVersionString[]; From bada985515c29ee9ba4da6b4939ab2ab24377c3a Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:55:31 -0700 Subject: [PATCH 7/9] podspec validation fixes --- RSA.podspec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RSA.podspec b/RSA.podspec index bdeb134..bcf1355 100644 --- a/RSA.podspec +++ b/RSA.podspec @@ -9,7 +9,7 @@ Pod::Spec.new do |s| s.name = 'RSA' s.version = '0.1.0' - s.summary = 'A short description of RSA.' + s.summary = 'Doing RSA encryption with Objective-C iOS' # This description is used to generate tags and improve search results. # * Think: What does it do? Why did you write it? What is the focus? @@ -21,10 +21,10 @@ Pod::Spec.new do |s| TODO: Add long description of the pod here. DESC - s.homepage = 'https://github.com/ideawu/Objective-C-RSA' + s.homepage = 'https://github.com/ideawu/Objective-C-RSA.git' s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'ideawu' => '' } - s.source = { :git => 'https://github.com/ideawu/Objective-C-RSA', :tag => s.version.to_s } + s.source = { :git => 'https://github.com/ideawu/Objective-C-RSA.git', :tag => s.version.to_s } s.ios.deployment_target = '8.0' From 9a62d5eadd3d7b4a0ad22433c1becc782628a653 Mon Sep 17 00:00:00 2001 From: chorsfield Date: Thu, 27 Oct 2016 11:55:54 -0700 Subject: [PATCH 8/9] Xcode 8 project updates --- .gitignore | 3 ++ .../xcschemes/Pods-RSAUtil.xcscheme | 2 +- .../xcschemes/RSA.xcscheme | 39 ++++++++++++------- Example/RSA.xcodeproj/project.pbxproj | 14 +++++-- .../xcschemes/RSA-Example.xcscheme | 2 +- 5 files changed, 41 insertions(+), 19 deletions(-) diff --git a/.gitignore b/.gitignore index 07d00a7..2a0bcb1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,6 @@ *.swp *.xcuserstate RSAUtil.xcodeproj/xcuserdata +/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme +/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/RSA.xcscheme +/Example/RSA.xcworkspace/xcuserdata/chorsfield.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist diff --git a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme index ee27a42..09caa9f 100644 --- a/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme +++ b/Example/Pods/Pods.xcodeproj/xcuserdata/chorsfield.xcuserdatad/xcschemes/Pods-RSAUtil.xcscheme @@ -1,6 +1,6 @@ + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + BuildableIdentifier = "primary" + BlueprintIdentifier = "AB7F83E307CD01B093D2C1768845FE49" + BuildableName = "RSA.framework" + BlueprintName = "RSA" + ReferencedContainer = "container:Pods.xcodeproj"> + shouldUseLaunchSchemeArgsEnv = "YES"> + + + + + + + debugDocumentVersioning = "YES"> diff --git a/Example/RSA.xcodeproj/project.pbxproj b/Example/RSA.xcodeproj/project.pbxproj index 04dc0cb..2da2f26 100644 --- a/Example/RSA.xcodeproj/project.pbxproj +++ b/Example/RSA.xcodeproj/project.pbxproj @@ -7,7 +7,6 @@ objects = { /* Begin PBXBuildFile section */ - 3097156B1DC2778E00A0EFDA /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3097156A1DC2778E00A0EFDA /* Info.plist */; }; 309715701DC277B100A0EFDA /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3097156D1DC277B100A0EFDA /* AppDelegate.m */; }; 309715711DC277B100A0EFDA /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3097156F1DC277B100A0EFDA /* ViewController.m */; }; 309715761DC277BB00A0EFDA /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 309715721DC277BB00A0EFDA /* LaunchScreen.xib */; }; @@ -171,7 +170,7 @@ isa = PBXProject; attributes = { CLASSPREFIX = CH; - LastUpgradeCheck = 0720; + LastUpgradeCheck = 0800; ORGANIZATIONNAME = chorsfield; }; buildConfigurationList = 6003F585195388D10070C39A /* Build configuration list for PBXProject "RSA" */; @@ -199,7 +198,6 @@ files = ( 6003F5A9195388D20070C39A /* Images.xcassets in Resources */, 309715761DC277BB00A0EFDA /* LaunchScreen.xib in Resources */, - 3097156B1DC2778E00A0EFDA /* Info.plist in Resources */, 309715771DC277BB00A0EFDA /* Main.storyboard in Resources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -300,14 +298,19 @@ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( "DEBUG=1", @@ -340,13 +343,18 @@ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; CLANG_WARN_EMPTY_BODY = YES; CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; CLANG_WARN_INT_CONVERSION = YES; CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; GCC_WARN_UNDECLARED_SELECTOR = YES; diff --git a/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme b/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme index aa68038..9311443 100644 --- a/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme +++ b/Example/RSA.xcodeproj/xcshareddata/xcschemes/RSA-Example.xcscheme @@ -1,6 +1,6 @@ Date: Thu, 27 Oct 2016 12:00:16 -0700 Subject: [PATCH 9/9] podspec valildation fixes --- RSA/Classes/RSA.m | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/RSA/Classes/RSA.m b/RSA/Classes/RSA.m index 025f342..686c1bf 100644 --- a/RSA/Classes/RSA.m +++ b/RSA/Classes/RSA.m @@ -252,16 +252,15 @@ + (NSData *)encryptData:(NSData *)data withKeyRef:(SecKeyRef) keyRef{ } size_t outlen = block_size; - OSStatus status = noErr; - status = SecKeyEncrypt(keyRef, + OSStatus status = SecKeyEncrypt(keyRef, kSecPaddingPKCS1, srcbuf + idx, data_len, outbuf, &outlen ); - if (status != 0) { - NSLog(@"SecKeyEncrypt fail. Error Code: %d", status); + if (status != noErr) { + NSLog(@"SecKeyEncrypt fail. Error Code: %d", (int)status); ret = nil; break; }else{ @@ -308,16 +307,15 @@ + (NSData *)decryptData:(NSData *)data withKeyRef:(SecKeyRef) keyRef{ } size_t outlen = block_size; - OSStatus status = noErr; - status = SecKeyDecrypt(keyRef, + OSStatus status = SecKeyDecrypt(keyRef, kSecPaddingNone, srcbuf + idx, data_len, outbuf, &outlen ); - if (status != 0) { - NSLog(@"SecKeyEncrypt fail. Error Code: %d", status); + if (status != noErr) { + NSLog(@"SecKeyEncrypt fail. Error Code: %d", (int)status); ret = nil; break; }else{