TPObfuscation is a obfuscation toolbox for Swift!
Features • Communication • Example • Usage • Installation • Credits • License
- TODO: full features list
- You need more features? Checkout #Contribute
- If you found a bug, open an issue.
- If you have a feature request, open an issue.
- If you want to contribute, submit a pull request.
To run the example project, run pod try TPObfuscation
Simply replace any string, e.g.
let foo = "super-secret-api-key"
with the utility class:
let foo = TPObStr.s.u.p.e.r.dash.s.e.c.r.e.t.dash.a.p.i.dash.k.e.y
Once you have your Swift package set up, adding TPObfuscation as a dependency is as easy as adding it to the dependencies
value of your Package.swift
.
dependencies: [
.package(url: "https://github.com/techprimate/TPObfuscation", .upToNextMajor(from: "1.1.0"))
]
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate TPObfuscation into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '10.0'
use_frameworks!
target '<Your Target Name>' do
pod 'TPObfuscation'
end
Then, run the following command:
$ pod install
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with HomeBrew using the following command:
$ brew update
$ brew install carthage
To integrate TPObfuscation into your Xcode project using Carthage, specify it in your Cartfile
:
github "techprimate/TPObfuscation" ~> 1.1
Run carthage update
to build the framework and drag the built TPObfuscation.framework
into your Xcode project.
If you are using TPObfuscation in your app and want to be listed here, simply create a pull request or let me know on twitter or via Github. We are always curious to see who is using our projects :)
TPObfuscation is created and maintained by Philip Niedertscheider, owned by techprimate.
We want to thank all Contributors for their support!
TPObfuscation is available under the MIT license. See the LICENSE file for more info.