arq_restore/cocoastack/crypto/SHA256Hash.h
2014-07-28 14:20:07 -04:00

15 lines
245 B
Objective-C

//
// SHA256Hash.h
// Arq
//
// Created by Stefan Reitshamer on 9/8/12.
//
//
@interface SHA256Hash : NSObject {
}
+ (NSData *)hashData:(NSData *)data;
+ (NSData *)hashBytes:(const unsigned char *)bytes length:(NSUInteger)length;
@end