mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
25 lines
617 B
Objective-C
25 lines
617 B
Objective-C
//
|
|
// ArqSalt.h
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 7/16/11.
|
|
// Copyright 2011 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
@interface ArqSalt : NSObject {
|
|
NSString *accessKeyID;
|
|
NSString *secretAccessKey;
|
|
NSString *s3BucketName;
|
|
NSString *computerUUID;
|
|
NSString *localPath;
|
|
NSString *s3Path;
|
|
}
|
|
- (id)initWithAccessKeyID:(NSString *)theAccessKeyID
|
|
secretAccessKey:(NSString *)theSecretAccessKey
|
|
s3BucketName:(NSString *)theS3BucketName
|
|
computerUUID:(NSString *)theComputerUUID;
|
|
- (NSData *)salt:(NSError **)error;
|
|
@end
|