[BREAKGLASS] Append-only mirror of github.com/signalapp/HKDFKit
Go to file
Michael Kirk d2e2e50990 bump version
// FREEBIE
2017-04-01 23:09:03 -04:00
HKDFKit Make framework compatible 2016-10-25 15:57:05 -04:00
.gitignore Initial commit 2014-03-29 15:43:53 -07:00
HKDFKit.podspec bump version 2017-04-01 23:09:03 -04:00
LICENSE Initial commit 2014-03-29 15:43:53 -07:00
README.md Update README.md 2014-07-23 19:39:33 -10:00

HKDFKit

Simple HKDF utility with Objective-C interface

Usage

RFC5869-compliant key derivation function.

NSData *derivedData = [HKDFKit deriveKey:aSeed info:anInfo salt:aSalt outputSize:anOutputSize];

TextSecure v2 protocol uses different bounds for the HKDF function.

NSData *derivedData = [TextSecureV2deriveKey:aSeed info:anInfo salt:aSalt outputSize:anOutputSize];

Documentation

API reference is available on CocoaDocs.

Installation

Add this line to your Podfile

pod 'HKDFKit', '~> version number'

License

Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html