You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A really simple wrapper around CommonCrypto/CommonDigest.h implemented as an Appcelerator Titanium Module. This will simple wrap MD5 and SHA256 hash methods.
Speed
-------------------------------------------
Using native sha256 hashing is about 9.71 times faster than a javascript implementation.
Usage
-------------------------------------------
var nativehash = require('com.shaunberryman.nativehash');
var result = nativehash.sha256('this is a test!');
Ti.API.info('Input: this is a test! - Sha256: ' + result);