mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
19 lines
396 B
Objective-C
19 lines
396 B
Objective-C
//
|
|
// BlobKey.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 6/27/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface BlobKey : NSObject <NSCopying> {
|
|
NSString *sha1;
|
|
BOOL stretchEncryptionKey;
|
|
}
|
|
- (id)initWithSHA1:(NSString *)theSHA1 stretchEncryptionKey:(BOOL)isStretchedKey;
|
|
- (NSString *)sha1;
|
|
- (BOOL)stretchEncryptionKey;
|
|
@end
|