SweetHMAC alternatives and similar libraries
Based on the "Cryptography" category.
Alternatively, view SweetHMAC alternatives based on common mentions on social networks and blogs.
-
CryptoSwift
CryptoSwift is a growing collection of standard and secure cryptographic algorithms implemented in Swift -
RNCryptor
CCCryptor (AES encryption) wrappers for iOS and Mac in Swift. -- For ObjC, see RNCryptor/RNCryptor-objc -
SwiftShield
๐ Swift Obfuscator that protects iOS apps against reverse engineering attacks. -
Themis
Easy to use cryptographic framework for data protection: secure messaging with forward secrecy and secure data storage. Has unified APIs across 14 platforms. -
IDZSwiftCommonCrypto
A wrapper for Apple's Common Crypto library written in Swift. -
JOSESwift
A framework for the JOSE standards JWS, JWE, and JWK written in Swift. -
BlueCryptor
Swift cross-platform crypto library using CommonCrypto/libcrypto -
Siphash
Simple and secure hashing in Swift with the SipHash algorithm -
BlueRSA
RSA public/private key encryption, private key signing and public key verification in Swift using the Swift Package Manager. Works on iOS, macOS, and Linux (work in progress).
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of SweetHMAC or a related project?
README
Sweet HMAC
SweetHMAC
is a tiny and easy to use Swift class to encrypt strings using HMAC algorithms.
A special thanks to jernejstrasner for shared HMACDigest Gist, that inspired to create this simple class and String extension.
Usage examples
There are two ways to use Sweet HMAC in your projects
1. by String extension
// Will output this string: e470f785afb708cd8c2a31860642fd11
"I'm going to make him an offer he can't refuse".HMAC(.md5, secret:"Vito Corleone")
2. by SweetHMAC class
let quote = "I'm going to make him an offer he can't refuse"
let author = "Vito Corleone"
// Create a SweetHMAC instance with your message and secret strings
let digest:SweetHMAC = SweetHMAC(message: quote, secret: author)
// Pick some computed HMAC output based on some algorithm using "HMAC" method...
let md5 = digest.HMAC(algorithm: .md5)
// ...or do it more "Sweet" like this
let md5 = SweetHMAC(message: quote, secret: author).HMAC(.MD5)
Supported HMAC algorithms
- MD5
- SHA1
- SHA224
- SHA256
- SHA384
- SHA512
Installation
SweetHMAC have many clear and simple options to be used in any iOS or OSX projects.
Using dependency manager
Actually SweetHMAC can be used with those dependency managers
- CocoaPods
- Carthage
CocoaPods
You can use SweetHMAC with CocoaPods, specify your Podfile
like this:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
pod 'SweetHMAC', '~> 3.0'
Carthage
Also you can use Carthage to SweetHMAC framework at your project, just add SweetHMac in your Cartfile
file like this:
github "jancassio/SweetHMAC" >= 3.0
Integrated Project
As many iOS/OSX projects, you can add third party libraries in your project as well.
Embeded Framework
You can add SweetHMAC as submodule (preferred) or paste entire SweetHMAC project relative to your Xcode project, choose one of both options and after them:
- Drag
SweetHMAC.xcodeproj
from SweetHMAC folder to your project. - At Xcode, open "Project Navigator" (โ+1).
- Select SweetHMAC project (the blue project icon).
- Check if SweetHMAC deployment target matches your project deployment target.
- At this point, select "Build Phases" tab.
- Click on + icon to add a new "Copy Phase". Optional: Rename this phase to "Embeded Frameworks".
- Set destination to "Frameworks".
- Add
SweetHMAC.framework
.
Source file
This is not the preferred option to add SweetHMAC in your project, because SweetHMAC depends by CommonCrypto lib to work properly and, Swift can't access this lib directly.
So if you still want to use SweetHMAC by source files, follow steps below:
- At Xcode, open "Project Navigator" (โ+1).
- Select your project file (the blue project icon).
- Click on "Build Phases" tab.
- Create a new "Run Script" phase clicking on + icon.
- Drag the run script phase created to stay below the first phase (ak "Target dependencies").
- Paste the code below at run script phase created before:
COMMOM_CRYPTO_PATH=$SDKROOT/usr/include/CommonCrypto/CommonCrypto.h
COMMOM_CRYPTO_R_PATH=$SDKROOT/usr/include/CommonCrypto/CommonRandom.h
MODULE_DIR="$SRCROOT/Modules/CommonCrypto"
MODULE_FILE=$MODULE_DIR/module.map
MODULE_TEMPLATE="module CommonCrypto [system] {\n\t
header \"$COMMOM_CRYPTO_PATH\"\n\t
header \"$COMMOM_CRYPTO_R_PATH\"\n\t
export *\n
}"
echo "Create Modules path to map CommonCrypto lib"
mkdir -p "$SRCROOT/Modules/CommonCrypto"
echo "Cleanup previous CommonCrypto script to make sure the deployment target is always updated"
echo "" > $MODULE_FILE
echo "Create CommonCrypto module map template"
echo -e $MODULE_TEMPLATE > $MODULE_FILE
- Create a new file (โ+N).
- Select "iOS"/"Others".
- Select "Congfiguration Settings File".
- Put any name you want.
- Add the content below in Configuration file created before:
SWIFT_INCLUDE_PATHS="$SRCROOT/Modules"
- Go to your project file in "Project Navigator" (โ+1)
- Select your project file and select your project above your project targets.
- Change configurations for the last one you created for each target you are using SweetHMAC by source.
- Build your project.
Quick Observation
Each time you change your deployment device for example, from Simulator to Device, you should build your project, because the script added in build phase, will use the current operational system selected in your Xcode scheme to construct the absolute path to the CommonCrypto header relative of Simulator SDK or iPhoneOS SDK.
License
Copyright (c) 2014 Jan Cassio. All rights reserved.
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.
*Note that all licence references and agreements mentioned in the SweetHMAC README section above
are relevant to that project's source code only.