Popularity
1.4
Declining
Activity
0.0
Stable
37
5
6

Code Quality Rank: L5
Programming language: Swift
License: MIT License
Tags: Security    
Latest version: v2.3

SweetHMAC alternatives and similar libraries

Based on the "Security" category.
Alternatively, view SweetHMAC alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of SweetHMAC or a related project?

Add another 'Security' Library

README

Sweet HMAC

Twitter: @jancassio License Build Version Platforms

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:

  1. Drag SweetHMAC.xcodeproj from SweetHMAC folder to your project.
  2. At Xcode, open "Project Navigator" (⌘+1).
  3. Select SweetHMAC project (the blue project icon).
  4. Check if SweetHMAC deployment target matches your project deployment target.
  5. At this point, select "Build Phases" tab.
  6. Click on + icon to add a new "Copy Phase". Optional: Rename this phase to "Embeded Frameworks".
  7. Set destination to "Frameworks".
  8. 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:

  1. At Xcode, open "Project Navigator" (⌘+1).
  2. Select your project file (the blue project icon).
  3. Click on "Build Phases" tab.
  4. Create a new "Run Script" phase clicking on + icon.
  5. Drag the run script phase created to stay below the first phase (ak "Target dependencies").
  6. 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
  1. Create a new file (⌘+N).
  2. Select "iOS"/"Others".
  3. Select "Congfiguration Settings File".
  4. Put any name you want.
  5. Add the content below in Configuration file created before: SWIFT_INCLUDE_PATHS="$SRCROOT/Modules"
  6. Go to your project file in "Project Navigator" (⌘+1)
  7. Select your project file and select your project above your project targets.
  8. Change configurations for the last one you created for each target you are using SweetHMAC by source.
  9. 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.