arq_restore/BlobKey.h

19 lines
373 B
Objective-C

//
// BlobKey.h
// Arq
//
// Created by Stefan Reitshamer on 6/27/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
@interface BlobKey : NSObject <NSCopying> {
NSString *sha1;
BOOL stretchEncryptionKey;
}
- (id)initWithSHA1:(NSString *)theSHA1 stretchEncryptionKey:(BOOL)isStretchedKey;
- (NSString *)sha1;
- (BOOL)stretchEncryptionKey;
@end