mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
15 lines
245 B
Objective-C
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
|